/* ═══════════════════════════════════════════════════════════════
   EN TODAS PUERTAS — Premium Landing v2.0
   ═══════════════════════════════════════════════════════════════ */

:root {
    --font-body: 'Source Sans 3', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Palette "El Mecanismo" */
    --iron:        #2B2B28;
    --brass:       #8C7853;
    --brass-light: #B39B6E;
    --steel:       #C4C0B5;
    --rust:        #6B1F1F;
    --bone:        #F0F0F0;
    --gold-accent: #F2C230;
    --gold-gradient: linear-gradient(135deg, #FFD84A 0%, #E7AF16 100%);
    --hero-photo-yellow: #F2C230;
    --hero-photo-charcoal: #25282B;

    /* Semantic mappings */
    --color-cobalt: var(--iron);
    --color-cobalt-dark: #1F1F1D;
    --color-cobalt-light: rgba(43, 43, 40, 0.1);
    --color-emerald: var(--gold-accent);
    --color-emerald-dark: #B8860B;
    --color-dark: var(--iron);
    --color-surface: #E6E6E6; 
    --color-white: var(--bone);
    --color-text: #181816;
    --color-text-muted: #302E2A;
    --color-border: var(--steel);

    --gradient-accent: var(--gold-gradient);
    --gradient-whatsapp: linear-gradient(135deg, #25D366, #128C7E);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-white); line-height: 1.6; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--color-dark); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════ TYPOGRAPHY ═══════════════════ */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.section-title--light { color: var(--color-white); }
.section-subtitle { max-width: 600px; margin: 0 auto 1.5rem; color: var(--color-text-muted); font-size: 1.1rem; text-align: center; }
.section-subtitle--light { color: rgba(255,255,255,0.7); }

.text-accent,
.text-accent-light { color: inherit; }
.text-accent-hero { color: var(--color-white); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: #141412;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    box-shadow: 0 8px 25px rgba(229, 195, 101, 0.35);
    border: 1px solid rgba(0,0,0,0.15);
}
.section-label::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #141412;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
}
.section-label--dark {
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.1);
}

/* ═══════════════════ UTILITIES ═══════════════════ */
.bg-surface { background-color: var(--color-surface); }
.bg-dark { background-color: var(--color-dark); }
.mobile-scroll-hint { display: none; }

/* ═══════════════════ ANIMATIONS (MECHANICAL CERRAJERÍA) ═══════════════════ */
@media (min-width: 768px) {
    .animate-on-scroll,
    .animate-slide-left,
    .animate-slide-right,
    .animate-3d-left,
    .animate-3d-right,
    .animate-scale,
    .animate-slide-up {
        opacity: 0;
        will-change: transform, opacity;
    }

    /* 1. Deadbolt Snap: Movimiento seco, muy rápido y sin rebote (como un pestillo cerrando) */
    .animate-on-scroll.is-visible,
    .animate-slide-up.is-visible {
        animation: deadbolt-snap 0.5s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
    }

    /* 2. Key Turn: Elementos que pivotan rígidamente hacia su lugar (como girar una llave) */
    .animate-slide-left.is-visible {
        transform-origin: left center;
        animation: key-turn 0.6s cubic-bezier(0.3, 0, 0, 1) forwards;
    }
    .animate-slide-right.is-visible {
        transform-origin: right center;
        animation: key-turn-reverse 0.6s cubic-bezier(0.3, 0, 0, 1) forwards;
    }

    /* 3. 3D Rotation (Opción elegida) */
    .animate-3d-left.is-visible {
        transform-origin: left center;
        animation: rotacion-3d-izq 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    .animate-3d-right.is-visible {
        transform-origin: right center;
        animation: rotacion-3d-der 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }

    /* 4. Tumbler Drop: Cae en pasos rígidos, simulando los pines de una cerradura */
    .animate-scale.is-visible {
        animation: tumbler-drop 0.4s steps(4, end) forwards;
    }

    /* Tiempos de retardo (Staggers) escalonados como pines de una llave */
    .stagger-1 { animation-delay: 0.1s; }
    .stagger-2 { animation-delay: 0.2s; }
    .stagger-3 { animation-delay: 0.3s; }
    .stagger-4 { animation-delay: 0.4s; }
    .stagger-5 { animation-delay: 0.5s; }
    .stagger-6 { animation-delay: 0.6s; }

    @keyframes deadbolt-snap {
        0% { opacity: 0; transform: translateY(30px) scaleY(1.05); }
        70% { opacity: 1; }
        100% { opacity: 1; transform: translateY(0) scaleY(1); }
    }

    @keyframes key-turn {
        0% { opacity: 0; transform: perspective(800px) rotateY(-20deg) translateX(-30px); }
        100% { opacity: 1; transform: perspective(800px) rotateY(0) translateX(0); }
    }

    @keyframes key-turn-reverse {
        0% { opacity: 0; transform: perspective(800px) rotateY(20deg) translateX(30px); }
        100% { opacity: 1; transform: perspective(800px) rotateY(0) translateX(0); }
    }

    @keyframes rotacion-3d-izq {
        0% { opacity: 0; transform: perspective(1000px) rotateY(-30deg) translateZ(-100px) translateX(-50px); }
        100% { opacity: 1; transform: perspective(1000px) rotateY(0) translateZ(0) translateX(0); }
    }

    @keyframes rotacion-3d-der {
        0% { opacity: 0; transform: perspective(1000px) rotateY(30deg) translateZ(-100px) translateX(50px); }
        100% { opacity: 1; transform: perspective(1000px) rotateY(0) translateZ(0) translateX(0); }
    }

    @keyframes tumbler-drop {
        0% { opacity: 0; transform: translateY(-30px); }
        50% { opacity: 1; transform: translateY(0); }
        75% { transform: translateY(-8px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    .animate-tech-type {
        opacity: 0;
    }
    .animate-tech-type.is-visible {
        animation: tech-typewriter 0.8s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
    }

    @keyframes tech-typewriter {
        0% { opacity: 0; filter: blur(10px); transform: translateX(-20px); letter-spacing: -0.1em; }
        40% { opacity: 1; filter: blur(4px); transform: translateX(5px); }
        100% { opacity: 1; filter: blur(0); transform: translateX(0); letter-spacing: normal; }
    }
}

/* ═══════════════════ DIAGONAL DIVIDERS ═══════════════════ */
.divider {
    height: 60px;
    background: var(--color-surface);
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
    position: relative;
    z-index: 2;
}
.divider--dark {
    background: var(--color-dark);
}
.divider--invert {
    transform: scaleX(-1);
}

/* ═══════════════════ HEADER ═══════════════════ */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
    background: transparent;
}
.header--scrolled {
    background: var(--bone);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--steel);
}
.header__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800;
    color: var(--color-white);
    transition: color var(--transition-fast);
}
.header--scrolled .header__logo { color: var(--color-cobalt); }
.header--scrolled .header__logo-icon circle,
.header--scrolled .header__logo-icon line { stroke: var(--color-cobalt); }
.header__logo-icon circle, .header__logo-icon line { stroke: var(--color-white); transition: stroke var(--transition-fast); }
.header__logo-text { font-family: var(--font-heading); }

.header__nav-list {
    display: flex; gap: 2rem; align-items: center;
}
.header__nav-link {
    color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem;
    position: relative; transition: color var(--transition-fast);
}
.header--scrolled .header__nav-link { color: var(--color-text); }
.header__nav-link:hover { color: var(--color-emerald); }
.header__nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--gradient-accent); transition: width var(--transition-normal);
}
.header__nav-link:hover::after { width: 100%; }

