        :root {
    /* Colores principales - nueva paleta */
    --principal: #333333;
    --secundario: #2e933c;
    --tercero: #f7fff7;
    
    /* Variaciones de los colores principales */
    --principal-claro: #4d4d4d;
    --secundario-claro: #3aad4a;
    --secundario-oscuro: #247a30;
            
            /* Otros colores */
            --white: #ffffff;
    --light-gray: #f0f0f0;
            --text-color: #333333;
    --text-light: rgba(255, 255, 255, 0.9);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
    background-color: var(--tercero);
            color: var(--text-color);
            overflow-x: hidden;
        }

/* Clase para evitar scroll cuando el menú móvil está abierto */
body.no-scroll {
    overflow: hidden;
}
        
        /* Estilos de textos */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }
        
        p {
            line-height: 1.8;
        }
        
        /* Header y Navegación */
        header {
            background-color: rgba(255, 255, 255, 0.95);
    color: var(--principal);
            padding: 0.8rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }
        
        header.scrolled {
            padding: 0.5rem 2rem;
            background-color: var(--white);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
    color: var(--principal);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo span {
    color: var(--secundario);
        }
        
        .logo i {
            margin-right: 10px;
    color: var(--secundario-claro);
    animation: none;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
    color: var(--principal);
            text-decoration: none;
            font-weight: 600;
    transition: all 0.4s ease;
            position: relative;
            padding: 0.5rem 0;
            letter-spacing: 0.5px;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
    background-color: var(--secundario);
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }
        
        nav ul li a:hover {
    color: var(--secundario);
    transform: translateY(-2px);
        }
        
        nav ul li a.active {
    color: var(--secundario);
        }
        
        nav ul li a.active::after {
            width: 100%;
    background-color: var(--secundario);
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
    color: var(--principal);
    z-index: 1001;
}

/* Menú móvil */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        padding: 80px 2rem 2rem;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Animaciones Generales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 87, 34, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes gradientBg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Animaciones para móviles */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes borderPulse {
    0% {
        border-color: rgba(46, 147, 60, 0.3);
    }
    50% {
        border-color: rgba(46, 147, 60, 0.8);
    }
    100% {
        border-color: rgba(46, 147, 60, 0.3);
    }
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            color: var(--white);
            margin-top: 0;
            overflow: hidden;
        }
        
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.5), rgba(46, 147, 60, 0.4));
    animation: gradientBg 20s ease infinite;
    background-size: 150% 150%;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .hero h1 {
    font-size: 4.8rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
    animation: fadeInUp 1.2s ease-out 0.3s both;
    color: var(--white);
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
    background-color: var(--secundario);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(46, 147, 60, 0.4);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
        }
        
        .btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(46, 147, 60, 0.5);
}

.btn:hover::before {
    width: 100%;
        }
        
        .btn-secondary {
    background-color: var(--principal);
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.4);
        }
        
        .btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.5);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--white);
            box-shadow: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
            background-color: var(--white);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--secundario);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }

