:root {
    /* High Luminosity Palette */
    --verde-botella: #0B3D2E;
    --verde-oscuro: #0B3D2E;
    --beige-fondo: #FAF7F2;     /* Beige Crudo - Main Light */
    --beige-crema: #F6EFE9;     /* Secondary Light */
    --beige-secciones: #EBDAC6;  /* Section Contrast */
    --madera: #937C66;
    --topo: #A99886;
    --dorado: #D1B38F;
    --blanco: #FFFFFF;
    --acento-vibrante: #D22B2B;
    --acento-hover: #B22222;
    --marron-contraste-2: #2A2017;
    
    /* Legacy/Mapped Variables for consistency */
    --primary-cocoa: var(--verde-botella);
    --secondary-gold: var(--dorado);
    --accent-cream: var(--beige-fondo);
    --dark-charcoal: #1A1A1A;
    --beige-crudo: var(--beige-fondo);

    --serif: 'Playfair Display', serif;
    --sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset, 96px);
}

body {
    background: var(--beige-crema);
    color: var(--primary-cocoa);
    font-family: var(--sans);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: default;
}

body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

/* Custom Churro Cursor Focus */
.cursor-focus {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(209, 179, 143, 0.15) 0%, rgba(209, 179, 143, 0) 70%);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0;
    will-change: transform;
}

body:hover .cursor-focus {
    opacity: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* === HEADER === */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary-cocoa);
    padding: calc(0.5rem + env(safe-area-inset-top, 0px)) 0 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(41, 32, 23, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    min-width: 0;
}

.logo img {
    height: 65px;
    width: auto;
    /* Removed filter to use original image colors */
}

.logo-text {
    min-width: 0;
}

.logo-text .brand {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dorado);
    letter-spacing: 1px;
    display: flex;
    gap: 0.45rem;
    line-height: 1;
}

.brand-line {
    display: inline-block;
}

.logo-text .tagline {
    font-family: var(--sans);
    font-size: 0.75rem;
    color: var(--dorado);
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
    opacity: 0.9;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 28, 21, 0.45);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--dorado);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        align-items: center;
        padding: 0.7rem 0.45rem;
    }

    .nav-container {
        padding: 0.55rem 1.25rem;
        gap: 0.75rem;
    }

    .logo {
        flex: 1;
        gap: 0.8rem;
    }

    .logo img {
        height: 52px;
    }

    .logo-text .brand {
        font-size: clamp(1.15rem, 2vw + 0.85rem, 1.5rem);
        letter-spacing: 0.03em;
        flex-direction: column;
        gap: 0.02rem;
    }

    .logo-text .tagline {
        font-size: 0.58rem;
        letter-spacing: 0.22em;
        margin-top: 0.2rem;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(86vw, 360px);
        height: 100vh;
        height: 100dvh;
        background: var(--marron-contraste-2);
        padding: calc(7rem + env(safe-area-inset-top, 0px)) 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px));
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }

    nav a {
        font-size: 1.2rem;
    }

    .cta-header {
        width: 100%;
        min-height: 48px;
    }

    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0.45rem 1rem;
    }

    .logo img {
        height: 46px;
    }

    .logo-text .brand {
        font-size: clamp(1rem, 3.8vw, 1.2rem);
    }

    .logo-text .tagline {
        letter-spacing: 0.16em;
    }
}

@media (max-width: 430px) {
    .logo {
        gap: 0.65rem;
    }

    .logo img {
        height: 42px;
    }

    .logo-text .brand {
        font-size: 0.98rem;
        line-height: 0.95;
    }

    .logo-text .tagline {
        display: none;
    }

    nav {
        width: 100%;
    }
}

nav a {
    color: var(--blanco);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

nav a:not(.cta-header)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cobre);
    transition: width 0.3s;
}

nav a:not(.cta-header):hover::after {
    width: 100%;
}