.header__mobile-toggle {
    display: none; background: rgba(0, 26, 51, 0.4); border: 1px solid rgba(255, 255, 255, 0.2); 
    cursor: pointer; flex-direction: column; gap: 5px; padding: 10px;
    border-radius: 8px; backdrop-filter: blur(4px); transition: var(--transition-fast);
}
.header--scrolled .header__mobile-toggle {
    background: rgba(0, 64, 128, 0.05); border-color: rgba(0, 64, 128, 0.1);
}
.hamburger-line {
    display: block; width: 24px; height: 2px; background: var(--color-white);
    transition: var(--transition-fast);
}
.header--scrolled .hamburger-line { background: var(--color-cobalt); }
.header__mobile-toggle.is-active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__mobile-toggle.is-active .hamburger-line:nth-child(2) { opacity: 0; }
.header__mobile-toggle.is-active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--iron); border-top: 1px solid var(--steel);
    box-shadow: var(--shadow-xl); padding: 1.5rem;
    z-index: 999; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity var(--transition-normal);
}
.mobile-menu.is-open { display: flex; opacity: 1; pointer-events: auto; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 1.25rem; text-align: center; }
.mobile-menu__link {
    color: var(--color-white); font-size: 1.2rem; font-weight: 700;
    font-family: var(--font-heading); transition: color var(--transition-fast);
}
.mobile-menu__link:hover { color: var(--color-emerald); }


/* ═══════════════════ HERO ═══════════════════ */
.hero-premium {
    min-height: 100svh; position: relative; display: flex; flex-direction: column; justify-content: center;
    overflow: hidden; padding: 7rem 0 4rem;
    background: var(--hero-photo-yellow);
}
@media (max-width: 767px) {
    .hero-premium {
        min-height: 100svh; height: auto; padding: 7rem 0 5rem; justify-content: flex-start; gap: 3rem;
    }
}
.hero-premium__bg {
    position: absolute; inset: 0; background-size: cover; background-position: center 42%;
    opacity: 0.52; filter: saturate(0.72) contrast(108%);
    background-image: url('img-y-videos/foto-negocio1-mobile.jpg');
}
@media (min-width: 768px) {
    .hero-premium__bg {
        background-image: url('img-y-videos/foto-negocio1-opt.jpg');
    }
}
.hero-premium__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 20, 22, 0.85) 0%, rgba(18, 20, 22, 0.6) 40%, rgba(18, 20, 22, 0.88) 100%),
        linear-gradient(90deg, rgba(18, 20, 22, 0.92) 0%, rgba(18, 20, 22, 0.5) 60%, rgba(18, 20, 22, 0.75) 100%);
}

/* Technical Grid Lines (decorative) */
.hero-tech-grid {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.tech-gridline {
    position: absolute; background: rgba(196, 192, 181, 0.06);
}
.tech-gridline--v1 { left: 25%; top: 0; bottom: 0; width: 1px; }
.tech-gridline--v2 { left: 75%; top: 0; bottom: 0; width: 1px; }
.tech-gridline--h1 { top: 35%; left: 0; right: 0; height: 1px; }
.tech-gridline--h2 { top: 70%; left: 0; right: 0; height: 1px; }

/* Technical corner annotations */
.hero-tech-annotation {
    position: absolute; z-index: 3; font-family: var(--font-mono);
    font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(196, 192, 181, 0.2);
    pointer-events: none; display: none;
}
@media (min-width: 1024px) {
    .hero-tech-annotation { display: block; }
    .hero-tech-annotation--tl { top: 6rem; left: 2rem; }
    .hero-tech-annotation--br { bottom: 2rem; right: 2rem; }
}

/* Blueprint Layout */
.hero-blueprint {
    position: relative; z-index: 10;
    max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
    width: 100%;
}
.hero-blueprint__main {
    display: grid; grid-template-columns: 1fr; gap: 2rem;
    margin-bottom: 3rem;
}
@media (min-width: 1024px) {
    .hero-blueprint__main {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem; align-items: center;
        margin-bottom: 4rem;
    }
}

/* Headline Content */
.hero-blueprint__content {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem;
}
.blueprint-eyebrow {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-mono); color: var(--brass);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase;
}
.blueprint-eyebrow__line {
    display: inline-block; width: 32px; height: 1px; background: var(--brass);
}
.blueprint-headline {
    margin: 0; font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 5.5rem); font-weight: 800; line-height: 0.95;
    color: var(--color-white); text-transform: uppercase; letter-spacing: -0.02em;
}
@media (max-width: 767px) {
    .blueprint-headline {
        font-size: 2.2rem;
    }
}
.blueprint-subline {
    margin: 0; font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.5rem); font-weight: 600;
    color: var(--brass); text-transform: uppercase; letter-spacing: 0.06em;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* Visual: Blueprint Diagram + Keychain */
.hero-blueprint__visual {
    position: relative;
    display: flex; justify-content: center; align-items: center;
}
.blueprint-lock-svg {
    width: 100%; max-width: 320px; height: auto;
    opacity: 0.7;
}
.blueprint-keychain {
    position: relative;
    width: 220px; height: auto;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.6));
    transform: rotate(-15deg);
    z-index: 5;
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .hero-blueprint__visual {
        display: none;
    }
}
@media (min-width: 1024px) {
    .blueprint-keychain {
        width: 350px;
        margin-top: 0;
    }
}

