:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --text-color: #ffffff;
    --background-color: #1a1a1a;
    --accent-color: #feca57;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.content-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#home {
    background-image: url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

#services {
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-blend-mode: overlay;
    background-color: rgba(26, 26, 26, 0.7);
}

#packages {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

#contact {
    background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

.parallax-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 2;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
    transition-delay: 0.2s;
    z-index: 2;
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    transition: background 0.3s;
}

#navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#navbar ul {
    display: flex;
    list-style-type: none;
}

#navbar ul li {
    margin-left: 2rem;
}

#navbar ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#navbar ul li a:hover {
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    z-index: 2;
    position: relative;
}

.package-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    z-index: 2;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.service-item, .package {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px);
    flex: 1;
}

.service-item:hover, .package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-item i, .package i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3, .package h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item ul, .package ul {
    list-style-type: none;
    margin-bottom: 1rem;
    text-align: left;
}

.service-item ul li, .package ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-item ul li::before, .package ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.package .price {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

textarea {
    height: 150px;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

footer {
    background: var(--background-color);
    color: var(--text-color);
    text-align: center;
    padding: 1rem;
}

@media (max-width: 1200px) {
    .services-grid, .package-grid {
        flex-wrap: wrap;
    }

    .service-item, .package {
        flex-basis: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .parallax-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    #navbar {
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
    }

    #navbar ul {
        margin-top: 1rem;
    }

    #navbar ul li {
        margin-left: 1rem;
    }

    .service-item, .package {
        flex-basis: 100%;
    }
}

.featured {
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.featured::before {
    content: 'Recomendado';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.section-transition {
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--background-color));
    position: relative;
    z-index: 2;
}
.btn-whatsapp {
width: 60px;
height: 60px;
position: fixed;
right: 20px;
bottom: 20px;
z-index: 999;
background-color: transparent!important;
transition: transform 0.2s ease-in-out;
}
.btn-whatsapp:hover {
    transform: scale(1.2);
}