.cta-header {
    background: transparent;
    color: var(--blanco) !important;
    padding: 0.7rem 2.2rem;
    border-radius: 50px;
    border: 1.5px solid var(--dorado);
    font-weight: 700;
    font-size: 0.9rem !important;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-header:hover {
    background: var(--dorado);
    color: var(--marron-contraste-2) !important;
    transform: none;
    box-shadow: none;
}

/* === HERO PARALLAX === */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(8rem + env(safe-area-inset-top, 0px)) 0 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../imagenes/05_Churros.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 46, 0.65);
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: var(--blanco);
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards 0.5s;
}

.hero-copy {
    max-width: 48rem;
    margin: 0 auto 2.2rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--blanco);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    display: block;
    color: var(--dorado);
    text-transform: none;
}

.hero-pretitle {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--dorado);
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

@media (max-width: 480px) {
    .hero {
        padding: calc(7.2rem + env(safe-area-inset-top, 0px)) 0 3rem;
    }

    .hero-content {
        padding: 1.15rem;
    }

    .hero-content h1 {
        font-size: clamp(2.35rem, 12vw, 3.2rem);
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-copy {
        font-size: 0.98rem;
        margin-bottom: 1.6rem;
    }

    .hero-pretitle {
        font-size: 0.75rem;
        letter-spacing: 0.18em;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
}

.btn-hero {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-primary {
    background: var(--verde-botella);
    color: var(--blanco);
    border: 2px solid var(--verde-botella);
    box-shadow: 0 10px 30px rgba(11, 61, 46, 0.3);
}

.btn-hero-primary:hover {
    background: var(--dorado);
    border-color: var(--dorado);
    color: var(--verde-botella);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(209, 179, 143, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--blanco);
    border: 2px solid var(--blanco);
}

.btn-hero-secondary:hover {
    background: var(--blanco);
    color: var(--verde-botella);
    border-color: var(--blanco);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* === MARQUEE TICKER === */
.marquee-ticker {
    background: var(--verde-botella);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(209, 179, 143, 0.2);
    border-bottom: 1px solid rgba(209, 179, 143, 0.2);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
    width: max-content;
}

.ticker-content span {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dorado);
    margin-right: 0;
    padding: 0 2rem;
    letter-spacing: 1px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* === RITUAL SECTION === */
.ritual {
    padding: 7rem 0;
    background: var(--beige-crudo);
}

.ritual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.ritual-card {
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    background: var(--beige-crema);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.ritual-card.highlighted {
    z-index: 10;
}

.ritual-img {
    height: 300px;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ritual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ritual-card h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-cocoa);
}

/* === PRODUCTS CORE SECTION === */
.productos-core {
    padding: 7rem 0;
    background: var(--blanco);
}

.productos-marquee {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%;
    cursor: grab;
    user-select: none;
}

.productos-marquee:active {
    cursor: grabbing;
}

.productos-track {
    display: flex;
    gap: 3rem;
    animation: products-scroll 30s linear infinite;
    width: max-content;
}

.productos-track:hover {
    animation-play-state: paused;
}

.producto-card {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 350px;
    background: var(--beige-crudo);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.producto-card:hover {
    transform: translateY(-10px);
}

.producto-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.producto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producto-content {
    padding: 2rem;
}

.producto-name {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-cocoa);
}

/* === CHURRERIA INFO SECTION === */
.churreria-info {
    background: var(--verde-botella);
    padding: 7rem 0;
    color: var(--beige-fondo);
    overflow: hidden;
}

.info-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(2rem, 5vw, 8rem);
}

.info-text {
    flex: 1.2;
    max-width: 650px;
}

.info-text h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--dorado);
    line-height: 1.1;
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(209, 179, 143, 0.15);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 24px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(209, 179, 143, 0.3);
    transform: translateX(10px);
}

.box-label {
    color: var(--dorado);
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    display: block;
}

.info-box p {
    font-family: var(--sans);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    margin-bottom: 0.6rem;
    opacity: 0.9;
    line-height: 1.5;
}

.info-box strong {
    color: var(--blanco);
    font-weight: 600;
}

.phone-link {
    font-weight: 800;
    font-size: clamp(1.4rem, 2vw, 1.8rem) !important;
    color: var(--dorado);
    margin-top: 1rem;
    display: block;
}

.btn-whatsapp-large {
    display: inline-block;
    background: var(--dorado);
    color: var(--primary-cocoa);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: var(--blanco);
}

.info-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.info-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--dorado);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
    transition: transform 0.5s ease;
}