/* 3 Technical Panels */
.hero-panels {
    display: grid; grid-template-columns: 1fr; gap: 1rem;
    border-top: 1px solid rgba(196, 192, 181, 0.12);
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}
@media (min-width: 768px) {
    .hero-panels {
        grid-template-columns: repeat(3, 1fr); gap: 0;
    }
}

/* Single Panel */
.hero-panel {
    position: relative; padding: 0;
    border-right: 1px solid rgba(196, 192, 181, 0.08);
    transition: background-color 0.4s ease;
    cursor: pointer; overflow: hidden;
}
.hero-panel:last-child {
    border-right: none;
}
@media (min-width: 768px) {
    .hero-panel {
        border-bottom: none;
        border-right: 1px solid rgba(196, 192, 181, 0.08);
    }
    .hero-panel:last-child { border-right: none; }
}

/* Left accent bar */
.hero-panel__accent {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px; background: rgba(196, 192, 181, 0.1);
    transition: background 0.4s ease;
}
.hero-panel--active .hero-panel__accent,
.hero-panel:hover .hero-panel__accent {
    background: var(--brass);
}

/* Panel inner */
.hero-panel__inner {
    padding: 1rem 0.5rem 2rem;
}
@media (min-width: 768px) {
    .hero-panel__inner { padding: 2rem 1.5rem 2rem 1.75rem; }
}

/* Panel header */
.hero-panel__header {
    display: flex; flex-direction: column; gap: 0.25rem;
    margin-bottom: 0.5rem;
}
.hero-panel__num {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
    line-height: 1; color: rgba(196, 192, 181, 0.08);
    transition: color 0.4s ease;
}
@media (min-width: 768px) {
    .hero-panel__num { font-size: 2.5rem; }
}
.hero-panel--active .hero-panel__num { color: rgba(212, 175, 55, 0.35); }
.hero-panel:hover .hero-panel__num { color: rgba(212, 175, 55, 0.25); }

.hero-panel__meta {
    font-family: var(--font-mono); font-size: 0.5rem; font-weight: 600;
    letter-spacing: 0.1em; color: rgba(196, 192, 181, 0.35);
    text-transform: uppercase; margin-top: 0.25rem;
    transition: color 0.4s ease;
    display: none; /* Hide on mobile to save space */
}
@media (min-width: 768px) {
    .hero-panel__meta { display: block; font-size: 0.6rem; }
}
.hero-panel--active .hero-panel__meta { color: rgba(212, 175, 55, 0.6); }
.hero-panel:hover .hero-panel__meta { color: rgba(196, 192, 181, 0.55); }

/* Panel title */
.hero-panel__title {
    font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
    color: var(--color-white); margin: 0; text-transform: uppercase;
    letter-spacing: 0.02em; line-height: 1.1;
    transition: color 0.4s ease;
}
@media (min-width: 768px) {
    .hero-panel__title { font-size: 1.5rem; line-height: 1.05; }
}
.hero-panel--active .hero-panel__title { color: var(--color-white); }

/* Panel description */
.hero-panel__desc {
    font-family: var(--font-body); font-size: 0.85rem; color: rgba(255, 255, 255, 0.7);
    margin: 0; line-height: 1.3;
    max-height: 80px; opacity: 1; margin-top: 0.5rem; overflow: hidden;
}
@media (min-width: 768px) {
    .hero-panel__desc {
        font-size: 0.95rem; line-height: 1.5;
        max-height: 0; opacity: 0; margin-top: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
    }
}
.hero-panel__desc strong {
    color: var(--color-white);
    font-weight: 700;
}
@media (min-width: 768px) {
    .hero-panel--active .hero-panel__desc,
    .hero-panel:hover .hero-panel__desc { 
        max-height: 80px; opacity: 1; margin-top: 0.75rem; 
    }
}

/* Panel footer */
.hero-panel__footer {
    display: flex; flex-direction: column; gap: 0.75rem;
    max-height: 120px; opacity: 1; margin-top: 1rem; overflow: hidden;
}
@media (min-width: 768px) {
    .hero-panel__footer {
        max-height: 0; opacity: 0; margin-top: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
    }
    .hero-panel--active .hero-panel__footer,
    .hero-panel:hover .hero-panel__footer {
        max-height: 120px; opacity: 1; margin-top: 1rem;
    }
}
.hero-panel__tag {
    font-family: var(--font-mono); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.08em; color: rgba(196, 192, 181, 0.4);
    text-transform: uppercase;
}

