/* --- VARIABLES Y CONFIGURACIÓN GENERAL --- */
:root {
    --white: #FFFFFF;
    --bg-light: #F8F7F3;
    --dark: #2A2A2A;
    --gray: #8A8A8A;
    --accent-red: #D32F2F;
    --primary-green: #0d3b16;
    --accent-gold: #ead39d;
    --overlay: rgba(0, 0, 0, 0.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--dark);
}

/* --- HEADER & NAVBAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--accent-gold);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
}

/* Estilos del Logo con Imagen */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0%;
    
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--accent-gold);
}

/* Contenedor derecho para idioma y menú móvil */
.nav-right-elements {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Estilos del botón selector de idioma con diseño de bandera rectangular elegante */
.lang-switcher {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--accent-gold);
    color: var(--white);
    padding: 5px 12px 5px 8px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.lang-switcher:hover {
    background-color: var(--accent-gold);
    color: var(--dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(234, 211, 157, 0.3);
}

/* Estilo para mostrar la bandera rectangular natural, limpia y elegante */
.flag-icon {
    width: 26px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(234, 211, 157, 0.6);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.flag-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-link i {
    color: var(--accent-gold);
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(234, 211, 157, 0.15);
    color: var(--accent-gold);
}

.nav-link.active {
    background-color: var(--primary-green);
    border: 1px solid var(--accent-gold);
}

.submenu-icon {
    font-size: 0.7rem; 
    margin-left: auto;
    color: var(--accent-gold) !important;
}

/* Submenú desplegable escritorio */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-green);
    min-width: 220px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border-radius: 6px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent-gold);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: var(--white);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
    background-color: rgba(234, 211, 157, 0.2);
    color: var(--accent-gold);
}

/* Botón Hamburguesa Mobile */
.menu-toggle {
    display: none;
    color: var(--accent-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(var(--overlay), var(--overlay)),
            url('./assets/Portada.jpg') no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    margin-top: 65px;
}

.hero-content {
    max-width: 900px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 span {
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--bg-light);
    margin-bottom: 35px;
    text-transform: uppercase;
}

/* --- BOTONES DE ACCIÓN --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--dark);
    transform: translateY(-2px);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.3);
        border-bottom: 3px solid var(--accent-gold);
    }

    .nav-menu.active {
        max-height: 480px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 15px 25px;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(13, 59, 22, 0.4);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: none;
    }

    .nav-item.open .dropdown-menu {
        max-height: 200px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}
/* --- SECCIÓN POR QUÉ ELEGIRNOS --- */
.why-us {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

.why-us-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    letter-spacing: 0.5px;
}

/* Cuadrícula de características (Grid) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Tarjeta individual */
.feature-card {
    background-color: var(--white);
    border: 1px solid rgba(234, 211, 157, 0.6);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(234, 211, 157, 0.2);
    border-color: var(--accent-gold);
}

/* Iconos superiores con diseño de caja elegante */
.feature-icon {
    width: 65px;
    height: 65px;
    background-color: #FDFBF7;
    border: 1px solid var(--accent-gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 1.5rem;
    color: var(--accent-gold);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* --- RESPONSIVE DESIGN PARA LA SECCIÓN --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
}
/* --- SECCIÓN CÓMO FUNCIONA --- */
.how-it-works {
    padding: 100px 20px;
    background-color: #1a1e24; /* Fondo oscuro elegante */
    color: var(--white);
}

.how-container {
    max-width: 1300px;
    margin: 0 auto;
}

.how-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.how-header p {
    font-size: 1.05rem;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
}

/* Cuadrícula de 3 pasos */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Tarjeta de paso */
.step-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(234, 211, 157, 0.3);
    padding: 50px 30px 40px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(234, 211, 157, 0.15);
}

/* Número indicador flotante arriba (1, 2, 3) */
.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    color: var(--dark);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Icono del paso */
.step-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    margin-top: 10px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step-card p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

/* --- RESPONSIVE PARA CÓMO FUNCIONA --- */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}
/* --- SECCIÓN MIXTA TRIPADVISOR Y RESEÑAS --- */
.tripadvisor-mixed-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.tripadvisor-mixed-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Cuadrícula de 3 columnas */
.tripadvisor-mixed-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Tarjetas de reseñas laterales */
.side-review-card {
    background-color: var(--white);
    border: 1px solid rgba(234, 211, 157, 0.6);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.side-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(234, 211, 157, 0.2);
    border-color: var(--accent-gold);
}