.info-image:hover img {
    transform: scale(1.02);
}

/* RESPONSIVE INFO SECTION */
@media (max-width: 1024px) {
    .info-flex {
        gap: 4rem;
    }
}

@media (max-width: 900px) {
    .info-flex {
        flex-direction: column;
        text-align: left;
        gap: 3rem;
    }

    .info-text {
        max-width: 100%;
    }

    .info-box:hover {
        transform: translateY(-5px);
    }

    .info-image {
        max-width: 500px;
        width: 100%;
        order: 0;
        margin: 0 auto;
    }

    .section-intro-left {
        margin-right: auto;
    }

    .btn-whatsapp-large {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

/* === NOVEDADES SECTION (BENTO GRID) === */
.novedades {
    padding: 7rem 0;
    background: var(--beige-secciones);
    position: relative;
}

.faq-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--beige-crudo) 0%, #f2e8dc 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(209, 179, 143, 0.45);
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 20px 40px rgba(11, 61, 46, 0.06);
}

.faq-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--verde-botella);
    margin-bottom: 0.9rem;
}

.faq-card p {
    color: rgba(11, 61, 46, 0.82);
}

.novedades .section-header {
    position: relative;
    z-index: 2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
    gap: 2rem;
    padding: 2rem 0;
}

.bento-item {
    background: var(--blanco);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--primary-cocoa);
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--acento-vibrante);
}

.bento-item .producto-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.bento-item .producto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-item:hover .producto-image img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(11, 61, 46, 0.95), transparent);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item .producto-name {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dorado);
}

.bento-item .producto-description {
    font-size: 0.95rem;
    color: var(--blanco);
    opacity: 0.9;
    margin-bottom: 0;
}

/* TAMAÑOS BENTO */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-large .producto-name {
    font-size: 2.5rem;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* BENTO RESPONSIVE */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
    
    .bento-large, .bento-medium {
        grid-column: span 2;
        height: 400px;
    }
    
    .bento-small {
        grid-column: span 1;
        height: 300px;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large, .bento-medium, .bento-small {
        grid-column: span 1;
        height: 320px;
    }

    .productos-track.core {
        width: 100%;
        max-width: 100%;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.75rem;
        scroll-snap-type: x mandatory;
        animation: none;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .productos-track.core::-webkit-scrollbar {
        display: none;
    }

    .productos-track.core .producto-card:nth-child(n+4) {
        display: none;
    }

    .producto-card {
        width: 82vw;
        max-width: 280px;
        scroll-snap-align: start;
    }

    .marquee-ticker {
        padding: 1rem 0;
    }

    .ticker-content span {
        font-size: 1.1rem;
        padding: 0 1.1rem;
    }

    .contacto-container {
        gap: 3rem;
    }

    .mapa iframe {
        height: 260px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-card {
        padding: 1.5rem;
    }

    .section-intro {
        font-size: 1rem;
    }
}

/* === GLOBAL SECTIONS === */
.section-header {
    text-align: center;
    margin-bottom: clamp(4rem, 6vw, 6rem);
}

.section-intro {
    max-width: 48rem;
    margin: 1.35rem auto 0;
    font-size: 1.05rem;
    color: rgba(11, 61, 46, 0.82);
}

.section-intro-left {
    margin-left: 0;
    margin-right: 0;
    color: rgba(250, 247, 242, 0.88);
}

.section-label {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--dorado);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--verde-botella);
    line-height: 1.1;
}

/* === CONTACTO === */
.contacto {
    padding: 7rem 0;
    background: var(--beige-crudo);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--cobre);
    margin: 2rem auto 0;
}

