* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3B3B3B; /* gris marca */
    --primary-2: #7A5C44; /* café claro */
    --accent: #B58A5A; /* caramelo */
    --light-accent: #E6D4C2; /* latte */
    --muted: #F3F3F3; /* gris suave */
    --muted-light: #FBFAF8; /* blanco cálido */
    --text: #1E1E1E;
    --text-light: #5E5E5E;
    --footer-bg: #242424;
    --border-color: #E6E1DA;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--muted-light);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: transparent;
    height: 64px;
    padding: 0;
    box-shadow: none;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Debe estar por encima del panel .mobile-nav (z-index 1200) para que la X siempre sea visible */
    z-index: 1301;
    transition: all 0.4s cubic-bezier(.2,.9,.2,1);
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.visible {
    transform: translateY(0);
    opacity: 1;
}

.navbar.solid {
    background-color: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo a {
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.logo h1 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1.5px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: transparent;
    transform: none;
    box-shadow: none;
    border-color: var(--primary-2);
    color: var(--primary-2);
}

/* Hamburger button */
.hamburger {
    width: 44px;
    height: 36px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: relative;
    z-index: 1302;
}

.hamburger span {
    display: block;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -10px 0 28px rgba(0,0,0,0.12);
    border-left: 1px solid var(--border-color);
    transition: right 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1200;
    padding: 80px 20px 20px 20px;
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav li {
    width: 100%;
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 16px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: transparent;
}

.mobile-nav a:hover {
    background: rgba(122, 92, 68, 0.06);
    color: var(--primary-2);
    transform: translateX(4px);
}

.mobile-nav a.active {
    background: rgba(181, 138, 90, 0.1);
    color: var(--accent);
    font-weight: 600;
    border-left: 3px solid var(--accent);
}

.mobile-nav-section {
    border-top: 1px solid var(--border-color);
    padding: 12px 0 8px 0;
    margin-top: 12px;
}

.mobile-nav-section-title {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Contenedor horizontal para iconos sociales */
.social-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
}

/* Social Links - Super lindos con animaciones */
.social-link {
    background-color: #ffffff !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    border: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    position: relative !important;
    overflow: visible !important;
}

.social-link:hover {
    transform: scale(1.15) rotate(5deg) !important;
}

/* Instagram con gradiente oficial */
.instagram-link {
    background: linear-gradient(135deg, #833AB4 0%, #C13584 25%, #E1306C 50%, #FD1D1D 75%, #F77737 100%) !important;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4) !important;
    animation: instagramPulse 3s ease-in-out infinite !important;
}

.instagram-link:hover {
    box-shadow: 0 6px 25px rgba(225, 48, 108, 0.6) !important;
    animation: instagramSpin 0.6s ease-in-out !important;
}

.instagram-link::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

/* WhatsApp con color oficial */
.phone-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    animation: whatsappPulse 3s ease-in-out infinite 1.5s !important;
}

.phone-link:hover {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6) !important;
    animation: whatsappRing 0.8s ease-in-out !important;
}

.phone-link::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

/* Facebook con color oficial */
.facebook-link {
    background: linear-gradient(135deg, #1877F2 0%, #0B5ED7 100%) !important;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.38) !important;
    animation: facebookPulse 3s ease-in-out infinite 0.75s !important;
}

.facebook-link:hover {
    box-shadow: 0 6px 25px rgba(24, 119, 242, 0.55) !important;
    animation: facebookWiggle 0.8s ease-in-out !important;
}

.facebook-link::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" fill="white"><path d="M279.14 288l14.22-92.66h-88.91V117.78c0-25.35 12.42-50.06 52.24-50.06H295V6.26S259.36 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72V195.3H22.89V288h81.39v224h100.2V288z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 54% 50%;
    display: inline-block;
}

@keyframes instagramPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(225, 48, 108, 0.6), 0 0 20px rgba(225, 48, 108, 0.3); }
}

@keyframes instagramSpin {
    0% { transform: scale(1.15) rotate(5deg); }
    25% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(1.25) rotate(5deg); }
    75% { transform: scale(1.2) rotate(-5deg); }
    100% { transform: scale(1.15) rotate(5deg); }
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 20px rgba(37, 211, 102, 0.3); }
}

