/* Paleta de Colores y Variables */
:root {
    --primary-green: #1b4332; /* Verde Selva Profunda */
    --accent-green: #2d6a4f;  /* Verde Vegetación */
    --gold-earth: #b07d4a;    /* Tono Tierra/Madera */
    --light-bg: #f9f7f2;      /* Blanco Hueso para el fondo */
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --transition: all 0.3s ease;
}

/* Configuración General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif; /* Recomendado importar desde Google Fonts */
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navegación Estilo Kolatua */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(27, 67, 50, 0.95); /* Semi-transparente */
    color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--gold-earth);
}

/* Icono de Carrito */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold-earth);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
}

/* Panel de Reserva Lateral (Carrito) */
.cart-panel {
    position: fixed;
    right: -100%;
    top: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 2rem;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

/* Hero Section (Banner Principal) */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('IMAGENES/PAMP/01..jpg'); /* Imagen temporal de selva */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.btn-main {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold-earth);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 2rem;
    transition: var(--transition);
}

.btn-main:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

/* Sección de Tours y Tarjetas */
.tours-section {
    padding: 5rem 5%;
}

.tours-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tour-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.tour-info {
    padding: 1.5rem;
}

.tour-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.tag {
    display: inline-block;
    background: #e9ecef;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.price {
    font-weight: 700;
    color: var(--gold-earth);
    font-size: 1.2rem;
    margin: 1rem 0;
}

.btn-reserve {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.btn-reserve:hover {
    background: var(--gold-earth);
}

/* Gastronomía - Basado en tu documento */
.gastronomy {
    background: var(--primary-green);
    color: var(--white);
    padding: 4rem 5%;
    text-align: center;
}

/* Responsividad */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Aquí podrías añadir un menú hamburguesa luego */
    .hero-content h1 { font-size: 2rem; }
}
/* Buscador en el Hero */
.search-container {
    margin-top: 30px;
    background: white;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-container input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    outline: none;
    font-size: 1rem;
}

.search-container button {
    background: var(--gold-earth);
    border: none;
    padding: 10px 25px;
    color: white;
    border-radius: 50px;
    cursor: pointer;
}

/* Sección Nosotros */
.about-section {
    padding: 80px 10%;
    background: white;
}

.about-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 10px;
}

.feature i { color: var(--accent-green); font-size: 1.5rem; }

/* Opiniones */
.reviews-section {
    padding: 80px 10%;
    text-align: center;
    background: #ecece7;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.review-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-section {
    padding: 80px 10%;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.contact-info h2 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--gold-earth);
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
}

.social-links {
    margin-top: 25px;
}

.social-links a {
    font-size: 1.8rem;
    margin-right: 20px;
    color: var(--primary-green);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold-earth);
}