.btn-outline:hover::after {
    left: 0;
}
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.6s both;
        }
        
        /* Search Box */
        .search-container {
            background-color: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 1100px;
            margin: -100px auto 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 10;
            transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
    animation: none;
    animation-delay: 0;
    animation-fill-mode: none;
        }
        
        .search-container:hover {
            transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
        }
        
        .search-tabs {
            display: flex;
            margin-bottom: 2rem;
            border-bottom: 2px solid #f0f0f0;
            flex-wrap: wrap;
        }
        
        .search-tab {
            padding: 1rem 1.5rem;
            cursor: pointer;
            margin-right: 0.5rem;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: #999;
    transition: all 0.4s ease;
            display: flex;
            align-items: center;
        }
        
        .search-tab i {
            margin-right: 8px;
            font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.search-tab:hover i {
    transform: translateY(-3px);
        }
        
        .search-tab.active {
    border-bottom: 3px solid var(--secundario);
    color: var(--secundario);
        }
        
        .search-tab:hover:not(.active) {
    color: var(--secundario-claro);
        }
        
        .search-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 0.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.7rem;
            font-weight: 600;
    color: var(--principal);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-control {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #eaeaea;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #f9f9f9;
        }
        
        .form-control:focus {
            outline: none;
    border-color: var(--secundario);
    box-shadow: 0 0 0 3px rgba(46, 147, 60, 0.2);
        }
        
        .search-btn {
    background-color: var(--secundario);
            color: var(--white);
            border: none;
            border-radius: 10px;
            padding: 1.2rem 1.5rem;
            font-size: 1.1rem;
            cursor: pointer;
            font-weight: 600;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            text-transform: uppercase;
            letter-spacing: 1px;
            grid-column: 1 / -1;
    box-shadow: 0 4px 15px rgba(46, 147, 60, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
        }
        
        .search-btn:hover {
    background-color: var(--secundario-oscuro);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 25px rgba(46, 147, 60, 0.4);
}

.search-btn:hover::before {
    left: 100%;
        }
        
        /* Sections General */
        .section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-colored {
    background-color: var(--principal);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .section-colored::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .section-colored::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
    background-color: var(--secundario);
            border-radius: 2px;
        }
        
        .section-colored .section-title h2::after {
            background-color: var(--white);
        }
        
        .section-title p {
            color: #777;
            max-width: 700px;
            margin: 1.5rem auto 0;
            font-size: 1.1rem;
        }
        
        .section-colored .section-title p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Destinos Destacados */
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        
        .card {
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            position: relative;
    animation: fadeInUp 0.8s ease-out both;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
        }
        
        .card:hover {
    transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }
        
        .card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: #ff5722;
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
            animation: pulse 2s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
        }
        
        .card-img {
            height: 250px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
.card-img::before {
            content: '';
            position: absolute;
    top: 0;
            left: 0;
            width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.card:hover .card-img::before {
    opacity: 1;
}

.card:hover .card-img img {
    transform: scale(1.1) rotate(2deg);
        }
        
        .card-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .card-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
    color: var(--principal);
        }
        
        .card-location {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
    color: var(--secundario);
        }
        
        .card-description {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.7;
            flex-grow: 1;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
            margin-top: 1rem;
        }
        
        .card-rating {
            display: flex;
            align-items: center;
            font-weight: 600;
    color: var(--secundario-claro);
        }
        
        .card-rating i {
    color: var(--secundario-claro);
            margin-right: 5px;
        }
        
        .card-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price {
            font-size: 1.8rem;
            font-weight: 800;
    color: var(--secundario);
        }
        
        .price span {
            font-size: 0.9rem;
            color: #777;
            font-weight: normal;
            margin-left: 5px;
        }
        
        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin: 4rem 0;
        }
        
        .feature {
            background-color: var(--white);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            position: relative;
            overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.feature:nth-child(1) {
    animation-delay: 0.1s;
}

.feature:nth-child(2) {
    animation-delay: 0.2s;
}

.feature:nth-child(3) {
    animation-delay: 0.3s;
        }
        
        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
    background: linear-gradient(to right, var(--principal), var(--secundario));
        }
        
        .feature:hover {
    transform: translateY(-15px) scale(1.03);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            width: 100px;
            height: 100px;
    background-color: rgba(46, 147, 60, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 2rem;
    color: var(--secundario);
            font-size: 2.5rem;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            position: relative;
        }
        
        .feature-icon::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
    border: 2px dashed rgba(46, 147, 60, 0.3);
            border-radius: 50%;
    animation: pulse 12s linear infinite;
        }
        
        .feature:hover .feature-icon {
    background-color: var(--secundario);
            color: var(--white);
    transform: scale(1.1) rotate(10deg);
        }
        
        .feature h3 {
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
    color: var(--principal);
        }
        
        .feature p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }
        
        /* Paquetes Populares */
        .packages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        
        .package-card {
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .package-card:hover .package-img img {
            transform: scale(1.1);
        }
        
        .package-img {
            height: 250px;
            overflow: hidden;
        }
        
        .package-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .package-category {
            position: absolute;
            top: 20px;
            left: 20px;
    background-color: var(--secundario);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 10;
        }
        
        .package-details {
            padding: 2rem;
        }
        
        .package-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
    color: var(--principal);
        }
        
        .package-data {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .data-item {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 0.9rem;
            margin-right: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .data-item i {
            margin-right: 8px;
    color: var(--secundario);
        }
        
        .package-description {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .package-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }
        
        .package-feature {
    background-color: rgba(46, 147, 60, 0.1);
    color: var(--secundario);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .package-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
        }
        
        .package-cost {
            font-size: 1.8rem;
            font-weight: 800;
    color: var(--secundario);
        }
        
        .package-cost span {
            font-size: 0.9rem;
            color: #777;
            font-weight: normal;
        }
        
        /* Testimonials Section */
        .testimonials {
    background-color: var(--principal);
            padding: 6rem 2rem;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: -200px;
            left: -200px;
            width: 400px;
            height: 400px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .testimonials::after {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -200px;
            width: 400px;
            height: 400px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .testimonials .section-title::after {
    background-color: var(--secundario);
        }
        
        .testimonials .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            color: var(--white);
            position: relative;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out both;
}

.testimonial:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial:nth-child(3) {
    animation-delay: 0.3s;
        }
        
        .testimonial:hover {
    transform: translateY(-10px) scale(1.03);
            background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 6rem;
            color: rgba(255, 255, 255, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
    transition: all 0.6s ease;
}

.testimonial:hover::before {
    transform: translateY(-10px) scale(1.2);
    color: rgba(255, 255, 255, 0.3);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
    border: 3px solid var(--secundario);
    transition: all 0.6s ease;
        }
        
        .author-details h4 {
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }
        
        .author-details p {
            margin: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-style: normal;
        }

.testimonial:hover .testimonial-author img {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--secundario-claro);
}
        
        /* Call to Action Section */
        .cta-section {
            padding: 6rem 2rem;
    background-color: var(--secundario);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before, .cta-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .cta-section::before {
            top: -150px;
            left: -150px;
        }
        
        .cta-section::after {
            bottom: -150px;
            right: -150px;
        }
        
        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .cta-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        /* Newsletter Section */
        .newsletter {
    background-color: var(--tercero);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
        }
        
        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    animation: scaleIn 0.8s ease-out;
}

.newsletter-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .newsletter-container::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
    border: 2px dashed var(--secundario);
            border-radius: 25px;
            opacity: 0.3;
            z-index: -1;
    animation: pulse 4s ease-in-out infinite;
        }
        
        .newsletter h2 {
            margin-bottom: 1.5rem;
    color: var(--principal);
            font-size: 2.2rem;
        }
        
        .newsletter p {
            margin-bottom: 2rem;
            color: #666;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 1.2rem 1.5rem;
            border: 2px solid #eee;
            border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--secundario);
    box-shadow: 0 0 0 3px rgba(46, 147, 60, 0.2);
}

.newsletter-form button {
    background-color: var(--secundario);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(46, 147, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.newsletter-form button:hover {
    background-color: var(--secundario-oscuro);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 147, 60, 0.4);
}

.newsletter-form button:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background-color: var(--principal);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-info {
    flex: 0 0 100%;
    max-width: 350px;
    margin-bottom: 2rem;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 0 0 auto;
    width: calc(25% - 1rem);
    margin-bottom: 1.5rem;
    min-width: 150px;
}

@media (max-width: 992px) {
    .footer-column {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 576px) {
    .footer-info {
        max-width: 100%;
    }
    .footer-column {
        width: 100%;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
    color: var(--white);
}

.footer p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    color: var(--white);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1rem;
    line-height: 1.3;
}

.footer-column ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secundario);
    font-size: 1.2rem;
    line-height: 1;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--secundario-claro);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info li i {
    color: var(--secundario);
    margin-right: 0.8rem;
    font-size: 1.2rem;
    min-width: 20px;
}

/* Redes sociales */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secundario);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    width: 100%;
}

