  :root {
            --brand-primary: #C84B0C;
            --brand-secondary: #8B2E00;
            --brand-accent: #F0A040;
            --brand-earth: #4A3728;
            --brand-smoke: #F7F4F0;
            --ink: #1A1208;
            --ink-60: rgba(26, 18, 8, 0.6);
            --ink-20: rgba(26, 18, 8, 0.12);
            --white: #FFFFFF;
            --off-white: #FAF8F5;
            --font-display: 'Oswald', sans-serif;
            --font-hero: 'Bebas Neue', sans-serif;
            --font-body: 'Nunito Sans', sans-serif;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 16px;
            --shadow-warm: 0 4px 24px rgba(200, 75, 12, 0.15);
            --shadow-deep: 0 8px 40px rgba(26, 18, 8, 0.18);
            --ease: cubic-bezier(0.4, 0, 0.2, 1);
            --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--font-body);
            color: var(--ink);
            background: var(--off-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ─── TOPBAR ─────────────────────────────────────── */
        .topbar {
            background: var(--brand-earth);
            color: rgba(255, 255, 255, 0.88);
            font-family: var(--font-body);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            padding: 7px 0;
            position: relative;
            overflow: hidden;
        }

        .topbar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(45deg,
                    transparent,
                    transparent 10px,
                    rgba(255, 255, 255, 0.025) 10px,
                    rgba(255, 255, 255, 0.025) 20px);
            pointer-events: none;

        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        .topbar-info {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .topbar-item {
            display: flex;
            align-items: center;
            gap: 7px;
            transition: color 0.2s;
        }

        .topbar-item:hover {
            color: var(--brand-accent);
        }

        .topbar-item i {
            color: var(--brand-primary);
            font-size: 0.75rem;
        }

        .topbar-socials {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .topbar-social {
            width: 28px;
            height: 28px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.25s var(--ease);
        }

        .topbar-social:hover {
            background: var(--brand-primary);
            color: white;
            transform: translateY(-1px);
        }

        /* ─── HEADER ─────────────────────────────────────── */
        .site-header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 900;
            border-bottom: 3px solid var(--brand-primary);
            box-shadow: 0 2px 20px rgba(26, 18, 8, 0.1);
        }

        .header-inner {
            display: flex;
            align-items: center;
            height: 88px;
            gap: 32px;
        }

        /* Logo */
        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .logo-img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            transition: transform 0.4s var(--ease-spring);
        }

        .logo-wrap:hover .logo-img {
            transform: scale(1.08) rotate(-2deg);
        }

        .logo-text {
            line-height: 1.2;
        }

        .logo-name {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-secondary);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            display: block;
        }

        .logo-sub {
            font-family: var(--font-body);
            font-size: 0.50rem;
            font-weight: 600;
            color: var(--ink-60);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: block;
        }

        /* Nav desktop */
        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 20px;
            font-family: var(--font-display);
            font-size: 0.93rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--ink);
            border-radius: var(--radius-sm);
            transition: all 0.2s var(--ease);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--brand-primary);
            border-radius: 2px;
            transition: width 0.3s var(--ease);
        }

        .nav-item:hover>.nav-link,
        .nav-item.active>.nav-link {
            color: var(--brand-primary);
        }

        .nav-item:hover>.nav-link::after,
        .nav-item.active>.nav-link::after {
            width: calc(100% - 32px);
        }

        /* Dropdown */
        .has-dropdown {
            position: relative;
        }

        .nav-chevron {
            font-size: 0.6rem;
            transition: transform 0.3s var(--ease);
        }

        .has-dropdown:hover .nav-chevron {
            transform: rotate(180deg);
        }

        .dropdown-panel {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            background: var(--white);
            border-radius: var(--radius-md);
            min-width: 230px;
            padding: 8px;
            box-shadow: var(--shadow-deep);
            border: 1px solid var(--ink-20);
            border-top: 3px solid var(--brand-primary);
            opacity: 0;
            visibility: hidden;
            transition: all 0.25s var(--ease);
            pointer-events: none;
        }

        .has-dropdown:hover .dropdown-panel {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .drop-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ink);
            border-radius: var(--radius-sm);
            transition: all 0.2s var(--ease);
        }

        .drop-link i {
            width: 20px;
            text-align: center;
            color: var(--brand-primary);
            font-size: 0.85rem;
        }

        .drop-link:hover {
            background: var(--brand-smoke);
            color: var(--brand-primary);
            padding-left: 18px;
        }

        /* CTA */
        .header-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 11px 22px;
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--brand-secondary);
            border: 2px solid var(--brand-secondary);
            border-radius: var(--radius-sm);
            transition: all 0.25s var(--ease);
        }

        .btn-outline:hover {
            background: var(--brand-secondary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(139, 46, 0, 0.3);
        }

        .btn-solid {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 12px 24px;
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: white;
            background: var(--brand-primary);
            border: 2px solid var(--brand-primary);
            border-radius: var(--radius-sm);
            transition: all 0.25s var(--ease);
            position: relative;
            overflow: hidden;
        }

        .btn-solid::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s var(--ease);
        }

        .btn-solid:hover {
            background: var(--brand-secondary);
            border-color: var(--brand-secondary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-warm);
        }

        .btn-solid:hover::before {
            left: 100%;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background 0.2s;
            position: relative;
            z-index: 1;
            /* 🔽 más bajo */
        }

        .hamburger:hover {
            background: var(--brand-smoke);
        }

        .ham-line {
            width: 24px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
            transition: all 0.3s var(--ease);
            transform-origin: center;
        }

        .hamburger.open .ham-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.open .ham-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.open .ham-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ─── MOBILE NAV ─────────────────────────────────── */
        .mobile-nav {
            position: fixed;
            inset: 0;
            z-index: 9999;
            pointer-events: none;
        }

        .mobile-nav-overlay {
            position: absolute;
            inset: 0;
            background: rgba(26, 18, 8, 0.6);
            z-index: 1;
            backdrop-filter: blur(4px);
            opacity: 0;
            transition: opacity 0.35s var(--ease);
        }

        .mobile-nav.open~.site-header .hamburger {
            pointer-events: none;
        }

        .mobile-nav-drawer {
            position: absolute;
            top: 0;
            right: 0;
            width: min(340px, 90vw);
            height: 100%;
            background: var(--white);
            z-index: 2;
            transform: translateX(100%);
            transition: transform 0.4s var(--ease);
            overflow-y: auto;
            padding: 0 0 40px;
        }

        .mobile-nav.open {
            pointer-events: auto;
        }

        .mobile-nav.open .mobile-nav-overlay {
            opacity: 1;
        }

        .mobile-nav.open .mobile-nav-drawer {
            transform: translateX(0);
        }

        .drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border-bottom: 2px solid var(--brand-smoke);
            position: sticky;
            top: 0;
            background: var(--white);
            z-index: 3;
        }

        .drawer-logo {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--brand-secondary);
            text-transform: uppercase;
        }

        .drawer-close {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            border: none;
            background: var(--brand-smoke);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink);
            font-size: 1.1rem;
            transition: all 0.2s;
            position: relative;
            z-index: 9999;
        }

        .drawer-close:hover {
            background: var(--brand-primary);
            color: white;
        }

        /* ── BLOQUE CONTACTO EN DRAWER (el fix) ── */
        .drawer-contact {
            background: var(--brand-earth);
            padding: 16px 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .drawer-contact-title {
            font-family: var(--font-display);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--brand-accent);
            margin-bottom: 2px;
        }

        .drawer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.4;
            text-decoration: none;
            transition: color 0.2s;
        }

        .drawer-contact-item:hover {
            color: var(--brand-accent);
        }

        .drawer-contact-item i {
            color: var(--brand-primary);
            width: 14px;
            flex-shrink: 0;
            margin-top: 2px;
            font-size: 0.78rem;
        }

        .drawer-contact-item span {
            display: block;
        }

        .drawer-contact-item small {
            display: block;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.45);
            font-weight: 400;
            margin-top: 1px;
        }

        .drawer-contact-socials {
            display: flex;
            gap: 6px;
            margin-top: 4px;
        }

        .drawer-contact-soc {
            width: 32px;
            height: 32px;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.78rem;
            transition: all 0.2s var(--ease);
        }

        .drawer-contact-soc:hover {
            background: var(--brand-primary);
            border-color: var(--brand-primary);
            color: white;
        }

        /* Nav en drawer */
        .drawer-nav {
            padding: 8px 0;
        }

        .drawer-item {
            border-bottom: 1px solid var(--brand-smoke);
        }

        .drawer-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 24px;
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--ink);
            background: none;
            border: none;
            width: 100%;
            cursor: pointer;
            transition: color 0.2s, background 0.2s;
        }

        .drawer-link:hover,
        .drawer-item.active .drawer-link {
            color: var(--brand-primary);
            background: var(--brand-smoke);
        }

        .drawer-sub {
            max-height: 0;
            overflow: hidden;
            background: var(--brand-smoke);
            transition: max-height 0.35s var(--ease);
        }

        .drawer-item.sub-open .drawer-sub {
            max-height: 400px;
        }

        .drawer-item.sub-open .drawer-link i.fa-chevron-down {
            transform: rotate(180deg);
        }

        .drawer-link i.fa-chevron-down {
            transition: transform 0.3s var(--ease);
        }

        .drawer-sub-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 24px 11px 36px;
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ink-60);
            transition: color 0.2s;
        }

        .drawer-sub-link i {
            color: var(--brand-primary);
            width: 16px;
            text-align: center;
        }

        .drawer-sub-link:hover {
            color: var(--brand-primary);
        }

        .drawer-cta {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            border-top: 2px solid var(--brand-smoke);
            margin-top: 8px;
        }

        .drawer-cta .btn-outline,
        .drawer-cta .btn-solid {
            width: 100%;
            justify-content: center;
        }

        /* ─── BREADCRUMB ─────────────────────────────────── */
        .breadcrumb-wrap {
            background: var(--brand-smoke);
            border-bottom: 1px solid var(--ink-20);
            padding: 10px 0;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-body);
            font-size: 0.8rem;
            color: var(--ink-60);
            list-style: none;
        }

        .breadcrumb li+li::before {
            content: '/';
            color: var(--brand-primary);
        }

        .breadcrumb a {
            font-weight: 600;
        }

        .breadcrumb a:hover {
            color: var(--brand-primary);
        }

        .breadcrumb .current {
            color: var(--brand-primary);
            font-weight: 700;
        }

        .page-content {
            min-height: 60vh;
        }

        /* ─── FOOTER ─────────────────────────────────────── */
        .site-footer {
            background: var(--brand-earth);
            color: rgba(255, 255, 255, 0.82);
            font-family: var(--font-body);
            position: relative;
            overflow: hidden;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), var(--brand-primary));
        }

        .site-footer::after {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .footer-main {
            position: relative;
            z-index: 1;
            padding: 70px 0 50px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1.5fr 1.5fr 1.8fr;
            gap: 50px;
        }

        .footer-col-title {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--brand-accent);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(240, 160, 64, 0.3);
        }

        .footer-logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .footer-logo-img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.05);
            padding: 4px;
        }

        .footer-logo-name {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            line-height: 1.1;
        }

        .footer-logo-tag {
            font-size: 0.65rem;
            color: var(--brand-accent);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .footer-desc {
            font-size: 0.875rem;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 20px;
        }

        .footer-contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.82rem;
        }

        .footer-contact-list i {
            color: var(--brand-primary);
            margin-top: 3px;
            width: 14px;
            flex-shrink: 0;
        }

        .footer-contact-list a:hover {
            color: var(--brand-accent);
        }

       .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s var(--ease);
}

