/* Variables de color y tipografía */
:root {
    --primary-color: #0066cc;
    --primary-light: #3385d6;
    --primary-dark: #004d99;
    --secondary-color: #ff6600;
    --secondary-light: #ff8533;
    --secondary-dark: #e65c00;
    --accent-color: #00cc99;
    --light-color: #f8f9fa;
    --light-gray: #f0f2f5;
    --medium-gray: #e1e4e8;
    --dark-gray: #6c757d;
    --dark-color: #212529;
    --text-color: #333333;
    --text-light: #6c757d;
    --white: #ffffff;
    --black: #000000;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-circle: 50%;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset y estilos base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    /* font-weight: 600; */
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}



/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background-color: #ff6600;
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ff6600;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
}

.btn-card {
    padding: 10px 20px;
    font-size: 0.9rem;
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--medium-gray);
}

.btn-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-search {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6600; /* Línea naranja */
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1499678329028-101435549a4e') no-repeat center center/cover;
    color: var(--white);
    margin-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,102,204,0.3) 0%, rgba(0,102,204,0.1) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.scroll-icon {
    width: 20px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

/* Search Section */
.search-section {
    position: relative;
    margin-top: -80px;
    z-index: 100;
    padding-bottom: 60px;
}

.search-box {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.search-tabs {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-btn:hover:not(.active) {
    color: var(--primary-light);
}

.search-form {
    padding: 30px;
    display: none;
}

.search-form.active {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group.floating {
    position: relative;
}

.form-group.floating label {
    position: absolute;
    top: 18px;
    left: 40px;
    color: var(--dark-gray);
    pointer-events: none;
    transition: var(--transition-normal);
    background-color: var(--white);
    padding: 0 5px;
    transform-origin: left center;
}

.form-group.floating input:focus + label,
.form-group.floating input:not(:placeholder-shown) + label {
    transform: translateY(-28px) scale(0.9);
    color: var(--primary-color);
    background-color: var(--white);
}

.form-group.floating i {
    position: absolute;
    top: 18px;
    left: 15px;
    color: var(--dark-gray);
    transition: var(--transition-normal);
}

.form-group.floating input:focus ~ i,
.form-group.floating input:not(:placeholder-shown) ~ i {
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 15px 15px 15px 40px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Offers Section */
.offers-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}
.offers-container {
    position: relative;
}

.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px 0;
}

.offer-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.offer-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
}

.offer-content {
    padding: 20px;
}

.offer-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.offer-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.offer-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.offer-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    display: flex;
    flex-direction: column;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
}

.current-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.slider-prev, .slider-next {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition-fast);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-prev {
    margin-left: -20px;
}

.slider-next {
    margin-right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        margin: 0 10px;
    }
    
    .slider-controls {
        display: none;
    }
    
    .offer-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Offers Section */
.offers-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

/* Contenedor de ofertas como cuadrícula */
.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px 0;
}

/* Estilo de cada tarjeta de oferta */
.offer-slide {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.offer-slide:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.offer-image {
    position: relative;
    height: 180px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-slide:hover .offer-image img {
    transform: scale(1.03);
}

.offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-content {
    padding: 16px;
}

.offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.offer-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.offer-meta i {
    font-size: 0.7rem;
}

.offer-inclusions .more-items {
    background-color: transparent; /* Sin fondo para diferenciarlo */
    font-style: italic; /* Estilo cursiva para "y más..." */
    padding: 3px 6px;
    color: #6b7280; /* Color más suave */
}

.offer-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-color);
    line-height: 1.3;
}