.side-rating {
    color: #e5a912;
    font-size: 0.95rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.side-text {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.side-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.side-author span {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Caja central destacada (Insignia TripAdvisor) */
.center-badge {
    background-color: var(--white);
    border: 2px solid var(--accent-gold);
    padding: 45px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.center-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(234, 211, 157, 0.3);
}

.badge-icon-trip {
    font-size: 2.8rem;
    color: #00af87;
    margin-bottom: 15px;
}

.center-badge h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.center-badge p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Botón de acceso */
.btn-tripadvisor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #00af87;
    color: var(--white);
    padding: 11px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 175, 135, 0.3);
}

.btn-tripadvisor:hover {
    background-color: #008a6b;
    transform: translateY(-2px);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .tripadvisor-mixed-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}
/* --- SECCIÓN CONTÁCTANOS (Adaptada a los colores de la marca) --- */
.contact-section {
    padding: 100px 20px;
    background-color: #16191d; /* Fondo oscuro principal de la marca */
    color: var(--white);
    border-top: 1px solid rgba(234, 211, 157, 0.2);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Formulario */
.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(234, 211, 157, 0.3);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.required {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(234, 211, 157, 0.4);
    border-radius: 6px; /* Coherente con las tarjetas anteriores */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.85rem;
    color: #cccccc;
}

/* Botón de envío con acento dorado */
.btn-enviar-wpp {
    background-color: var(--accent-gold);
    color: var(--dark);
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 211, 157, 0.2);
    margin-top: 10px;
}

.btn-enviar-wpp:hover {
    background-color: #f1c782;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 211, 157, 0.35);
}

.btn-enviar-wpp i {
    font-size: 1.2rem;
    color: #111; /* Contraste fuerte para el icono de WhatsApp */
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 2.3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
/* --- PIE DE PÁGINA (FOOTER) --- */
.footer-section {
    background-color: #16191d; /* Color oscuro coherente con la web */
    color: #cccccc;
    padding: 80px 20px 30px 20px;
    border-top: 1px solid rgba(234, 211, 157, 0.15);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Columna 1: Logo y Marca */
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-logo-text span {
    color: var(--accent-gold);
}

.footer-slogan {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaaaaa;
}

/* Títulos de columnas con barra vertical dorada decorativa */
.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 15px;
}

.footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: 20px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaaaaa;
}

/* Lista de contacto */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 3px;
}

/* Parte inferior del footer (Redes sociales y Copyright) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 35px;
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    color: #16191d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.footer-socials a:hover {
    background-color: var(--accent-gold);
    color: #16191d;
    transform: translateY(-4px);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
}

/* --- RESPONSIVE DESIGN PARA EL FOOTER --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }
}
/* Ajuste preciso para el icono SVG de TripAdvisor en el footer */
.footer-socials a svg.tripadvisor-svg-icon {
    width: 20px;
    height: 20px;
    fill: #16191d;
    transition: fill 0.3s ease;
}

.footer-socials a:hover svg.tripadvisor-svg-icon {
    fill: #16191d;
}
/* --- BOTÓN FLOTANTE DE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #ffffff;
}

/* Regla para ocultar el botón flotante en modo teléfono (pantallas menores o iguales a 768px) */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        display: none !important;
    }
}
.footer-socials a.tripadvisor-svg-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- SECCIÓN GALERÍA Y CARRUSEL (FONDO BLANCO) --- */
.gallery-showcase-section {
    width: 100%;
    background-color: #ffffff; /* Fondo blanco */
    padding: 30px 0;
}

.gallery-showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FOTO PRINCIPAL */
.main-photo-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Sombra más suave para fondo blanco */
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.main-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
}

.main-photo-text {
    position: absolute;
    bottom: 25px;
    left: 30px;
    color: #ffffff;
    z-index: 2;
}

.main-photo-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.main-photo-text p {
    font-size: 0.95rem;
    color: #f1f1f1;
    letter-spacing: 0.5px;
}

/* CARRUSEL INFERIOR */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}