.footer-links li a::before {
    content: '';
    width: 6px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 2px;
    flex-shrink: 0;
    transition: width 0.2s var(--ease);
}

.footer-links li a:hover {
    color: white;
    padding-left: 6px;
}

.footer-links li a:hover::before {
    width: 12px;
}

        .footer-schedule {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 16px;
            margin-top: 8px;
        }

        .schedule-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
            font-size: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .schedule-row:last-child {
            border-bottom: none;
        }

        .schedule-day {
            color: rgba(255, 255, 255, 0.55);
        }

        .schedule-hours {
            color: var(--brand-accent);
            font-weight: 600;
        }

        .footer-socials {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 4px;
        }

        .footer-social-btn {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.9rem;
            transition: all 0.3s var(--ease-spring);
        }

        .footer-social-btn:hover {
            transform: translateY(-4px) scale(1.1);
            background: var(--brand-primary);
            border-color: var(--brand-primary);
            color: white;
            box-shadow: 0 8px 20px rgba(200, 75, 12, 0.35);
        }

        .cert-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 12px;
        }

        .cert-pill {
            padding: 4px 12px;
            background: rgba(240, 160, 64, 0.12);
            border: 1px solid rgba(240, 160, 64, 0.25);
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--brand-accent);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .footer-bottom {
            position: relative;
            z-index: 1;
            background: rgba(0, 0, 0, 0.25);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 20px 0;
        }

        .footer-bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-copy {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .footer-bottom-links a {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.4);
            transition: color 0.2s;
        }

        .footer-bottom-links a:hover {
            color: var(--brand-accent);
        }

        /* ─── SCROLL TOP ─────────────────────────────────── */
        .scroll-top-btn {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 48px;
            height: 48px;
            background: var(--brand-primary);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            z-index: 800;
            opacity: 0;
            visibility: hidden;
            transform: translateY(16px);
            transition: all 0.3s var(--ease);
            box-shadow: var(--shadow-warm);
        }

        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top-btn:hover {
            background: var(--brand-secondary);
            transform: translateY(-4px);
        }

        /* ─── WHATSAPP ───────────────────────────────────── */
        .wa-float {
            position: fixed;
            right: 24px;
            bottom: 84px;
            z-index: 800;
        }

        .wa-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25D366, #128C7E);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
            transition: all 0.35s var(--ease-spring);
            position: relative;
        }

        .wa-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.35);
            animation: wa-pulse 2s ease-out infinite;
        }

        @keyframes wa-pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.7);
                opacity: 0;
            }
        }

        .wa-btn svg {
            width: 28px;
            height: 28px;
            fill: white;
            position: relative;
            z-index: 1;
        }

        .wa-btn:hover {
            transform: scale(1.12);
        }

        .wa-tooltip {
            position: absolute;
            right: calc(100% + 12px);
            top: 50%;
            transform: translateY(-50%);
            background: white;
            color: var(--ink);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            white-space: nowrap;
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 700;
            box-shadow: var(--shadow-deep);
            border-left: 3px solid #25D366;
            opacity: 0;
            visibility: hidden;
            transition: all 0.25s var(--ease);
            pointer-events: none;
        }

        .wa-float:hover .wa-tooltip {
            opacity: 1;
            visibility: visible;
            right: calc(100% + 16px);
        }

        /* ─── RESPONSIVE ─────────────────────────────────── */
        @media (max-width: 1100px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
        }

        @media (max-width: 960px) {

            .main-nav,
            .header-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }

        /* En tablet ocultamos el email de la topbar (queda ubicación + teléfono) */
        @media (max-width: 768px) {
            .topbar-info>.topbar-item:nth-child(3) {
                display: none;
            }
        }

        /* En móvil ocultamos la topbar completa — la info ya está en el drawer */
        @media (max-width: 600px) {
            .topbar {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-main {
                padding: 48px 0 36px;
            }

            .footer-bottom-inner {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Skip link */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            padding: 12px 20px;
            background: var(--brand-primary);
            color: white;
            font-weight: 700;
            z-index: 9999;
            transition: top 0.2s;
        }

        .skip-link:focus {
            top: 0;
        }
     