/* CTA inside panel */
.hero-panel__cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0.5rem;
    background: var(--gradient-whatsapp); color: var(--color-white);
    font-family: var(--font-heading); font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    border: none; border-radius: 0; text-decoration: none;
    transition: all 0.3s ease; cursor: pointer;
    width: 100%; justify-content: center; text-align: center;
}
@media (min-width: 768px) {
    .hero-panel__cta {
        padding: 0.7rem 1.4rem; font-size: 0.8rem; letter-spacing: 0.08em;
        width: fit-content; justify-content: flex-start;
    }
}
.hero-panel__cta:hover {
    transform: translateX(4px); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ═══════════════════ STATE BANNER ═══════════════════ */
.state-banner {
    background-color: var(--color-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3rem 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.state-banner__bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, rgba(18, 20, 22, 0) 70%);
    pointer-events: none;
}
.state-banner__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}
.state-banner__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.state-banner__eyebrow {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; color: var(--brass);
    text-transform: uppercase;
}
.state-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 0.02em;
}
.state-banner__entities {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}
@media (min-width: 768px) {
    .state-banner__entities {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}
.state-entity {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 320px;
}
.state-entity:hover {
    transform: translateY(-4px);
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}
.state-entity__icon {
    color: var(--brass);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
}
.state-entity__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}
.state-entity__name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bone);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.state-entity__divider {
    display: none;
}
@media (min-width: 768px) {
    .state-entity__divider {
        display: block;
        width: 1px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
    }
    .state-entity {
        background: transparent;
        border: none;
        padding: 0;
        width: auto;
    }
    .state-entity:hover {
        transform: translateY(0);
        background: transparent;
        border-color: transparent;
    }
    .state-entity:hover .state-entity__icon {
        transform: scale(1.1);
        background: rgba(212, 175, 55, 0.15);
        transition: transform 0.3s ease, background 0.3s ease;
    }
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 2rem; border-radius: 9999px; font-weight: 700; font-size: 1rem;
    transition: all var(--transition-fast); cursor: pointer; border: none;
    font-family: var(--font-body);
}
.btn--whatsapp {
    background: var(--gradient-whatsapp); color: var(--color-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }
.btn--gold {
    background: var(--gold-accent); color: var(--color-cobalt-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4); background: var(--brass-light); }

/* ═══════════════════ STATS BAND ═══════════════════ */
.stats-band {
    background: var(--iron); padding: 5rem 0; position: relative; z-index: 5;
    border-top: 1px solid var(--steel);
}
.stats-band__container {
    max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center;
}
.stat-item__number {
    font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 800;
    color: var(--brass); font-family: var(--font-heading);
    display: block;
}
.stat-item__label {
    font-size: 0.95rem; font-weight: 600; color: var(--bone);
    text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-top: 0.25rem;
}
.stats-band__brands {
    width: 100%; margin: 3rem auto 0; padding: 2.5rem 0 0;
    border-top: 1px solid rgba(196, 192, 181, 0.2); text-align: center;
}
.brands-title {
    font-size: 1.05rem; font-weight: 800; letter-spacing: 0.25em;
    color: var(--gold-accent); text-transform: uppercase; margin-bottom: 1.75rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

/* ═══════════════════ MARQUEE ═══════════════════ */
.brands-strip {
    padding: 1rem 0;
}
.static-brands {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; align-items: center;
}
.brand-item {
    font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800;
    color: var(--brass); opacity: 0.95;
    transition: all var(--transition-fast);
    letter-spacing: 0.06em; cursor: default;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.brand-item:hover { 
    opacity: 1; color: var(--gold-accent); transform: translateY(-2px);
}

/* ═══════════════════ TRUST STRIP ═══════════════════ */
/* ═══════════════════ TRUST STRIP (Golden Timeline) ═══════════════════ */
/* ═══════════════════ POR QUÉ ELEGIRNOS (EDITORIAL) ═══════════════════ */
.trust-strip {
    padding: 4.5rem 0;
    background: var(--color-surface);
}
.trust-strip__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Title */
.editorial-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--iron);
    text-transform: uppercase;
    text-align: center;
    max-width: 800px;
    margin: 0 0 2.5rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    /* Metallic embossed look */
    text-shadow: 
        1px 1px 0px rgba(255, 255, 255, 1),
        -1px -1px 0px rgba(0, 0, 0, 0.2),
        2px 2px 10px rgba(0,0,0,0.1);
}

/* 4 Technical Panels */
.trust-panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}
@media (min-width: 768px) {
    .trust-panels {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .trust-panels {
        grid-template-columns: repeat(4, 1fr);
        perspective: 1200px;
    }
}

/* Single Panel Base */
.trust-panel {
    position: relative;
    padding: 3rem 1.5rem 2rem;
    background: var(--iron); /* Fallback */
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    display: flex;
    flex-direction: column;
    /* Basic depth for all screens */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), inset 0 2px 5px rgba(255,255,255,0.2), inset 0 -2px 5px rgba(0,0,0,0.4);
    border: 1px solid rgba(0,0,0,0.5);
}

@media (min-width: 1024px) {
    .trust-panel {
        transform: rotateX(15deg) rotateY(-5deg) translateZ(0);
        transform-style: preserve-3d;
    }
    .trust-panel:hover {
        transform: rotateX(5deg) rotateY(0deg) translateZ(20px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 2px 10px rgba(255,255,255,0.4), inset 0 -2px 10px rgba(0,0,0,0.6);
    }
}

/* Metallic Gradients */
.trust-panel--gold {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 50%, #d4af37 100%);
}
.trust-panel--steel {
    background: linear-gradient(135deg, #90A4AE 0%, #607D8B 50%, #90A4AE 100%);
}
.trust-panel--bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #8b5a2b 50%, #cd7f32 100%);
}
.trust-panel--silver {
    background: linear-gradient(135deg, #e0e0e0 0%, #9e9e9e 50%, #e0e0e0 100%);
}

/* Panel Header: Ribbon & Icon */
.trust-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.trust-panel__num {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    background: #F4F0EB;
    position: absolute;
    top: -5px;
    left: -5px;
    padding: 8px 20px 8px 12px;
    border-radius: 0 0 12px 0;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: 2;
}
.trust-panel__num::after {
    /* Fold effect */
    content: '';
    position: absolute;
    top: 0; left: -5px;
    width: 5px; height: 5px;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.trust-panel__icon {
    width: 48px;
    height: 48px;
    color: #111; /* Dark icon on metal background */
    opacity: 0.9;
    margin: 0 auto;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}
.trust-panel__icon svg {
    stroke-width: 1.5;
    width: 100%;
    height: 100%;
}
.trust-panel:hover .trust-panel__icon {
    transform: translateZ(30px) scale(1.1);
}

/* Panel Content */
.trust-panel__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.3);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.trust-panel__desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #222;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Decor Rivets */
.trust-panel__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.trust-panel__rivet {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #777 0%, #222 100%);
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.5), 1px 1px 3px rgba(0,0,0,0.8);
}
.trust-panel__rivet--tl { top: 10px; left: 10px; }
.trust-panel__rivet--tr { top: 10px; right: 10px; }
.trust-panel__rivet--bl { bottom: 10px; left: 10px; }
.trust-panel__rivet--br { bottom: 10px; right: 10px; }

@media (max-width: 767px) {
    .trust-panels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        width: 100%;
    }
    .trust-panel {
        min-width: 0;
        min-height: 205px;
        padding: 2.25rem 0.75rem 0.9rem;
        border-radius: 8px;
    }
    .trust-panel__header {
        margin-bottom: 0.65rem;
    }
    .trust-panel__num {
        font-size: 0.9rem;
        padding: 5px 14px 5px 8px;
    }
    .trust-panel__icon {
        width: 32px;
        height: 32px;
    }
    .trust-panel__title {
        margin-bottom: 0.45rem;
        font-size: 0.88rem;
        line-height: 1.05;
    }
    .trust-panel__desc {
        font-size: 0.72rem;
        line-height: 1.35;
    }
    .trust-panel__rivet {
        width: 6px;
        height: 6px;
    }
    .trust-panel__rivet--tl,
    .trust-panel__rivet--tr { top: 7px; }
    .trust-panel__rivet--bl,
    .trust-panel__rivet--br { bottom: 7px; }
    .trust-panel__rivet--tl,
    .trust-panel__rivet--bl { left: 7px; }
    .trust-panel__rivet--tr,
    .trust-panel__rivet--br { right: 7px; }
}