@keyframes whatsappRing {
    0%, 100% { transform: scale(1.15) rotate(5deg); }
    10%, 30%, 50%, 70% { transform: scale(1.2) rotate(-10deg); }
    20%, 40%, 60% { transform: scale(1.2) rotate(10deg); }
    80% { transform: scale(1.18) rotate(-5deg); }
}

@keyframes facebookPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(24, 119, 242, 0.38); }
    50% { box-shadow: 0 4px 25px rgba(24, 119, 242, 0.55), 0 0 18px rgba(24, 119, 242, 0.28); }
}

@keyframes facebookWiggle {
    0% { transform: scale(1.15) rotate(5deg); }
    20% { transform: scale(1.2) rotate(-8deg); }
    40% { transform: scale(1.22) rotate(8deg); }
    60% { transform: scale(1.2) rotate(-6deg); }
    80% { transform: scale(1.18) rotate(6deg); }
    100% { transform: scale(1.15) rotate(5deg); }
}

@keyframes highlightSection {
    0% { 
        background-color: transparent;
        transform: translateX(-10px);
        opacity: 0.5;
    }
    50% { 
        background-color: rgba(122, 92, 68, 0.08);
        transform: translateX(0);
        opacity: 1;
    }
    100% { 
        background-color: transparent;
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes filterPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(122, 92, 68, 0.25), 0 2px 6px rgba(122, 92, 68, 0.15);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(122, 92, 68, 0.4), 0 3px 10px rgba(122, 92, 68, 0.25);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(122, 92, 68, 0.25), 0 2px 6px rgba(122, 92, 68, 0.15);
    }
}

/* Hero Section */

/* Hero Section (Fullscreen con animación wow) */
.hero {
    background-color: transparent;
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-bottom: none;
    box-shadow: none;
    transition: transform 0.1s linear, opacity 0.1s linear;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('imagenes/lugar.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: heroKenBurns 20s ease-in-out infinite alternate;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.48);
}

@keyframes heroKenBurns {
    0% { transform: scale(1.1) translateY(0); }
    100% { transform: scale(1.18) translateY(-12px); }
}

@keyframes floatBg {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-wow {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(14px);
    animation: heroPop 1100ms cubic-bezier(.2,.9,.2,1) forwards;
}

.hero-wow-title { animation-delay: 300ms; }
.hero-wow-subtitle { animation-delay: 550ms; }
.hero-wow-cta { animation-delay: 800ms; }

@keyframes heroPop {
    0% {
        opacity: 0;
        transform: translateY(32px) scale(0.94);
        filter: blur(16px);
    }
    55% {
        opacity: 1;
        transform: translateY(0) scale(1.03);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollIndicatorFadeInUp 1s ease-out 1.4s backwards;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 0.7;
}

.hero-scroll-indicator span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 22px;
    height: 22px;
    border-right: 2px solid rgba(255,255,255,0.85);
    border-bottom: 2px solid rgba(255,255,255,0.85);
    transform: translateY(0) rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0) rotate(45deg); opacity: 1; }
    50% { transform: translateY(10px) rotate(45deg); opacity: 0.4; }
}

/*
  Animación exclusiva del indicador (mantiene translateX(-50%)).
  IMPORTANTE: existe otro @keyframes fadeInUp más abajo para contenido general.
*/
@keyframes scrollIndicatorFadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Animaciones WOW (inicio) */
.wow {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
    transition: opacity 700ms cubic-bezier(.2,.9,.2,1), transform 700ms cubic-bezier(.2,.9,.2,1), filter 700ms cubic-bezier(.2,.9,.2,1);
    will-change: opacity, transform, filter;
}

.wow.wow--left { transform: translateX(-26px); }
.wow.wow--right { transform: translateX(26px); }
.wow.wow--zoom { transform: scale(0.96); }