.map-box {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Botón Flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Galería */
.gallery-section {
    padding: 80px 10%;
    background: #f4f1ea;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* Títulos de sección */
.section-title {
    text-align: center;
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 40px;
}
/* Paleta de colores (asegúrate de tenerla en tu root) */
:root {
    --whatsapp-green: #25d366; /* Verde oficial de WhatsApp */
    --white: #ffffff;
}

/* --- NUEVO BOTÓN FLOTANTE REDONDO --- */
.whatsapp-float-round {
    position: fixed;
    bottom: 30px; /* Separación del borde inferior */
    right: 30px;  /* Separación del borde derecho */
    background-color: var(--whatsapp-green);
    color: var(--white);
    width: 60px;  /* Ancho fijo para hacerlo redondo */
    height: 60px; /* Alto fijo igual al ancho */
    border-radius: 50%; /* Esto crea el círculo perfecto */
    display: flex;
    justify-content: center; /* Centra el icono horizontalmente */
    align-items: center;     /* Centra el icono verticalmente */
    text-decoration: none;
    z-index: 2000; /* Asegura que esté por encima de todo */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Sombra más pronunciada */
    transition: all 0.3s ease;
    
    /* Pequeña animación de pulso (opcional) */
    animation: pulseWhatsApp 2s infinite;
}

/* Efecto al pasar el ratón: se hace un poco más grande y cambia la sombra */
.whatsapp-float-round:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    background-color: #1ebe57; /* Un verde un poco más oscuro al hover */
}

/* Tamaño del icono de WhatsApp */
.whatsapp-float-round i {
    font-size: 35px; /* Icono grande y visible */
}

/* Definición de la animación de pulso */
@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste para pantallas móviles muy pequeñas */
@media (max-width: 480px) {
    .whatsapp-float-round {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float-round i {
        font-size: 28px;
    }
}
.reviews-section {
    padding: 80px 10%;
    background-color: #f9f7f2;
    text-align: center;
}

.subtitle {
    color: #b07d4a; /* Tono tierra */
    font-weight: bold;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s ease;
    border-bottom: 5px solid #1b4332; /* Verde selva */
}

.review-item:hover {
    transform: translateY(-10px);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #ffc107; /* Color dorado para las estrellas */
    font-size: 0.9rem;
}

.review-item p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* --- ESTILOS PARA CELULARES --- */
@media (max-width: 768px) {
    
    /* 1. Ajuste del Menú: Oculta los links o los pone en columna */
    .nav-links {
        display: none; /* Idealmente aquí programarías un menú hamburguesa */
    }

    /* 2. Hero Section: Reduce el tamaño del texto para que quepa */
    .hero-content h1 {
        font-size: 2rem !important;
        padding: 0 10px;
    }

    /* 3. Grillas (Tours, Galería, Opiniones): 
       Hacemos que pasen de 3 columnas a solo 1 columna */
    .tour-grid, 
    .gallery-grid, 
    .reviews-grid, 
    .contact-container {
        grid-template-columns: 1fr !important;
        padding: 10px;
    }

    /* 4. Imágenes de Tours: Ajustamos la altura para que no ocupen toda la pantalla */
    .tour-img {
        height: 180px;
    }

    /* 5. Secciones: Reducimos los espacios laterales (padding) */
    .tours-section, 
    .about-section, 
    .reviews-section, 
    .contact-section {
        padding: 40px 5% !important;
    }

    /* 6. Formulario y Buscador: Que ocupen el 100% del ancho */
    .search-container {
        width: 95%;
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-container button {
        width: 100%;
        margin-top: 10px;
    }

    /* 7. Botón de WhatsApp: Un poco más pequeño para no estorbar */
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 30px;
    }
}
@media (max-width: 768px) {
    /* Muestra el botón de las 3 rayitas */
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        order: 2; /* Lo posiciona al lado del carrito */
    }

    /* Estilo del menú desplegable */
    .nav-links {
        display: none; /* Se oculta por defecto */
        flex-direction: column;
        position: absolute;
        top: 70px; /* Justo debajo de la barra verde */
        left: 0;
        width: 100%;
        background-color: #1b4332; /* El color verde de tu marca */
        text-align: center;
        padding: 20px 0;
        z-index: 1000;
    }

    /* Clase que activaremos con JavaScript para mostrar el menú */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .logo {
        order: 1;
    }

    .cart-icon {
        order: 3;
    }
}

/* Ocultar el botón de menú en computadoras */
.menu-toggle {
    display: none;
}
/* --- ESTILO DEL BOTÓN DE WHATSAPP --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px; /* Separación del fondo */
    right: 30px;  /* Separación de la derecha */
    background-color: #25d366; /* Verde oficial */
    color: white !important;
    width: 65px;  /* Tamaño para que sea redondo */
    height: 65px;
    border-radius: 50%; /* Círculo perfecto */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 10001; /* Siempre por encima de todo */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-size: 35px;
    transition: transform 0.3s ease;
    animation: pulseWhatsApp 2s infinite; /* Animación de pulso */
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

/* Animación para que el botón "llame" al cliente */
@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste para celulares pequeños */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}
/* Migas de Pan / Breadcrumbs */
.breadcrumb-nav {
    background: #f1f1f1;
    padding: 15px 5%;
    margin-top: 70px; /* Para que no lo tape la navbar */
    font-size: 0.9rem;
}
.breadcrumb-nav a { color: var(--accent-green); text-decoration: none; }
.breadcrumb-nav span { color: #888; }

/* Header del Tour */
.tour-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 2px solid #eee;
}