/* Responsive para otras secciones */
@media (max-width: 992px) {
    .card-container, .features, .packages {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        margin-left: 0;
        width: 100%;
    }
}

/* Responsive para el hero */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .section {
        padding: 5rem 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
        animation: slideIn 1s ease-out;
    }
    
    .hero p {
        font-size: 1.1rem;
        animation: slideIn 1s ease-out 0.2s both;
    }
    
    .hero-buttons {
        animation: slideIn 1s ease-out 0.4s both;
    }
    
    .hero-content {
        padding: 2rem;
        width: 90%;
        max-width: 600px;
    }
    
    .search-container {
        margin-top: -50px;
        padding: 1.5rem;
        animation: scaleIn 0.8s ease-out;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .search-tabs {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .search-tab {
        padding: 0.8rem 1rem;
        margin-right: 0;
        font-size: 0.9rem;
    }
    
    .feature {
        padding: 2rem 1.5rem;
        animation: fadeIn 0.8s ease-out both;
    }
    
    .feature:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .feature:nth-child(2) {
        animation-delay: 0.3s;
    }
    
    .feature:nth-child(3) {
        animation-delay: 0.5s;
    }
    
    .feature-icon::after {
        animation: borderPulse 3s ease infinite;
    }
    
    .card {
        animation: scaleIn 0.8s ease-out both;
    }
    
    .card:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .card:nth-child(2) {
        animation-delay: 0.3s;
    }
    
    .card:nth-child(3) {
        animation-delay: 0.5s;
    }
    
    .testimonial {
        animation: fadeIn 0.8s ease-out both;
    }
    
    .testimonial:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .testimonial:nth-child(2) {
        animation-delay: 0.3s;
    }
    
    .testimonial:nth-child(3) {
        animation-delay: 0.5s;
    }
    
    .cta-title {
        font-size: 2.2rem;
        animation: slideIn 0.8s ease-out;
    }
    
    .cta-text {
        font-size: 1.1rem;
        animation: slideIn 0.8s ease-out 0.2s both;
    }
    
    .cta-buttons {
        animation: slideIn 0.8s ease-out 0.4s both;
    }
    
    .newsletter-container {
        padding: 2rem 1.5rem;
        animation: scaleIn 0.8s ease-out;
    }
    
    .newsletter-container::before {
        animation: borderPulse 3s ease infinite;
    }
    
    .newsletter h2 {
        font-size: 1.8rem;
        animation: slideIn 0.8s ease-out;
    }
    
    .newsletter p {
        animation: slideIn 0.8s ease-out 0.2s both;
    }
    
    .newsletter-form {
        flex-direction: column;
        animation: slideIn 0.8s ease-out 0.4s both;
    }
    
    .newsletter-input {
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        margin-left: 0;
        width: 100%;
    }
    
    .menu-toggle i {
        animation: pulse 2s infinite;
    }
    
    nav.active {
        animation: fadeInRight 0.5s ease-out;
    }
    
    nav ul li {
        opacity: 0;
        animation: fadeInRight 0.5s ease-out forwards;
    }
    
    nav.active ul li:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    nav.active ul li:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    nav.active ul li:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    nav.active ul li:nth-child(4) {
        animation-delay: 0.4s;
    }
    
    nav.active ul li:nth-child(5) {
        animation-delay: 0.5s;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .card-container, .features, .packages, .testimonial-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
        animation: slideIn 0.8s ease-out;
    }
    
    .section-title p {
        font-size: 1rem;
        animation: slideIn 0.8s ease-out 0.2s both;
    }
    
    .card, .feature, .package-card, .testimonial {
        transform: none !important;
    }
    
    .card:hover, .feature:hover, .package-card:hover, .testimonial:hover {
        transform: translateY(-5px) !important;
    }
    
    .footer-info {
        text-align: center;
        animation: fadeIn 1s ease-out;
    }
    
    .social-links {
        justify-content: center;
        animation: fadeIn 1s ease-out 0.3s both;
    }
    
    .footer-column {
        animation: fadeIn 1s ease-out;
    }
    
    .footer-column:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .footer-column:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .footer-column:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .footer-column:nth-child(4) {
        animation-delay: 0.4s;
    }
    
    .footer-bottom {
        animation: fadeIn 1s ease-out 0.5s both;
    }
}