.wow.is-visible {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero-wow,
    .wow {
        animation: none !important;
        transition: none !important;
    }

    .wow {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.2rem;
    margin: 0;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    word-spacing: 0.2em;
}

.hero-content p {
    font-size: 1.3rem;
    margin: 1rem 0 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
    opacity: 0.97;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Hero toggle button (solo móvil) */
.hero-toggle-wrapper {
    display: none;
    background: var(--muted);
}

.hero-toggle {
    display: none;
    width: 100%;
    padding: 0.9rem 1.2rem;
    background-color: #ffffff;
    color: var(--primary);
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-toggle:active {
    background-color: #ffffff;
    transform: scale(0.99);
}

.toggle-icon {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.4s cubic-bezier(.2,.9,.2,1);
}

.hero-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: var(--primary-2);
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: none;
    border: 2px solid var(--primary-2);
}

.cta-button:hover {
    background-color: #ffffff;
    color: var(--accent);
    transform: none;
    box-shadow: none;
    border-color: var(--accent);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--light-accent);
    border-radius: 50%;
    opacity: 0.08;
}

.about h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision-text {
    font-size: 1.15rem;
    line-height: 1.9;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-light);
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lugar Section */
.lugar-section {
    padding: 6rem 0;
    background-color: var(--muted-light);
    position: relative;
    overflow: hidden;
}

.lugar-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.05;
}

.lugar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.lugar-card {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 340px;
    animation: slideInImage 0.8s ease-out forwards;
    border: 1px solid rgba(0,0,0,0.06);
}

.lugar-card:nth-child(1) {
    animation-name: slideInLeft;
    animation-delay: 0.2s;
}

.lugar-card:nth-child(2) {
    animation-name: slideInRight;
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lugar-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}

.lugar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lugar-card:hover .lugar-image {
    transform: scale(1.08);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: var(--muted-light);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.04;
}

.gallery h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.06);
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.gallery-image {
    height: 300px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.65);
    color: white;
    padding: 2rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 5.5rem 0;
    background-color: var(--light-accent);
    text-align: center;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section .container {
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

.cta-card {
    background-color: #ffffff;
    padding: 3.5rem 4rem;
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.16);
}

.cta-content {
    flex: 1;
    max-width: 520px;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--primary);
    line-height: 1.15;
}

.cta-section p {
    font-size: 1.15rem;
    margin: 0 0 2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section .cta-button-large {
    background-color: var(--primary-2);
    color: #ffffff;
    border: 2px solid var(--primary-2);
}

.cta-section .cta-button-large:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Café visual con humo */
.cta-visual {
    flex-shrink: 0;
}

.coffee-cup {
    position: relative;
    width: 140px;
    height: 160px;
}

.coffee-cup-body {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 100px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 8px 8px 40px 40px;
    border: 5px solid var(--primary-2);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.coffee-liquid {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    height: 58px;
    background-color: var(--primary-2);
    border-radius: 0 0 34px 34px;
    animation: coffeeLiquid 3s ease-in-out infinite;
}

@keyframes coffeeLiquid {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.coffee-cup-handle {
    position: absolute;
    bottom: 22px;
    right: 0;
    width: 32px;
    height: 48px;
    border: 6px solid var(--primary-2);
    border-left: none;
    border-radius: 0 24px 24px 0;
}

/* Humo animado */
.coffee-steam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.steam {
    display: block;
    width: 10px;
    height: 50px;
    background: linear-gradient(to top, var(--primary-2), transparent);
    border-radius: 50%;
    filter: blur(5px);
    animation: steamRise 2.2s ease-out infinite;
    opacity: 0;
}

.steam-1 {
    animation-delay: 0s;
    height: 48px;
}

.steam-2 {
    animation-delay: 0.5s;
    height: 58px;
}

.steam-3 {
    animation-delay: 1s;
    height: 42px;
}

@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }
    15% {
        opacity: 0.85;
    }
    50% {
        opacity: 0.45;
        transform: translateY(-35px) scaleX(1.5);
    }
    100% {
        opacity: 0;
        transform: translateY(-70px) scaleX(2.2);
    }
}

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: var(--primary-2);
    padding: 1.3rem 3.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: none;
    position: relative;
    z-index: 1;
    border: 2px solid var(--accent);
}

.cta-button-large:hover {
    transform: none;
    box-shadow: none;
    background-color: #ffffff;
    color: var(--accent);
    border-color: var(--primary-2);
}