/* ═══════════════════ COVERAGE ═══════════════════ */
.coverage {
    padding: 3.5rem 0; background: var(--color-white); text-align: center;
}
.coverage__container {
    max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
}
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.coverage-zone {
    --zone-color: var(--color-emerald);
    background: var(--color-white);
    border: 2px solid var(--color-dark);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 4px 4px 0 rgba(0, 26, 51, 0.1); /* Neo-brutalism soft shadow for distinction */
    transition: all var(--transition-normal);
    text-align: left;
    position: relative;
    overflow: hidden;
}
.coverage-zone::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--zone-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.coverage-zone:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0 rgba(0, 26, 51, 0.2);
    border-color: var(--zone-color);
}
.coverage-zone:hover::before {
    transform: scaleY(1);
}
.coverage-zone__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.coverage-zone__icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--zone-color);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    border: 1.5px solid transparent;
}
.coverage-zone__icon svg {
    width: 18px;
    height: 18px;
}
.coverage-zone:hover .coverage-zone__icon {
    background: var(--zone-color);
    color: var(--color-white);
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0, 0.15);
}
.coverage-zone__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
}
.coverage-zone__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--color-border);
    font-size: 0.85rem;
}
.coverage-zone__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-weight: 600;
}
.coverage-zone__time {
    color: var(--color-text);
}
.coverage-zone__time strong {
    color: var(--zone-color);
    font-size: 0.95rem;
}

/* Zone Specific Colors */
[data-zone="godoy-cruz"] { --zone-color: #8B5CF6; } /* Purple */
[data-zone="guaymallen"] { --zone-color: #D97706; } /* Amber */
[data-zone="san-jose"] { --zone-color: #0284C7; } /* Blue */
[data-zone="chacras"] { --zone-color: #65A30D; } /* Olive */
[data-zone="carrodilla"] { --zone-color: #BE123C; } /* Wine */
[data-zone="gran-mendoza"] { --zone-color: #475569; } /* Slate */

/* ═══════════════════ SERVICES ═══════════════════ */
.services { padding: 3.5rem 0; }
/* Premium Bento Grid (Option 2) */
.services__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.services__container .section-title {
    text-align: center;
}
.premium-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 1100px;
    width: 100%;
    text-align: left;
}
/* Card featured (Urgencias) spans 2 cols on desktop */
.bento-card--featured {
    grid-column: span 2;
}
/* Carousel controls: hidden on desktop */
.bento-carousel-controls {
    display: none;
}
.bento-carousel-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bento-card {
    position: relative;
    background: var(--iron);
    border: 1px solid var(--steel);
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    color: var(--color-white);
    cursor: zoom-in;
    will-change: transform;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--gold-accent);
}

/* Modal Zoom state */
.bento-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(18, 20, 22, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    cursor: zoom-out;
}
.bento-overlay.is-active {
    opacity: 1;
    pointer-events: all;
}
.bento-card.bento-card--zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.05) !important;
    z-index: 9999;
    width: 90%;
    max-width: 480px;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
    cursor: default;
    border-color: var(--brass);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(212,175,55,0.15) !important;
}
.bento-card.bento-card--zoomed .bento-card__desc {
    font-size: 1.05rem; /* Make text a bit larger to read better */
}
.bento-card.bento-card--zoomed .bento-card__footer {
    opacity: 1; margin-top: 1rem; max-height: 200px; /* Force footer visible on mobile when zoomed */
}

.bento-card__badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}
.bento-card__badge--gold {
    background: var(--gold-accent);
    color: var(--color-cobalt-dark);
}

.bento-card__header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.bento-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.06);
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
}
.bento-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.15rem 0;
    line-height: 1.2;
}
.bento-card__subtitle {
    font-size: 0.8rem;
    color: var(--bone);
    margin: 0;
}
.bento-card__desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--steel);
    margin-bottom: 1.25rem;
}
.bento-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.bento-feature-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(255,255,255,0.06);
    color: var(--bone);
    padding: 0.25rem 0.6rem;
    border-radius: 0.4rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.bento-card__footer {
    margin-top: auto;
    padding-top: 0.5rem;
}

/* ═══════════════════ PROCESO / CÓMO TRABAJAMOS ═══════════════════ */
.process-section {
    background-color: var(--iron);
    padding: 3rem 0 5rem;
    position: relative;
    border-top: 1px solid var(--steel);
}
.process-section__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.process-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.process-subtitle {
    font-size: 1.1rem;
    color: var(--steel);
}

/* ═══════════════════ BLUEPRINT TIMELINE ═══════════════════ */
.blueprint-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0 3rem;
}
.blueprint-timeline__line {
    position: absolute;
    top: 0; bottom: 0; left: 1rem;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--brass) 20%, var(--gold-accent) 80%, transparent);
    opacity: 0.3;
}
@media (min-width: 768px) {
    .blueprint-timeline__line {
        left: 50%;
        transform: translateX(-50%);
    }
}
.blueprint-step {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 3rem;
    width: 100%;
}
@media (min-width: 768px) {
    .blueprint-step {
        width: 50%;
        padding-left: 0;
        padding-right: 3.5rem;
        text-align: right;
    }
    .blueprint-step--alt {
        margin-left: 50%;
        padding-right: 0;
        padding-left: 3.5rem;
        text-align: left;
    }
}
.blueprint-step:last-child {
    margin-bottom: 0;
}
.blueprint-step__node {
    position: absolute;
    top: 0; left: 0.15rem;
    width: 2rem; height: 2rem;
    display: flex; align-items: center; justify-content: center;
}
@media (min-width: 768px) {
    .blueprint-step__node { left: auto; right: -1rem; }
    .blueprint-step--alt .blueprint-step__node { left: -1rem; right: auto; }
}
.blueprint-step__dot {
    width: 12px; height: 12px;
    background: var(--color-dark);
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(212,175,55,0.4);
}
.blueprint-step:hover .blueprint-step__dot {
    transform: scale(1.5);
    background: var(--gold-accent);
    box-shadow: 0 0 20px rgba(212,175,55,0.8);
}
.blueprint-step__num {
    position: absolute;
    top: -1.5rem;
    font-size: 3rem;
    font-family: var(--font-mono);
    font-weight: 800;
    color: var(--brass);
    opacity: 0.1;
    z-index: 1;
    transition: all 0.4s ease;
}
@media (min-width: 768px) {
    .blueprint-step__num { right: 1rem; top: -1rem; }
    .blueprint-step--alt .blueprint-step__num { left: 1rem; right: auto; }
}
.blueprint-step:hover .blueprint-step__num {
    opacity: 0.25;
    transform: translateY(-5px);
}
.blueprint-step__content {
    background: linear-gradient(135deg, rgba(30, 34, 38, 0.95), rgba(18, 20, 22, 0.95));
    border: 1px solid rgba(196,192,181,0.15);
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blueprint-step:hover .blueprint-step__content {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(212,175,55,0.05);
}
.blueprint-step__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}
.blueprint-step__desc {
    font-size: 0.95rem;
    color: var(--bone);
    line-height: 1.5;
}

