/* ========================================================
   EL GRAN POZO AZUFRADO (AKUATTA) - DESIGN SYSTEM 2026
   Identidad Ecoturística de Lujo, Aguas Termales & Bienestar
======================================================== */

/* RESET Y VARIABLES */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Paleta Cromática Turística & Natural */
    --primary: #063b36;            /* Verde bosque profundo */
    --primary-dark: #03201d;       /* Sombra profunda */
    --primary-light: #0e5b53;      /* Verde esmeralda vivo */
    --accent: #10b981;             /* Verde agua / menta medicinal */
    --accent-hover: #059669;
    --accent-light: #ecfdf5;
    --gold: #d4af37;               /* Dorado azufre mineral */
    --gold-hover: #b89628;
    --gold-light: #fefce8;
    --earth: #855829;              /* Tono tierra cálido */
    --earth-light: #fdf8f4;
    
    /* Neutros */
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --bg-page: #f8faf9;
    --card-bg: #ffffff;
    --border-light: #e2e8f0;

    /* Tipografías */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Efectos & Elevaciones */
    --shadow-sm: 0 2px 10px rgba(6, 59, 54, 0.05);
    --shadow-md: 0 10px 30px rgba(6, 59, 54, 0.08);
    --shadow-lg: 0 20px 45px rgba(6, 59, 54, 0.12);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.28);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* BARRA DE PROGRESO DE LECTURA */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 50%, #25d366 100%);
    z-index: 1100;
    transition: width 0.08s ease-out;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

/* BOTÓN VOLVER ARRIBA */
.btn-back-to-top {
    position: fixed;
    bottom: 25px;
    right: 88px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #ffffff;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.45);
    border-color: #ffffff;
}

/* UTILIDAD SCROLL REVEAL SUAVE */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.68;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 55px;
}