.offer-description {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.price-option .hotel-name {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

.price {
    display: flex;
    flex-direction: column;
}


.offer-prices {
    margin-bottom: 12px;
}

.price-option {
    margin-bottom: 8px;
}

.price-option .hotel-name {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

.price-option .current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.currency-usd {
    font-size: 1.6rem; /* Tamaño más grande para dólares */
    font-weight: 700;
    color: var(--primary-color); /* Color destacado, ej. azul */
}

.currency-pen {
    font-size: 0.9rem; /* Tamaño más pequeño para soles */
    font-weight: 500;
    color: #6b7280; /* Color más suave, ej. gris */
}

.old-price {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


.offer-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Reducido el espacio entre ítems */
    margin-bottom: 12px;
    font-size: 0.75rem; /* Tamaño de fuente más pequeño */
    color: var(--text-light);
}

.offer-inclusions span {
    display: flex;
    align-items: center;
    gap: 4px; /* Espacio entre ícono y texto */
    background-color: #f7fafc;
    padding: 3px 6px; /* Padding más pequeño */
    border-radius: 10px; /* Bordes ligeramente más suaves */
}

.offer-inclusions i {
    font-size: 0.65rem; /* Íconos más pequeños */
    color: var(--primary-color);
}


/* Responsive para móviles (1 columna) */
@media (max-width: 576px) {
    .offers-grid {
        display: flex;
        flex-direction: column; /* Apila las tarjetas verticalmente */
    }

    .offer-slide {
        margin-bottom: 20px; /* Espacio entre tarjetas */
    }

    .offer-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Tablet Styles (2 columnas) */
@media (min-width: 577px) and (max-width: 991px) {
    .offers-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tabletas */
        gap: 20px;
    }
    
    .offer-image {
        height: 200px;
    }
    
    .offer-title {
        font-size: 1.2rem;
    }
    
    .current-price {
        font-size: 1.2rem;
    }
}

/* Desktop Styles (3 columnas) */
@media (min-width: 992px) {
    .offers-section {
        padding: 80px 0;
    }
    
    .offers-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columnas en escritorio */
        gap: 20px;
    }
    
    .offer-image {
        height: 220px;
    }
    
    .offer-content {
        padding: 20px;
    }
    
    .offer-title {
        font-size:MX 1.3rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
}

/* Special case for very small devices */
@media (max-width: 360px) {
    .offer-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .offer-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}
/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(0, 102, 204, 0.1);
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.quote {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.rating {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-circle);
    object-fit: cover;
    border: 3px solid var(--light-gray);
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.client-trip {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .newsletter-content {
        flex-direction: row;
        align-items: center;
    }
}

.newsletter-text {
    flex: 1;
}

.newsletter-text .subtitle {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.newsletter-text .title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.newsletter-text .description {
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.newsletter-form {
    flex: 1;
}

.newsletter-form .form-group {
    position: relative;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.form-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.form-agreement input {
    width: 16px;
    height: 16px;
}

.form-agreement label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-about {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-circle);
    color: var(--white);
    transition: var(--transition-bounce);
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-list a {
    color: var(--dark-gray);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.links-list a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.copyright {
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.payment-title {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons i {
    font-size: 1.5rem;
    color: var(--dark-gray);
    transition: var(--transition-normal);
}

.payment-icons i:hover {
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
    100% {
        transform: translateY(10px) translateX(-50%);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        padding: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .search-section {
        margin-top: -40px;
    }
    
    .search-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 0 50%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-slide {
        min-width: 300px;
    }
    
    .newsletter-content {
        text-align: center;
    }
    
    .newsletter-text .description {
        margin: 0 auto;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius-md);
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .header .container {
        padding: 10px 15px;
    }
    
    .logo-symbol {
        font-size: 1.8rem;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .tab-btn {
        flex: 1 0 100%;
        padding: 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}



/* Carrusel del inicio  */

.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Añade un poco de padding lateral para evitar que el contenido toque los bordes */
}


.hero-carousel .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-hero:hover {
    background: #e55a50;
}

.btn-hero i {
    margin-left: 0.5rem;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #ff6f61;
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 1;
}

.scroll-icon {
    width: 20px;
    height: 30px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 10px auto;
    position: relative;
}

.scroll-icon::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 10px); opacity: 0; }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Botones de navegación del carrusel de las promociones  */

.carousel {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #f0f0f0; /* Fondo para evitar blanco durante la transición */
}

.carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-item {
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
    display: block; /* Aseguramos que todas las imágenes estén visibles */
}

.carousel-item.active {
    display: block;
}

.offer-image {
    position: relative;
    height: 180px;
}

.offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff6600;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* seccion de hoteles*/

/* Sección de hoteles - Carrusel con efecto central */
.hotels-modern-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin: 10px 0;
}

.section-description {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.hotels-modern-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
}

.carousel-track {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
}

.hotel-modern-slide {
    flex: 0 0 33.33%;
    padding: 10px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    transform: scale(0.85);
    opacity: 0.8;
    filter: brightness(0.9);
}

.hotel-modern-slide.center {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(1);
    z-index: 2;
}

.hotel-modern-slide:not(.center) {
    transform: scale(0.85);
    opacity: 0.8;
    filter: brightness(0.9);
}

.hotel-modern-image {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.hotel-modern-slide.center .hotel-modern-image {
    height: 250px;
    box-shadow: 0 15px 30px rgba(0, 77, 153, 0.3);
}

.hotel-modern-slide.center .hotel-modern-content {
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hotel-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-modern-content {
    padding: 15px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.hotel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #6c757d;
}

.hotel-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-meta i {
    color: #004d99;
}

.hotel-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
}

.hotel-slide.center .hotel-title {
    font-size: 1.5rem;
}

.hotel-description {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hotel-prices .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #004d99;
}

.hotel-slide.center .hotel-prices .current-price {
    font-size: 1.8rem;
}

.hotel-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #6c757d;
}

.hotel-inclusions span {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    background-color: #e9ecef;
    border-radius: 12px;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #004d99;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: #003a73;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hotel-modern-slide {
        flex: 0 0 50%;
    }
    
    .hotel-modern-slide.center {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .hotel-modern-slide {
        flex: 0 0 100%;
    }
    
    .hotel-modern-slide.center {
        flex: 0 0 100%;
    }
    
    .hotel-modern-slide:not(.center) {
        display: none;
    }
}