/* ═══════════════════ OPTION 2: INDUSTRIAL CONSOLE ═══════════════════ */
.process-flow--option2 {
    padding-top: 0;
}
.process-flow--option2::before,
.process-flow--option2::after {
    display: none;
}
.process-flow--option2 .process-node {
    display: none;
}
.process-flow--option2 .process-ticket {
    background: #111;
    border: 1px solid #222;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.9), 0 5px 15px rgba(0,0,0,0.5);
    clip-path: none;
    border-radius: 0.75rem;
    border-top: 3px solid var(--steel);
}
.process-flow--option2 .process-ticket:hover {
    border-top-color: #00ff66;
    box-shadow: inset 0 0 15px rgba(0,255,102,0.1), 0 15px 30px rgba(0,0,0,0.6);
    transform: translateY(-5px);
}
.console-badge {
    background: rgba(0, 255, 102, 0.05);
    color: #00ff66;
    border: 1px solid rgba(0, 255, 102, 0.3);
    padding: 0.25rem 0.65rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 2px;
    text-transform: uppercase;
}
.process-flow--option2 .process-ticket:hover .console-badge {
    background: rgba(0, 255, 102, 0.15);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}
.process-flow--option2 .process-ticket__icon {
    color: var(--steel);
}
.process-flow--option2 .process-ticket:hover .process-ticket__icon {
    color: #00ff66;
    filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.4));
}
.process-flow--option2 .process-ticket__id {
    color: #666;
}

/* ═══════════════════ OPTION 3: EDITORIAL PREMIUM (GIANT WATERMARKS) ═══════════════════ */
.process-flow--option3 {
    padding-top: 2rem;
    counter-reset: step-counter;
}
.process-flow--option3::before,
.process-flow--option3::after,
.process-flow--option3 .process-node {
    display: none;
}
.process-flow--option3 .process-ticket {
    background: transparent;
    border: none;
    box-shadow: none;
    clip-path: none;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}
.process-flow--option3 .process-ticket::before {
    display: none; /* Remove noise background */
}
.process-flow--option3 .process-ticket::after {
    counter-increment: step-counter;
    content: "0" counter(step-counter);
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--gold-accent);
    opacity: 0.05;
    z-index: -1;
    line-height: 0.8;
    letter-spacing: -0.05em;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.process-flow--option3 .process-ticket:hover {
    transform: none; /* Remove normal hover lift */
}
.process-flow--option3 .process-ticket:hover::after {
    opacity: 0.15;
}
.process-flow--option3 .process-ticket__header {
    border: none;
    justify-content: flex-start;
    padding-bottom: 0;
    margin-bottom: 0.5rem;
}
.process-flow--option3 .process-ticket__id {
    display: none; /* Hidden because of the giant watermark */
}
.process-flow--option3 .process-ticket__status {
    color: var(--gold-accent);
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}
.process-flow--option3 .process-ticket__title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}
.process-flow--option3 .process-ticket__desc {
    color: var(--steel);
    font-size: 0.95rem;
}
.process-flow--option3 .process-ticket__icon {
    justify-content: flex-start;
    margin-bottom: 1rem;
    opacity: 1;
}
.process-flow--option3 .process-ticket:hover .process-ticket__icon {
    transform: translateX(10px); /* Slide icon right instead of up */
}