.duration-badge {
    background: var(--primary-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Iconos de Servicio */
.service-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 0;
    text-align: center;
}
.s-icon i { font-size: 1.5rem; color: var(--gold-earth); margin-bottom: 10px; }

/* Itinerario */
.day-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.day-number {
    background: var(--gold-earth);
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    height: fit-content;
}

/* BOTÓN GIGANTE */
.btn-reserve-giant {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #25d366;
    color: white !important;
    text-decoration: none;
    padding: 25px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
}
.btn-reserve-giant:hover { transform: translateY(-5px); background: #1ebe57; }
.btn-reserve-giant i { font-size: 2.5rem; margin-bottom: 10px; }

/* Cuadro de Entradas */
.ticket-info-box {
    background: #fff8e1;
    border: 1px dashed var(--gold-earth);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.price-row { display: flex; justify-content: space-between; margin-top: 10px; border-bottom: 1px solid #ddd; padding-bottom: 5px; }

/* Responsivo */
@media (max-width: 768px) {
    .tour-header-main, .service-icons, .detail-grid { grid-template-columns: 1fr; flex-direction: column; text-align: center; }
    .day-card { flex-direction: column; }
}
/* =========================================
   ESTILO DEL FOOTER - ALLIANCE AMAZONIAN
   ========================================= */
footer {
    background-color: var(--primary-green); /* Verde Selva Profunda [cite: 65, 237] */
    color: var(--white);
    padding: 40px 5%;
    text-align: center;
    border-top: 4px solid var(--gold-earth); /* Tono Tierra/Madera [cite: 238] */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

/* Contenedor de Iconos Sociales */
.social-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    display: inline-block;
}

/* Efectos al pasar el mouse (Hover) */
.social-icons a:hover {
    color: var(--gold-earth); /* Cambio al color tierra al pasar el mouse [cite: 238] */
    transform: translateY(-5px); /* Pequeño salto hacia arriba */
}

/* Ajuste específico para el icono de WhatsApp si quieres que sea verde al hover */
.social-icons a[href*="wa.me"]:hover {
    color: #25d366; 
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    footer {
        padding: 30px 10%;
    }
    
    .footer-content {
        gap: 15px;
    }

    footer p {
        font-size: 0.9rem;
    }
}
.gastronomy-premium {
    padding: 80px 10%;
    background-color: var(--white);
}

.gastro-header {
    text-align: center;
    margin-bottom: 50px;
}

.gastro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Estilos de Texto */
.gastro-text h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.gastro-features {
    margin-top: 30px;
}

.g-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--gold-earth);
}

.g-item i {
    color: var(--accent-green);
    font-size: 1.5rem;
}

/* Estilos de la Galería de Imágenes */
.gastro-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.g-img-large {
    height: 300px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.g-img-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.g-img-small {
    height: 150px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.g-img-large span, .g-img-small span {
    background: rgba(59, 202, 121, 0.78);
    color: rgb(255, 255, 255);
    width: 100%;
    padding: 10px;
    font-size: 0.8rem;
    text-align: center;
}

/* Responsividad */
@media (max-width: 768px) {
    .gastro-grid {
        grid-template-columns: 1fr;
    }
    
    .gastronomy-premium {
        padding: 50px 5%;
    }
}
@media (max-width: 768px) {
    /* Muestra el icono de las 3 rayitas */
    .menu-toggle {
        display: block !important;
        cursor: pointer;
        font-size: 1.8rem;
        color: white;
    }

    /* Estilo del menú desplegable con los botones */
    .nav-links {
        display: none; /* Oculto por defecto */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1b4332; /* Verde Selva de Alliance Amazonian */
        padding: 20px 0;
        z-index: 1000;
    }

    /* Clase que se activa al presionar el botón */
    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.2rem;
        color: white;
        text-decoration: none;
        display: block;
    }
}
@media (max-width: 768px) {
    /* El botón de las 3 rayitas */
    .menu-toggle {
        display: block !important;
        z-index: 10001; /* Siempre por encima */
        cursor: pointer;
    }

    /* La lista de botones que debe aparecer */
    .nav-links {
        display: none; /* Oculto por defecto */
        flex-direction: column;
        position: fixed; /* Cambiado a fixed para que cubra la pantalla */
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        background-color: #1b4332 !important; /* Verde Selva Profunda [cite: 65] */
        z-index: 10000; 
        padding-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    /* Clase que activa el JavaScript */
    .nav-links.active {
        display: flex !important; 
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}