.carousel-track {
    display: flex;
    gap: 12px;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: calc(33.333% - 8px);
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e0e0e0; /* Borde sutil para las miniaturas en fondo blanco */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide:hover {
    opacity: 1;
}

.carousel-slide.active {
    border-color: #25d366; /* O el color principal de tu marca (ej. verde o amarillo) */
    opacity: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* BOTONES DEL CARRUSEL */
.carousel-btn {
    background: #ffffff;
    color: #333333;
    border: 1px solid #dcdcdc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 5;
}

.carousel-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* CONTADOR NUMÉRICO */
.carousel-counter {
    position: absolute;
    bottom: 12px;
    right: 25px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
    letter-spacing: 1px;
}

/* RESPONSIVE PARA MÓVILES */
@media screen and (max-width: 768px) {
    .main-photo-wrapper {
        height: 260px;
    }
    .main-photo-text h1 {
        font-size: 1.3rem;
    }
    .carousel-slide {
        min-width: calc(50% - 6px);
        height: 130px;
    }
}

/* --- CONTENEDOR GENERAL DE LA VISTA --- */
.transfer-page-wrapper {
    max-width: 1300px;
    margin: 30px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- COLUMNA IZQUIERDA --- */
.transfer-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transfer-header-card h1 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.transfer-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: #f8f9fa;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    border-left: 4px solid #ffc400;
}

.transfer-meta-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.transfer-meta-bar i {
    color: #ffc400;
}

.transfer-description h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.transfer-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* --- SISTEMA DE PESTAÑAS --- */
.transfer-tabs-container {
    margin-top: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.transfer-tabs-nav {
    display: flex;
    background: #f1f3f5;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    flex: 1;
    padding: 12px 10px;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn.active {
    background: #ffffff;
    color: #000;
    border-bottom: 3px solid #ffc400;
}

.tab-content {
    display: none;
    padding: 20px;
    background: #ffffff;
}

.tab-content.active {
    display: block;
}

/* ITINERARIO PASO A PASO */
.custom-itinerary-box h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #222;
}

.itinerary-step {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.step-icon {
    background: #fff8e1;
    color: #f59e0b;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-info h4 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 3px;
}

.step-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* INCLUYE / NO INCLUYE */
.include-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.include-box h4 {
    color: #2e7d32;
    margin-bottom: 10px;
    font-size: 1rem;
}

.exclude-box h4 {
    color: #c62828;
    margin-bottom: 10px;
    font-size: 1rem;
}

.include-box ul, .exclude-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.include-box li, .exclude-box li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.include-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.exclude-box li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: bold;
}

/* RECOMENDACIONES */
.recommendations-box h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #333;
}

.recommendations-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommendations-box li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.recommendations-box i {
    color: #ffc400;
    margin-top: 3px;
}

/* --- COLUMNA DERECHA (FORMULARIO WHATSAPP) --- */
.transfer-sidebar-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: fit-content;
}

.sidebar-price-tag {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: #777;
}

.price-value.consultar {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d3b16;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.form-control {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #ffc400;
}

.btn-whatsapp-booking {
    background-color: #0d3b16;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-whatsapp-booking:hover {
    background-color: #0d3b16;
}

/* RESPONSIVE PARA MÓVILES */
@media screen and (max-width: 900px) {
    .transfer-page-wrapper {
        grid-template-columns: 1fr;
    }
    .include-grid {
        grid-template-columns: 1fr;
    }
}
/* --- SECCIÓN: ARMA TU TOUR O ITINERARIO (TONOS DE MARCA) --- */
.como-funciona-section#armar-tour {
    background-color: #1a1e24; /* Fondo oscuro principal de tu web */
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.como-funciona-section#armar-tour .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #ffffff;
}

.como-funciona-section#armar-tour .section-subtitle {
    color: #ead39d; /* Tono dorado corporativo */
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.como-funciona-section#armar-tour .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.como-funciona-section#armar-tour .step-card {
    background-color: #1c2126; /* Fondo de tarjeta idéntico al de tus otras secciones */
    border: 1px solid rgba(234, 211, 157, 0.3); /* Borde sutil dorado corporativo */
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    margin-top: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.como-funciona-section#armar-tour .step-card:hover {
    transform: translateY(-5px);
    border-color: #ead39d; /* Se ilumina en dorado al pasar el cursor */
}

.como-funciona-section#armar-tour .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ead39d; /* Insignia numérica dorada */
    color: #121518; /* Texto interno oscuro */
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.como-funciona-section#armar-tour .step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 2.5rem;
    color: #ead39d; /* Iconos en tono dorado */
    margin: 20px 0 15px 0;
}

.como-funciona-section#armar-tour .step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.como-funciona-section#armar-tour .step-card p {
    color: #b0b5bc; /* Texto descriptivo en tono gris suave corporativo */
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Botón de WhatsApp con los colores oficiales de tu marca */
.tour-cta-container {
    margin-top: 45px;
    text-align: center;
}

.btn-armar-tour {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ead39d; /* Fondo dorado de la marca */
    color: #121518; /* Texto oscuro para mantener contraste perfecto */
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 211, 157, 0.3);
}

.btn-armar-tour:hover {
    background-color: #f0deb2; /* Tono dorado ligeramente más vivo al hacer hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 211, 157, 0.4);
}
.como-funciona-section#armar-tour .step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: none; /* Asegura que no tenga ningún fondo */
    background-color: transparent; /* Elimina cualquier color de relleno trasero */
    box-shadow: none; /* Elimina sombras si las tuviera */
    border: none; /* Sin bordes detrás */
    font-size: 2.5rem;
    color: #ead39d; /* Color dorado del icono */
    margin: 20px 0 15px 0;
}