/* ═══════════════════ CASOS REALES ═══════════════════ */
.casos-reales {
    padding: 4.5rem 0; position: relative;
    background-color: var(--color-dark);
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}
.casos-reales__container {
    max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; text-align: center;
}
.casos-reales__grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem; 
    margin-top: 2rem;
}
.caso-card {
    background: #1e293b; /* Industrial Slate */
    border-radius: 1rem; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.caso-card:hover { transform: translateY(-4px); }

.caso-card__img { 
    width: 100%; height: 250px; object-fit: cover; 
    position: relative; z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.caso-card__content { 
    padding: 1.5rem; text-align: left; 
    position: relative; z-index: 2;
}
.caso-card__content p { font-size: 0.9rem; color: #94a3b8; margin-bottom: 0.5rem; line-height: 1.6; }
.caso-card__content strong { color: #f8fafc; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* BENTO ASYMMETRICAL LAYOUT */
.caso-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}
.caso-card--featured .caso-card__img {
    height: 100%;
    flex: 1;
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials { padding: 2rem 0 4rem; text-align: center; }
.testimonials .section-subtitle { margin-bottom: 1.5rem; }
.testimonials__container {
    max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
}
.google-badge-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.google-badge {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: var(--color-white); padding: 0.75rem 1.5rem;
    border-radius: 9999px; box-shadow: var(--shadow-md); margin-bottom: 0;
    text-decoration: none !important; color: inherit; cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.google-badge:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(0,0,0,0.15); }
.google-badge__icon { display: flex; align-items: center; }
.google-badge__content { display: flex; flex-direction: column; align-items: flex-start; }
.google-badge__rating { display: flex; align-items: center; gap: 0.5rem; }
.google-badge__rating strong { font-size: 1.25rem; font-weight: 800; color: var(--color-dark); }
.google-badge__stars { display: flex; gap: 2px; }
.google-badge__text { font-size: 0.8rem; color: #4285F4; font-weight: 600; }
.google-badge-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brass);
    color: #141412;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.85rem 1.4rem;
    border-radius: 9999px;
    text-decoration: none !important;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.google-badge-map-btn:hover {
    transform: translateY(-4px);
    background: #E5C365;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.testimonials__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
    background: var(--steel); border-radius: 1rem; padding: 2rem;
    box-shadow: var(--shadow-md); text-align: left;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-card__stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card__text { font-style: italic; color: var(--color-text); margin-bottom: 1.25rem; font-size: 0.95rem; line-height: 1.6; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-cobalt-light); color: var(--color-cobalt);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem;
}
.testimonial-card__info { display: flex; flex-direction: column; }
.testimonial-card__name { font-weight: 700; font-size: 0.9rem; color: var(--color-dark); }
.testimonial-card__location { font-size: 0.8rem; color: var(--color-text-muted); }

.mobile-scroll-hint { display: none; }



/* ═══════════════════ CTA FINAL ═══════════════════ */
.cta-final { padding: 3.5rem 0 2.5rem; text-align: center; }
.cta-final__container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.cta-final__title {
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--color-white);
    margin-bottom: 0.75rem;
}
.cta-final__title-break { display: block; color: var(--color-white); }
.cta-final__subtitle { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 1.5rem; }
.cta-final__trustline {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.cta-final__trustline span {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--bone);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.cta-final__buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer { padding: 2.75rem 0 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__container {
    max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 1.75rem;
}
.footer__logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800;
    color: #FFFFFF; margin-bottom: 0.5rem;
}
.footer__tagline { color: #CBD5E1; font-size: 0.95rem; line-height: 1.5; }
.footer__title { font-size: 1.05rem; font-weight: 800; color: #FFFFFF; letter-spacing: 0.05em; margin-bottom: 0.85rem; }
.footer__links a, .footer__contact a {
    display: block; color: #E2E8F0; font-size: 0.98rem; font-weight: 600;
    margin-bottom: 0.5rem; transition: color var(--transition-fast);
}
.footer__links a:hover, .footer__contact a:hover { color: var(--brass); }

.footer__contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    text-decoration: none;
    transition: transform var(--transition-fast);
    width: fit-content;
}
.footer__contact-link:hover {
    transform: translateX(4px);
}
.footer__contact a.footer__contact-link--whatsapp {
    color: #25D366;
}
.footer__contact a.footer__contact-link--instagram {
    color: #E1306C;
}
.footer__socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}
.footer__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--brass);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-fast);
    text-decoration: none;
}
.footer__social-icon:hover {
    background: var(--brass);
    color: #141412;
    transform: translateY(-2px);
}
.footer__bottom {
    max-width: var(--max-width); margin: 0 auto; padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.6;
}
.footer__developer-link {
    color: var(--brass) !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 0.25rem 0.65rem;
    background: rgba(229, 195, 101, 0.12);
    border: 1px solid rgba(229, 195, 101, 0.35);
    border-radius: 0.4rem;
    margin-left: 0.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    transition: all var(--transition-fast);
}
.footer__developer-link:hover {
    background: var(--brass);
    color: #141412 !important;
    box-shadow: 0 4px 15px rgba(229, 195, 101, 0.4);
    transform: translateY(-1px);
}

/* ═══════════════════ FLOATING BUTTONS ═══════════════════ */
.fab-whatsapp {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--gradient-whatsapp); color: var(--color-white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.fab-whatsapp:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5); }

.fab-phone {
    position: fixed; bottom: 2rem; left: 2rem; z-index: 99;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--color-cobalt); color: var(--color-white);
    display: none; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-fast);
}
.fab-phone:hover { transform: scale(1.1); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
    .premium-bento-grid { grid-template-columns: 1fr 1fr; }
    .casos-reales__grid { grid-template-columns: 1fr; }
    .caso-card--featured { grid-column: auto; grid-row: auto; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 768px) {
    section { padding: 2.5rem 0; }

    .header__nav { display: none; }
    .header__mobile-toggle { display: flex; }
    /* Typography adjustments per user request */
    .header__logo-img { height: 56px !important; }
    .bento-card__title { font-size: 1.35rem; margin-bottom: 0.3rem; }
    .bento-card__desc { font-size: 1rem; line-height: 1.45; }
    .bento-feature-tag { font-size: 0.75rem; padding: 0.35rem 0.7rem; }

    .hero-premium__container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-premium__title { font-size: clamp(2.2rem, 8vw, 3rem); text-align: center; }
    .tech-card { max-width: 100%; margin: 0 auto; }
    .blueprint-lock { margin-top: 1rem; max-width: 90%; }

    .stats-band__container { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .stat-item__number { font-size: 1.5rem !important; }
    .stat-item__label { font-size: 0.65rem !important; }

    /* ─── Mobile Carousel for Services ─── */
    .bento-carousel-wrapper {
        width: 100%;
        overflow-x: hidden; /* prevents page horizontal scroll */
    }
    .premium-bento-grid {
        display: flex !important;
        flex-wrap: nowrap;
        width: 100%;
        gap: 0;
        margin-top: 1.5rem;
        padding: 0;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .premium-bento-grid::-webkit-scrollbar {
        display: none;
    }
    .premium-bento-grid .bento-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 1.25rem;
        scroll-snap-align: start;
        box-sizing: border-box;
    }
    /* Remove featured span on mobile - all cards equal */
    .bento-card--featured {
        grid-column: auto;
    }
    /* Carousel Controls */
    .bento-carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.25rem;
    }
    .bento-carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        border: 2px solid var(--gold-accent);
        background: transparent;
        color: var(--gold-accent);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, color 0.2s;
        flex-shrink: 0;
    }
    .bento-carousel-btn:hover,
    .bento-carousel-btn:active {
        background: var(--gold-accent);
        color: var(--color-cobalt-dark);
    }
    .bento-carousel-dots {
        display: flex;
        gap: 0.4rem;
        align-items: center;
    }
    .bento-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        transition: background 0.25s, transform 0.25s;
        cursor: pointer;
    }
    .bento-dot.is-active {
        background: var(--gold-accent);
        transform: scale(1.3);
    }
    /* Hide desktop scroll hints */
    .mobile-scroll-hint { display: none; }

    /* Trust Section: 2x2 Compact Grid on Mobile */
    .trust-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        margin-top: 2rem !important;
        overflow: visible !important;
    }
    .trust-grid::before {
        display: none;
    }
    .trust-card {
        flex: none !important;
        padding: 1.25rem 0.85rem !important;
        border-radius: 0.85rem !important;
    }
    .trust-card__icon {
        width: 2.75rem !important;
        height: 2.75rem !important;
        margin-bottom: 0.75rem !important;
    }
    .trust-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.35rem !important;
    }
    .trust-card p {
        font-size: 0.775rem !important;
        line-height: 1.35 !important;
    }

    /* Coverage Section: 2-Column Compact Grid on Mobile */
    .coverage-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        overflow: visible !important;
        padding-bottom: 0 !important;
    }
    .coverage-zone {
        flex: none !important;
        padding: 1rem 0.75rem !important;
        border-radius: 0.85rem !important;
    }
    .coverage-zone__name {
        font-size: 0.95rem !important;
    }
    .coverage-zone__icon {
        width: 34px !important;
        height: 34px !important;
    }
    .coverage-zone__details {
        padding-top: 0.5rem !important;
        font-size: 0.75rem !important;
    }

    /* Process Flow: 2x2 Compact Grid on Mobile (Zero Scroll/Swipe) */
    .process-flow {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding-top: 0.5rem !important;
        overflow: visible !important;
    }
    .process-flow::before, .process-flow::after {
        display: none;
    }
    .process-node {
        display: none !important;
    }
    .process-ticket {
        flex: none !important;
        padding: 1rem 0.85rem !important;
        border-radius: 0.85rem !important;
    }
    .process-ticket__header {
        margin-bottom: 0.5rem !important;
    }
    .process-ticket__title {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }
    .process-ticket__desc {
        font-size: 0.775rem !important;
        line-height: 1.35 !important;
    }

    .casos-reales__grid .caso-card {
        flex: 0 0 85vw;
        max-width: 320px;
        scroll-snap-align: center;
    }

    .testimonials__grid .testimonial-card {
        flex: 0 0 85vw;
        max-width: 320px;
        scroll-snap-align: center;
    }

    .mobile-scroll-hint {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: var(--gold-accent);
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.25);
        padding: 0.35rem 0.85rem;
        border-radius: 2rem;
        margin-bottom: 1rem;
        animation: pulse 2s infinite;
    }


    .field input, .field select, .field textarea { padding: 0.55rem 0.75rem !important; font-size: 0.88rem !important; }

    .footer { padding-top: 2rem; }
    .footer__container { grid-template-columns: 1fr 1fr; gap: 1rem; text-align: center; margin-bottom: 1rem; }
    .footer__brand { grid-column: 1 / -1; margin-bottom: 1rem; }
    .footer__logo { justify-content: center; }
    .footer__socials { justify-content: center; }
    .footer__contact-link { margin: 0 auto; }

    .fab-phone { display: flex; }

    .divider-diagonal { height: 50px; }
}