.section-header.align-left {
    text-align: left;
    margin-left: 0;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    background: var(--accent-light);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ========================================================
   NAVBAR & NAVEGACIÓN
======================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(6, 59, 54, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 6%;
    background: rgba(3, 32, 29, 0.97);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo-link {
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.logo-accent {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav-toggle.open .hamburger {
    background: transparent;
}
.nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ========================================================
   HERO / PORTADA DE ALTO IMPACTO
======================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 130px 20px 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out, transform 8s ease-out;
    transform: scale(1.08);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(3, 32, 29, 0.72) 0%,
        rgba(6, 59, 54, 0.6) 50%,
        rgba(3, 32, 29, 0.92) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin: 0 auto 34px;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #b89628 100%);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: #ffffff;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    padding: 14px 24px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* DESTACADOS RÁPIDOS EN HERO */
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    margin-top: 20px;
    text-align: left;
}

.highlight-item {
    background: rgba(6, 59, 54, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
}

.highlight-icon {
    font-size: 1.6rem;
}

.highlight-text strong {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
}

.highlight-text span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero-scroll-btn {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* ========================================================
   SECCIÓN HISTORIA & ORIGEN
======================================================== */
.history {
    background: linear-gradient(180deg, #fdfbf7 0%, #f7f3ec 50%, #fdfbf7 100%);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.history::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(133, 88, 41, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.history-intro-card {
    background: linear-gradient(135deg, #063b36 0%, #0e5b53 70%, #08433d 100%);
    color: #ffffff;
    padding: 45px 36px;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 36px rgba(6, 59, 54, 0.22);
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.35);
    position: relative;
    overflow: hidden;
}

.history-intro-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.25);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.history-intro-card h3 {
    color: #ffffff;
    font-size: 2.1rem;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.history-intro-card p {
    font-size: 1.12rem;
    max-width: 820px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.7;
}

.history-cert-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cert-pill {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.cert-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.history-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: var(--radius-md);
    padding: 34px;
    box-shadow: 0 8px 24px rgba(133, 88, 41, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.history-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    opacity: 0.75;
    transition: var(--transition);
}

.history-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(133, 88, 41, 0.14);
    border-color: var(--gold);
}

.history-card:hover::after {
    width: 6px;
    opacity: 1;
}

.card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gold-light);
    color: var(--gold-hover);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.18);
    transition: var(--transition);
}

.history-card:hover .card-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.history-card h3 {
    font-size: 1.45rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.history-text-block {
    margin-bottom: 18px;
}

.history-text-block h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.history-text-block p {
    font-size: 0.94rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* LÍNEA DE TIEMPO */
.history-timeline-wrapper {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-lg);
    padding: 42px;
    box-shadow: 0 8px 25px rgba(133, 88, 41, 0.06);
    position: relative;
}

.timeline-heading {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.45rem;
    color: var(--primary);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    position: relative;
}

.timeline-item {
    position: relative;
    padding-left: 26px;
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateX(4px);
}

.timeline-dot {
    position: absolute;
    left: -8.5px;
    top: 2px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--accent);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
}

.timeline-date {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--gold-hover);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.timeline-content h4 {
    font-size: 1.08rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ========================================================
/* ========================================================
   SECCIÓN SOBRE NOSOTROS (NATURALEZA & BIENESTAR)
======================================================== */
.about {
    background: linear-gradient(180deg, #fdfbf7 0%, #edf8f3 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images-col {
    position: relative;
}

.about-photo-large {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 45px rgba(6, 59, 54, 0.16);
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.about-photo-large:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(6, 59, 54, 0.22);
}

.about-photo-small {
    position: absolute;
    bottom: -30px;
    right: -25px;
    width: 230px;
    height: 210px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 6px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.about-photo-small:hover {
    transform: scale(1.05) rotate(1deg);
}

.about-badge-floating {
    position: absolute;
    top: 30px;
    left: -20px;
    background: #ffffff;
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(6, 59, 54, 0.12);
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--accent);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.badge-accent {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 500;
}

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

.pillar-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 4px 18px rgba(6, 59, 54, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateX(8px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.12);
}

.pillar-icon {
    font-size: 2rem;
    background: var(--accent-light);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.pillar-info h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.pillar-info p {
    font-size: 0.94rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ========================================================
   SECCIÓN SERVICIOS DESTACADOS (RECREACIÓN & EXPERIENCIAS)
======================================================== */
.services {
    background: linear-gradient(180deg, #f0fdfa 0%, #e6fffa 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 15%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at 85% 85%, rgba(6, 59, 54, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(6, 59, 54, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 48px rgba(6, 59, 54, 0.14);
    border-color: var(--accent);
}

.service-img-wrap {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(6, 59, 54, 0.9);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.service-tag.gold-tag {
    background: rgba(212, 175, 55, 0.95);
    color: var(--primary-dark);
}

.service-body {
    padding: 32px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-body p {
    font-size: 0.96rem;
    color: var(--text-body);
    margin-bottom: 22px;
    flex: 1;
    line-height: 1.65;
}

.service-perks {
    list-style: none;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

/* ========================================================
   SECCIÓN ESTANCIA Y HOSPEDAJE ($35.000)
======================================================== */
.estancia {
    background: linear-gradient(180deg, #fdfbf7 0%, #f4fbf7 50%, #edf8f3 100%);
    position: relative;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.estancia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.estancia-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(6, 59, 54, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    transition: var(--transition);
}

.estancia-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.14);
}

.estancia-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(6, 59, 54, 0.15);
}

.estancia-img-box {
    position: relative;
    min-height: 380px;
}

.estancia-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.estancia-card:hover .estancia-img-box img {
    transform: scale(1.05);
}

.estancia-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.5px;
}

.estancia-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.estancia-header-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
}

.estancia-header-price h3 {
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1.2;
}

.estancia-location {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.price-box {
    background: var(--accent-light);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-align: right;
    border: 1px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.12);
}

.price-val {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-hover);
    line-height: 1;
}

.price-unit {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estancia-desc-text {
    font-size: 1.02rem;
    color: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.68;
}

.estancia-features {
    margin-bottom: 30px;
    background: #f8fafc;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.estancia-features h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 0.94rem;
    color: var(--text-dark);
}

.estancia-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ACORDEÓN INTERACTIVO DE PREGUNTAS FRECUENTES (FAQ) */
.faq-container {
    margin-top: 55px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 12px 35px rgba(6, 59, 54, 0.07);
    padding: 36px 40px;
}

.faq-title-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.faq-icon {
    font-size: 2rem;
}

.faq-title-bar h3 {
    font-size: 1.45rem;
    color: var(--primary);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    background: #ffffff;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.12);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: #f8fafc;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.faq-question:hover {
    background: #f1f5f9;
    color: var(--accent-hover);
}

.faq-item.active .faq-question {
    background: var(--accent-light);
    color: var(--primary-dark);
}

.faq-arrow {
    font-size: 0.82rem;
    transition: transform 0.35s ease;
    color: var(--accent);
    font-weight: bold;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.3s ease;
    background: #ffffff;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding: 18px 24px 22px;
    max-height: 280px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.68;
}

/* ========================================================
   SECCIÓN GASTRONOMÍA & BEBIDAS (100% REAL)
======================================================== */
.menu {
    background: linear-gradient(180deg, #fdfbf7 0%, #f7f1e6 50%, #f3ece0 100%);
    position: relative;
    border-top: 1px solid rgba(133, 88, 41, 0.15);
}

.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.09) 0%, transparent 42%),
                      radial-gradient(circle at 88% 82%, rgba(133, 88, 41, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.menu-tab-btn {
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    color: var(--text-body);
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-size: 0.96rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(6, 59, 54, 0.04);
}

.menu-tab-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.menu-tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(6, 59, 54, 0.22);
}

.drinks-subfilters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.subfilter-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-right: 6px;
}

.subfilter-pill {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.subfilter-pill:hover,
.subfilter-pill.active {
    background: var(--accent-light);
    color: var(--accent);
    border-color: var(--accent);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* CONTENEDOR DE COMIDAS TÍPICAS (ATMÓSFERA FOGÓN DE LEÑA) */
.food-category-block#comidas-section-wrap {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    border: 1px solid rgba(133, 88, 41, 0.18);
    box-shadow: 0 12px 36px rgba(133, 88, 41, 0.06);
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.category-title-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(133, 88, 41, 0.14);
}

.cat-bar-icon {
    font-size: 1.8rem;
}

.category-title-bar h3 {
    font-size: 1.6rem;
    color: var(--primary);
}

/* CUADRÍCULA DE COMIDAS */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.food-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(6, 59, 54, 0.06);
    border: 1px solid rgba(133, 88, 41, 0.16);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(6, 59, 54, 0.13);
    border-color: var(--gold);
}

.food-card-img-box {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.food-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.food-card:hover .food-card-img-box img {
    transform: scale(1.08);
}

.food-badge-chef {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.food-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.food-card-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.food-card-desc {
    font-size: 0.92rem;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.58;
    flex: 1;
}

.food-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.food-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: #855829;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.btn-order-dish {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
    transition: var(--transition);
}

.btn-order-dish:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

/* CONTENEDOR DE BEBIDAS REFRESCANTES (ATMÓSFERA CRISTALINA & AZURE) */
.food-category-block#bebidas-section-wrap {
    background: linear-gradient(135deg, #eef7fc 0%, #e0f2fe 50%, #f0fdfa 100%);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: 0 12px 36px rgba(14, 165, 233, 0.08);
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

.food-category-block#bebidas-section-wrap .category-title-bar {
    border-bottom: 2px solid rgba(56, 189, 248, 0.28);
}

/* CUADRÍCULA DE BEBIDAS */
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.drink-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px 18px;
    border: 1px solid rgba(56, 189, 248, 0.24);
    box-shadow: 0 6px 20px rgba(6, 59, 54, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.drink-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 36px rgba(14, 165, 233, 0.18);
    border-color: #0284c7;
}

.drink-thumb-wrap {
    width: 110px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.drink-thumb-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
    transition: transform 0.4s ease;
}

.drink-card:hover .drink-thumb-wrap img {
    transform: scale(1.12) rotate(2deg);
}

.drink-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.drink-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 14px;
    line-height: 1.4;
}

.drink-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0284c7;
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.menu-order-note {
    background: linear-gradient(135deg, #063b36 0%, #0d5256 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 50px;
    flex-wrap: wrap;
    box-shadow: 0 12px 35px rgba(6, 59, 54, 0.2);
    position: relative;
    z-index: 1;
}

.menu-order-note .note-icon {
    font-size: 2.4rem;
}

.menu-order-note .note-text {
    flex: 1;
    min-width: 240px;
}

.menu-order-note .note-text strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
}

.menu-order-note .note-text p {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-order-wa {
    background: var(--gold);
    color: var(--primary-dark);
    font-weight: 800;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-size: 0.94rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transition: var(--transition);
}

.btn-order-wa:hover {
    background: #ffffff;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* ========================================================
   SECCIÓN GALERÍA (MUSEO & EXHIBICIÓN ECOTURÍSTICA)
======================================================== */
.gallery {
    background: linear-gradient(180deg, #031e1a 0%, #063b36 50%, #042421 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
                      radial-gradient(circle at 18% 82%, rgba(16, 185, 129, 0.1) 0%, transparent 45%);
    pointer-events: none;
}

.gallery .section-subtitle {
    color: var(--gold);
    letter-spacing: 2px;
}

.gallery .section-title {
    color: #ffffff;
}

.gallery .section-desc {
    color: rgba(255, 255, 255, 0.85);
}

.gallery-category-chips {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 38px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.gallery-chip {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    padding: 11px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.gallery-chip:hover,
.gallery-chip.active {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.gallery-card-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #021614;
    transition: var(--transition);
}

.gallery-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    border-color: var(--gold);
}

.gallery-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card-item:hover img {
    transform: scale(1.12);
}

.gallery-overlay-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 32, 29, 0.94) 0%, rgba(3, 32, 29, 0.4) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #ffffff;
    transition: opacity 0.35s ease;
}

.gallery-card-item:hover .gallery-overlay-hover {
    opacity: 1;
}

.gallery-hover-title {
    font-weight: 700;
    font-size: 1.12rem;
    margin-bottom: 4px;
    color: #ffffff;
}

.gallery-hover-desc {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================================
   LIGHTBOX MODAL DE GALERÍA (TECLADO + TOUCH SWIPE)
======================================================== */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 32, 29, 0.95);
    backdrop-filter: blur(14px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 960px;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(0,0,0,0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: opacity 0.2s ease;
}

.lightbox-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
}

.lightbox-btn:hover {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.lightbox-close { top: -60px; right: 0; font-size: 2rem; }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-counter {
    position: absolute;
    bottom: -45px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================================
   SECCIÓN VIDEO & CÓMO LLEGAR
======================================================== */
.videosection {
    background: linear-gradient(180deg, #f0faf4 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.videosection::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.video-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(6, 59, 54, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    transition: var(--transition);
}

.video-card:hover {
    box-shadow: 0 20px 48px rgba(6, 59, 54, 0.14);
}

.video-media-wrap {
    height: 100%;
    min-height: 400px;
    background: #000000;
}

.video-media-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-info-box {
    padding: 44px 38px;
}

.video-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-hover);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.video-info-box h3 {
    font-size: 1.7rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.video-info-box p {
    color: var(--text-body);
    font-size: 0.98rem;
    margin-bottom: 26px;
    line-height: 1.65;
}

.travel-tips {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.tip-item:hover {
    background: var(--accent-light);
    transform: translateX(4px);
}

.tip-item span {
    font-size: 1.6rem;
}

.tip-item strong {
    display: block;
    font-size: 0.96rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.tip-item p {
    margin-bottom: 0;
    font-size: 0.86rem;
    color: var(--text-body);
}

/* ========================================================
   SECCIÓN UBICACIÓN
======================================================== */
.location {
    background: linear-gradient(180deg, #f8fafc 0%, #f4fbf7 50%, #edf8f3 100%);
    position: relative;
    border-top: 1px solid var(--border-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: center;
}

.location-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 12px 35px rgba(6, 59, 54, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.loc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}

.loc-icon {
    font-size: 2.2rem;
}

.loc-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
}

.loc-tag {
    font-size: 0.85rem;
    color: var(--accent-hover);
    font-weight: 700;
}

.loc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.loc-item:last-child {
    border-bottom: none;
}

.loc-item-icon {
    font-size: 1.4rem;
}

.loc-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.loc-item p {
    font-size: 0.9rem;
    color: var(--text-body);
}

.loc-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-maps-primary {
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(6, 59, 54, 0.2);
}

.btn-maps-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 59, 54, 0.3);
}

.btn-maps-wa {
    background: var(--accent-light);
    color: var(--accent-hover);
    border: 1.5px solid var(--accent);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-maps-wa:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.map-embed-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(6, 59, 54, 0.12);
    border: 2px solid rgba(16, 185, 129, 0.25);
    height: 500px;
    transition: var(--transition);
}

.map-embed-wrapper:hover {
    box-shadow: 0 20px 50px rgba(6, 59, 54, 0.18);
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================================
   SECCIÓN COMENTARIOS Y TESTIMONIOS
======================================================== */
.comments {
    background: linear-gradient(180deg, #edf8f3 0%, #f9fbf9 50%, #ffffff 100%);
    position: relative;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.comments-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 35px;
}

.comments-form-card,
.comments-feed-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: 0 12px 35px rgba(6, 59, 54, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.comments-form-card h3,
.feed-header h3 {
    font-size: 1.45rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-subtext {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.94rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.btn-submit-comment {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 59, 54, 0.25);
    transition: var(--transition);
}

.btn-submit-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(6, 59, 54, 0.35);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.feed-tag {
    background: var(--accent-light);
    color: var(--accent-hover);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.comments-feed-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 8px;
}

.comment-item {
    background: #f8fafc;
    border-radius: var(--radius-sm);
    padding: 20px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.comment-item:hover {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(6, 59, 54, 0.08);
    transform: translateY(-2px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 700;
    color: var(--primary);
}

.comment-date {
    color: var(--text-muted);
}

.comment-text {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* ========================================================
   FOOTER
======================================================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 80px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-logo h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.footer-logo span {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 22px;
    position: relative;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-links-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-col p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.78);
}

.btn-admin-portal {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-admin-portal:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ========================================================
   BOTONES FLOTANTES
======================================================== */
.floating-social-group {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.float-btn:hover {
    transform: translateY(-4px) scale(1.08);
}

.float-btn img {
    width: 28px;
    height: 28px;
}

.float-wa { background: #25d366; }
.float-fb { background: #1877f2; }
.float-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }

/* TOAST NOTIFICATION */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #ffffff;
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-body);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.error {
    border-left-color: #ef4444;
}

/* ========================================================
   RESPONSIVE DESIGN (MÓVILES Y TABLETS)
======================================================== */
@media (max-width: 1024px) {
    .navbar {
        padding: 14px 5%;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        max-width: 340px;
        height: 100vh;
        background: rgba(3, 32, 29, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 40px;
        gap: 18px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
        transition: right 0.4s ease;
        z-index: 998;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.05rem;
    }

    .about-wrapper,
    .estancia-card,
    .video-card,
    .location-grid,
    .comments-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo-small {
        display: none;
    }

    .about-badge-floating {
        left: 20px;
        top: 20px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 640px) {
    .section {
        padding: 65px 0;
    }

    .hero {
        padding: 120px 16px 60px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }

    .estancia-details,
    .video-info-box,
    .location-card,
    .comments-form-card,
    .comments-feed-card {
        padding: 24px 18px;
    }

    .menu-order-note {
        flex-direction: column;
        text-align: center;
    }

    .floating-social-group {
        bottom: 18px;
        right: 18px;
    }
}