/* Hours Section */
.hours-section {
    padding: 5rem 0;
    background-color: var(--muted-light);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hours-section::after {
    content: '';
    display: none;
}

.hours-section h2 {
    text-align: center;
    font-size: 2.35rem;
    color: var(--primary) !important;
    margin-bottom: 2.4rem;
    font-weight: 700 !important;
    letter-spacing: -0.6px;
    position: relative;
    z-index: 1;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hours-item {
    text-align: center;
    padding: 2rem 1.6rem;
    background-color: #ffffff;
    border-radius: 14px;
    transition: border-color 0.25s ease, transform 0.25s ease;
    border: 1px solid var(--border-color);
}

.hours-item:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--primary-2);
}

.hours-day {
    font-size: 1.35rem;
    color: var(--primary) !important;
    font-weight: 700 !important;
    margin-bottom: 0.6rem;
    letter-spacing: 0.2px;
}

.hours-time {
    font-size: 1.3rem;
    color: var(--text-light) !important;
    font-weight: 600 !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Ocultar visualmente elementos solicitados en la sección de menú */
.menu-card-rating,
.add-btn {
    display: none !important;
}

.menu-card-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

/* Menu Section */
.menu-section {
    padding: 3.5rem 0;
    background-color: var(--muted-light);
}

.menu-filters {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
    position: relative;
    padding: 1.25rem 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    /* Personalizar scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

/* Estilos para scrollbar en navegadores webkit */
.menu-filters::-webkit-scrollbar {
    height: 8px;
}

.menu-filters::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.menu-filters::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.menu-filters::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.filter-btn {
    background-color: #ffffff;
    color: var(--primary-2);
    border: 1.5px solid var(--primary-2);
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: none;
}

.filter-btn::before {
    content: '';
    display: none;
}

.filter-btn:hover {
    background-color: #ffffff;
    color: var(--accent);
    transform: none;
    box-shadow: none;
    border-color: var(--accent);
}

.filter-btn.active {
    background-color: #ffffff;
    color: var(--accent);
    transform: none;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(122, 92, 68, 0.25), 0 2px 6px rgba(122, 92, 68, 0.15);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.06);
}

.menu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}

.menu-card-image {
    height: 200px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.menu-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-card:hover .menu-card-image {
    transform: scale(1.08);
}

.menu-card:hover .menu-card-image::after {
    opacity: 1;
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card-content h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.menu-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.menu-card-description {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 60px;
    font-weight: 500;
}

/* Sabores: compacto, una sola fila (scroll horizontal) */
.menu-flavors {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-top: -6px;
    margin-bottom: 10px;
}

.menu-flavors::-webkit-scrollbar {
    height: 6px;
}

.menu-flavors::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.12);
    border-radius: 999px;
}

.flavor-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--muted);
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    transition: all 0.3s ease;
}

.menu-card:hover .price {
    color: var(--primary);
    transform: scale(1.05);
}