/* ═══════════════════ GALLERY CAROUSEL ═══════════════════ */
.gallery-carousel-wrapper {
    width: 100%;
    margin-top: 2rem;
    overflow-x: hidden;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
    .gallery-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }
    .gallery-filters::-webkit-scrollbar {
        display: none;
    }
}
.gallery-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(242, 194, 48, 0.45);
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--bone);
    cursor: pointer;
    font: 600 0.8rem var(--font-mono);
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 767px) {
    .gallery-filter {
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}
.gallery-filter strong {
    min-width: 1.35rem;
    padding: 0.1rem 0.25rem;
    border-radius: 0.2rem;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.7rem;
    text-align: center;
}
.gallery-filter:hover,
.gallery-filter:focus-visible,
.gallery-filter.is-active {
    border-color: var(--gold-accent);
    background: var(--gold-accent);
    color: var(--iron);
    outline: none;
}
.gallery-filter.is-active strong,
.gallery-filter:hover strong,
.gallery-filter:focus-visible strong {
    background: rgba(43, 43, 40, 0.18);
}

.gallery-carousel .caso-card:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 3px;
}

.gallery-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 0;
    -webkit-overflow-scrolling: touch;
}
.gallery-carousel::-webkit-scrollbar { display: none; }

.gallery-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    align-content: start;
    gap: 0.5rem;
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0.25rem;
    scroll-snap-align: start;
    box-sizing: border-box;
}
.gallery-slide .caso-card {
    flex: none;
    min-width: 0;
    max-width: 100%;
}
.gallery-slide .caso-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
    border-radius: var(--border-radius, 12px);
}
.gallery-slide .caso-card__content {
    font-size: 0.7rem;
    padding: 0.5rem;
    line-height: 1.3;
}
.gallery-slide .caso-card__content p {
    margin-bottom: 0.2rem;
}
.gallery-carousel-controls {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.gallery-carousel-controls .bento-carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 2px solid var(--gold-accent);
    background: transparent;
    color: var(--gold-accent);
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
    visibility: visible !important;
    opacity: 1;
}
.gallery-carousel-controls .bento-carousel-btn:hover:not(:disabled) {
    background: var(--gold-accent);
    color: var(--color-cobalt-dark);
}
.gallery-carousel-controls .bento-carousel-btn:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
}

.gallery-carousel-controls .bento-carousel-dots {
    display: flex !important;
    gap: 0.4rem;
    align-items: center;
    visibility: visible !important;
}

/* ═══════════════════ IMAGE LIGHTBOX ═══════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 1rem;
    background: rgba(10, 10, 9, 0.94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.lightbox-open { overflow: hidden; }
.lightbox-content {
    max-width: min(92vw, 1200px);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 0.5rem;
    transition: transform 0.2s ease;
}
.lightbox-img { cursor: grab; }
#lightbox-img.is-zoomed { cursor: grab; }
#lightbox-img:active { cursor: grabbing; }
.lightbox-close,
.lightbox-nav,
.lightbox-zoom-controls button {
    border: 1px solid rgba(242, 239, 233, 0.35);
    background: rgba(43, 43, 40, 0.9);
    color: var(--bone);
    cursor: pointer;
    font: inherit;
}
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2010;
    transition: background 0.2s, color 0.2s;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-zoom-controls {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.35rem;
}
.lightbox-zoom-controls button {
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0 0.75rem;
    border-radius: 0.35rem;
    font-weight: 700;
}
.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-zoom-controls button:hover {
    background: var(--gold-accent);
    color: var(--iron);
}
@media (max-width: 600px) {
    .lightbox { padding-top: 4.5rem; }
    .lightbox-content { max-width: 96vw; max-height: 76vh; }
}

.gallery-carousel-controls .bento-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}
.gallery-carousel-controls .bento-dot.is-active {
    background: var(--gold-accent);
    transform: scale(1.3);
}

@media (min-width: 769px) {
    .gallery-slide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }
}

/* ─── Testimonial card: name above stars ─── */
.testimonial-card__name--top {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 0.35rem;
}

/* ─── Coverage zone details: stacked layout ─── */
.coverage-zone__details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.coverage-zone__status {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}
.coverage-zone__time {
    white-space: nowrap;
}