.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 8vw, 10rem);
    align-items: start;
}

.contacto-info h3 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 3vw, 2.8rem);
    color: var(--primary-cocoa);
    margin-bottom: 3.5rem;
    position: relative;
}

.contacto-info h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--dorado);
}

.info-item {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-left: 0;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--dorado);
    color: var(--primary-cocoa);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-text-wrapper {
    flex: 1;
}

.info-label {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--dorado);
    margin-bottom: 1rem;
    display: block;
}

.info-value {
    font-family: var(--sans);
    font-size: 1.2rem;
    color: var(--primary-cocoa);
    line-height: 1.7;
    font-weight: 400;
}

.info-value strong {
    color: var(--primary-cocoa);
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 5rem;
}

.social-link {
    width: 60px;
    height: 60px;
    background: var(--blanco);
    color: var(--primary-cocoa);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background: var(--dorado);
    color: var(--blanco);
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 20px 40px rgba(209, 179, 143, 0.4);
}

.mapa {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    border: 15px solid var(--blanco);
    transition: all 0.5s ease;
    height: auto;
    min-height: 0;
}

.mapa:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
}

.mapa iframe {
    display: block;
    width: 100%;
    height: 320px;
}

/* RESPONSIVE CONTACTO */
@media (max-width: 1100px) {
    .contacto-container {
        gap: 4rem;
    }
}

@media (max-width: 900px) {
    .contacto-container {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .contacto-info {
        text-align: center;
    }

    .contacto-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .info-item:hover {
        transform: translateY(-5px);
    }

    .mapa iframe {
        height: 280px;
    }
}

/* === FOOTER === */
footer {
    background: var(--verde-botella);
    color: var(--beige-fondo);
    padding: 6rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
}

.footer-brand h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--dorado);
    margin-bottom: 2rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    max-width: 400px;
    opacity: 0.8;
}

.footer-section h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dorado);
}

.footer-section a {
    display: block;
    color: var(--beige-crema);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--dorado);
}

/* Responsive */
@media (max-width: 1024px) {

    .ritual-grid,
    .productos-grid,
    .novedades-grid,
    .contacto-container,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.productos-track.core {
    animation: products-scroll-core 30s linear infinite;
}

.productos-track.novedades {
    animation: products-scroll-novedades 40s linear infinite;
}

@keyframes products-scroll-core {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 3 - 3rem * 3));
    }
}

@keyframes products-scroll-novedades {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 4 - 3rem * 4));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === FLOATING WHATSAPP BUTTON === */
.floating-whatsapp {
    position: fixed;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    right: calc(24px + env(safe-area-inset-right, 0px));
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: var(--acento-vibrante);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 61, 46, 0.96);
    color: var(--beige-fondo);
    padding: 1.2rem 1.6rem;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    max-width: 520px;
    width: calc(100% - 2rem);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-cookie {
    border: 1px solid var(--dorado);
    background: transparent;
    color: var(--beige-fondo);
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.primary {
    background: var(--dorado);
    color: var(--primary-cocoa);
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
}

@media (hover: none), (pointer: coarse) {
    .cursor-focus {
        display: none;
    }

    body:hover .cursor-focus {
        opacity: 0;
    }

    .producto-card:hover,
    .bento-item:hover,
    .social-link:hover,
    .btn-whatsapp-large:hover,
    .floating-whatsapp:hover,
    .mapa:hover,
    .info-box:hover {
        transform: none;
        box-shadow: inherit;
    }

    .bento-item:hover .producto-image img,
    .info-image:hover img {
        transform: none;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .hero-bg {
        transform: none !important;
    }
    .productos-track,
    .ticker-content {
        animation: none !important;
    }
}