.add-btn {
    background-color: #ffffff;
    color: var(--primary-2);
    border: 1.5px solid var(--primary-2);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.add-btn:hover {
    background-color: #ffffff;
    color: var(--accent);
    border-color: var(--accent);
    transform: none;
}

/* Estilos por categoría con flores temáticas */
.menu-card[data-category="calientes"]::before {
    content: '☕';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.menu-card[data-category="sincafe"]::before {
    content: '🍫';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.menu-card[data-category="tisanas"]::before {
    content: '🌿';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.menu-card[data-category="tes"]::before {
    content: '🍵';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.menu-card[data-category="frias"]::before {
    content: '🧊';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.menu-card[data-category="frappe"]::before {
    content: '🥤';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.menu-card[data-category="chamoyadas"]::before {
    content: '🥭';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.menu-card[data-category="smoothies"]::before {
    content: '🍓';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.menu-card[data-category="alimentos"]::before {
    content: '🥐';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.menu-card[data-category="postres"]::before {
    content: '🍰';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.menu-card {
    position: relative;
}

/* Footer */
footer {
    background-color: var(--primary);
    padding: 2.4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: none;
}

footer::before {
    content: '';
    display: none;
}

footer::after {
    content: '';
    display: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.4px;
    text-shadow: none;
    margin: 0;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.15px;
}

.footer-divider {
    width: 50px;
    height: 1px;
    background-color: rgba(255,255,255,0.25);
    border-radius: 1px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.footer-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
}

.footer-map-link {
    color: inherit;
    text-decoration: none;
}

.footer-map-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-links {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0,0,0,0.18);
    }
    50% {
        box-shadow: 0 0 40px rgba(181,138,90,0.30);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s backwards;
}

.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    /* Header más compacto en móvil */
    .navbar {
        height: 56px;
        padding: 0;
    }

    .nav-container {
        padding: 0 12px;
        height: 100%;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .nav-menu {
        gap: 0.6rem;
    }

    .nav-menu a {
        padding: 0.3rem 0.6rem;
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    /* Hero: en móvil siempre visible (sin colapsar) */
    .hero-toggle-wrapper,
    .hero-toggle {
        display: none !important;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 0.5rem 0 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Móvil: reducir aún más botones y ajustar hero/menu-hero */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.35rem !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
    }

    .filter-btn {
        padding: 0.5rem 0.9rem !important;
        font-size: 0.85rem !important;
        border-radius: 20px !important;
    }

    .menu-filters {
        padding: 1rem 20px !important;
        gap: 0.6rem !important;
    }

    .navbar { height: 44px !important; padding: 0 !important; }
    .nav-container { height: 100% !important; padding: 0 6px !important; }

    /* Hours section responsive */
    .hours-section {
        padding: 3rem 0 !important;
    }

    .hours-section h2 {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .hours-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .hours-item {
        padding: 1.5rem 0 !important;
    }

    .hours-day {
        font-size: 1.4rem !important;
        margin-bottom: 0.8rem !important;
    }

    .hours-time {
        font-size: 1.2rem !important;
    }

    /* Lugar section responsive */
    .lugar-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .lugar-card {
        height: 240px !important;
    }

    .lugar-section {
        padding: 2rem 0 !important;
    }
}

/* Ajustes específicos adicionales para móvil */
@media (max-width: 768px) {
    /* Hero responsive - mostrar pero más compacto */
    .hero {
        min-height: 100vh !important;
        height: 100vh !important;
        min-height: 100svh !important;
        height: 100svh !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .hero-content p {
        font-size: 1.05rem !important;
    }

    .hero-scroll-indicator {
        bottom: 25px !important;
    }

    .hero-scroll-indicator span {
        font-size: 0.75rem !important;
    }

    .scroll-arrow {
        width: 18px !important;
        height: 18px !important;
    }

    /* Asegurar que los elementos quitados también estén ocultos en móvil */
    .menu-card-rating,
    .add-btn {
        display: none !important;
    }

    /* Header más compacto en móvil (refuerzo) */
    .navbar {
        height: 56px !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .nav-container {
        padding: 0 8px !important;
        height: 100% !important;
        align-items: center;
    }

    .logo h1 {
        font-size: 1rem !important;
        margin-left: 6px;
    }

    .nav-menu {
        gap: 0.4rem !important;
    }

    .nav-menu a {
        padding: 0.2rem 0.5rem !important;
        font-size: 0.9rem !important;
    }

    /* Footer responsive */
    footer {
        padding: 1.8rem 0 !important;
    }

    .footer-brand h2 {
        font-size: 1.3rem !important;
    }

    .footer-brand p {
        font-size: 0.82rem !important;
    }

    .footer-info p {
        font-size: 0.8rem !important;
    }

    .cta-section {
        padding: 3.5rem 0 !important;
    }

    .cta-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 2.5rem 1.8rem !important;
        gap: 2rem !important;
    }

    .cta-content {
        max-width: 100% !important;
    }

    .cta-section h2 {
        font-size: 2rem !important;
    }

    .cta-section p {
        font-size: 1rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .coffee-cup {
        width: 100px !important;
        height: 120px !important;
    }

    .coffee-cup-body {
        width: 70px !important;
        height: 65px !important;
        left: 10px !important;
    }

    .coffee-liquid {
        height: 40px !important;
    }

    .coffee-cup-handle {
        width: 22px !important;
        height: 32px !important;
        bottom: 18px !important;
    }

    .steam {
        height: 35px !important;
    }
}
