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

        :root {
            --pink:      #FF1F8E;
            --pink-dark: #E0177A;
            --green:     #5CC217;
            --green2:    #3EA80D;
            --yellow:    #FFD600;
            --dark:      #0D1F10;
            --light:     #F2FDE8;
            --white:     #FFFFFF;
            --grad:      linear-gradient(135deg,#FF1F8E 0%,#5CC217 100%);
            --grad-p:    linear-gradient(135deg,#5CC217 0%,#FF1F8E 100%);
            --grad-y:    linear-gradient(135deg,#5CC217 0%,#FFD600 100%);
        }

        html { scroll-behavior: smooth; }
        body { font-family:'Nunito',sans-serif; color:var(--dark); overflow-x:hidden; background:var(--white); }

        /* ── Scrollbar personalizado ── */
        ::-webkit-scrollbar { width: 7px; }
        ::-webkit-scrollbar-track { background: var(--light); }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--pink) 0%, var(--green) 100%);
            border-radius: 99px;
        }
        ::-webkit-scrollbar-thumb:hover { background: var(--pink-dark); }
        * { scrollbar-width: thin; scrollbar-color: var(--pink) var(--light); }

        /* ═══════════════════════════════════
           HEADER  – logo | nav centrada | CTA
        ═══════════════════════════════════ */
        #header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            height: 72px;
            background: rgba(255,255,255,.97);
            backdrop-filter: blur(14px);
            box-shadow: 0 2px 24px rgba(255,31,142,.10);
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            padding: 0 5%;
            gap: 1rem;
            transition: box-shadow .3s;
        }

        .logo {
            font-family: 'Pacifico', cursive;
            font-size: 1.85rem;
            background: var(--grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: -1px;
            white-space: nowrap;
        }

        /* Logo imagen */
        .logo-link {
            display: inline-flex; align-items: center;
            text-decoration: none; flex-shrink: 0;
        }
        .logo-img {
            display: block; width: auto; object-fit: contain;
            height: 44px;
        }
        .logo-img-header { height: 56px; }
        .logo-img-hero   { height: 216px; }
        .hero-logo-row   { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
        .logo-img-sm     { height: 32px; }
        .logo-img-footer { height: 36px; opacity: .9; }
        .logo-img-gal    { opacity: .75; }

        @media (max-width: 768px) {
            .logo-img-header { height: 46px; }
            .logo-img-hero   { height: 168px; }
        }

        /* Nav items centrados */
        nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }
        nav a {
            text-decoration: none; color: var(--dark);
            font-weight: 800; font-size: .93rem; letter-spacing: .3px;
            position: relative; transition: color .25s;
            cursor: pointer; white-space: nowrap;
        }
        nav a::after {
            content: ''; position: absolute; bottom: -4px; left: 0;
            width: 0; height: 2.5px;
            background: var(--grad); border-radius: 2px;
            transition: width .28s;
        }
        nav a:hover { color: var(--pink); }
        nav a:hover::after { width: 100%; }

        /* CTA + hamburger a la derecha */
        .nav-right { display: flex; align-items: center; gap: .8rem; grid-column: 3; }

        .nav-cta {
            background: #FF1F8E;
            box-shadow: 0 4px 20px rgba(255,31,142,.4);
            color: white !important; -webkit-text-fill-color: white !important;
            padding: .55rem 1.6rem; border-radius: 50px;
            font-weight: 900 !important; font-size: 1rem;
            text-decoration: none; white-space: nowrap;
            transition: background .25s, transform .25s, box-shadow .25s;
            cursor: pointer;
        }
        .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,31,142,.55); background: #E0177A; }

        /* Hamburger */
        .hamburger {
            display: none; flex-direction: column; gap: 5px;
            background: none; border: none; cursor: pointer; padding: 4px;
        }
        .hamburger span { display: block; width: 24px; height: 3px; background: var(--pink); border-radius: 3px; transition: .3s; }
        .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

        /* Mobile nav */
        #navMobile {
            position: fixed; top: 72px; left: 0; right: 0;
            background: white; padding: 1.5rem 6%;
            display: flex; flex-direction: column; gap: .8rem;
            box-shadow: 0 12px 30px rgba(0,0,0,.1);
            transform: translateY(-110%); opacity: 0;
            transition: transform .35s ease, opacity .35s;
            pointer-events: none; z-index: 999;
        }
        #navMobile.open { transform: translateY(0); opacity: 1; pointer-events: all; }
        #navMobile a {
            text-decoration: none; color: var(--dark);
            font-weight: 800; font-size: 1rem;
            padding: .6rem 0; border-bottom: 1px solid rgba(0,0,0,.06);
            display: flex; align-items: center; gap: .6rem; cursor: pointer;
        }
        #navMobile a i {
            color: var(--pink);
            width: 18px; text-align: center; font-size: .95rem;
        }

        /* ═══════════════════════════════════
           HERO  – Carousel de imágenes
        ═══════════════════════════════════ */
        #inicio {
            min-height: 100vh;
            background: var(--dark);
            display: flex; align-items: center;
            padding: 72px 6% 0;
            position: relative; overflow: hidden;
        }

        /* ── HERO VERSION TOGGLE ── */
        /* v1 = glow + partículas (default)  |  v2 = mosaico de fotos */
        .hero-mosaic {
            position: absolute;
            top: -15%; bottom: -15%; left: -2%; right: -2%;
            display: flex; gap: 8px;
            z-index: 0; pointer-events: none;
            overflow: hidden;
            opacity: 0;
            transition: opacity .75s ease;
        }
        #inicio.hero-v2 .hero-mosaic { opacity: 1; }
        #inicio.hero-v2 .hero-glow   { opacity: .35; }

        .hm-col {
            flex: 1; display: flex; flex-direction: column; gap: 8px;
            animation: driftUp 32s ease-in-out infinite alternate;
        }
        .hm-col:nth-child(even) {
            animation-name: driftDown;
            margin-top: 80px;
        }
        @keyframes driftUp {
            from { transform: translateY(0); }
            to   { transform: translateY(-44px); }
        }
        @keyframes driftDown {
            from { transform: translateY(0); }
            to   { transform: translateY(44px); }
        }
        .hm-img {
            width: 100%; flex: 1;
            object-fit: cover; object-position: center center;
            border-radius: 10px;
            min-height: 0; display: block;
        }
        .hero-mosaic-overlay {
            position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(
                to right,
                rgba(13,31,16,.96) 0%,
                rgba(13,31,16,.84) 38%,
                rgba(13,31,16,.58) 68%,
                rgba(13,31,16,.38) 100%
            );
            opacity: 0;
            transition: opacity .75s ease;
        }
        #inicio.hero-v2 .hero-mosaic-overlay { opacity: 1; }

        /* Botón versión en el nav */
        .ver-btn {
            background: rgba(92,194,23,.12);
            border: 1px solid rgba(92,194,23,.35);
            color: #5CC217;
            padding: .38rem .9rem; border-radius: 50px;
            font-size: .78rem; font-weight: 900;
            cursor: pointer; white-space: nowrap;
            display: flex; align-items: center; gap: .4rem;
            font-family: 'Nunito', sans-serif;
            transition: background .25s, border-color .25s;
        }
        .ver-btn:hover { background: rgba(92,194,23,.22); border-color: rgba(92,194,23,.55); }
        .ver-btn.active {
            background: rgba(92,194,23,.28); border-color: rgba(92,194,23,.65);
            color: #3EA80D;
        }

        /* ── ENTRANCE ANIMATIONS ── */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-22px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(32px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        #header       { animation: fadeInDown .55s .05s ease-out both; }
        .hero-content { animation: fadeInUp  .80s .25s ease-out both; }
        .hero-cards .hcard:nth-child(1) { animation: fadeInUp .55s .50s ease-out both; }
        .hero-cards .hcard:nth-child(2) { animation: fadeInUp .55s .65s ease-out both; }
        .hero-cards .hcard:nth-child(3) { animation: fadeInUp .55s .80s ease-out both; }
        .hero-cards .hcard:nth-child(4) { animation: fadeInUp .55s .95s ease-out both; }

        .hero-glow {
            position: absolute; inset: 0; pointer-events: none; z-index: 1;
            background:
                radial-gradient(ellipse 60% 70% at 15% 55%, rgba(255,31,142,.30) 0%, transparent 70%),
                radial-gradient(ellipse 40% 50% at 75% 20%, rgba(39,201,122,.22) 0%, transparent 60%),
                radial-gradient(ellipse 50% 60% at 55% 85%, rgba(255,31,142,.18) 0%, transparent 65%);
        }

        #particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
        .particle {
            position: absolute; border-radius: 50%;
            animation: floatUp linear infinite; opacity: 0;
        }
        @keyframes floatUp {
            0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
            8%   { opacity: 1; }
            92%  { opacity: 1; }
            100% { transform: translateY(-110vh) rotate(720deg); opacity: 0; }
        }

        .hero-content { position: relative; z-index: 2; max-width: 620px; }

        .hero-badge {
            display: inline-flex; align-items: center; gap: .5rem;
            background: rgba(255,31,142,.15);
            border: 1px solid rgba(255,31,142,.35);
            color: #FF80C4;
            padding: .4rem 1.1rem; border-radius: 50px;
            font-size: .82rem; font-weight: 800;
            letter-spacing: 1.2px; text-transform: uppercase;
            margin-bottom: 1.6rem;
        }

        .hero-title {
            font-family: 'Fredoka One', cursive;
            font-size: clamp(2.8rem, 6.5vw, 5.5rem);
            color: white; line-height: 1.08;
            margin-bottom: 1.4rem;
        }
        .grad-text {
            background: var(--grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-sub {
            font-size: 1.1rem; color: rgba(255,255,255,.85);
            line-height: 1.75; font-weight: 600;
            margin-bottom: 2.5rem; max-width: 500px;
        }
        .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

        .btn {
            display: inline-flex; align-items: center; gap: .55rem;
            padding: .9rem 2rem; border-radius: 50px;
            font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1rem;
            text-decoration: none; cursor: pointer; border: none;
            transition: transform .28s, box-shadow .28s;
        }
        .btn-pink  { background: #FF1F8E; color: white; box-shadow: 0 4px 20px rgba(255,31,142,.4); }
        .btn-pink:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(255,31,142,.55); background: #E0177A; transition: background .25s, transform .25s, box-shadow .25s; }
        .btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,.35); }
        .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }

        /* Hero cards – versión 1 (emoji) y versión 2 (foto) */
        .hero-cards {
            position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
            width: 44%; max-width: 540px;
            display: grid; grid-template-columns: 1fr 1fr; gap: 18px; z-index: 3;
        }
        /* V1 (fondo oscuro) = fotos (default) | V2 (collage) = emojis */
        .v1-cards { display: grid; }
        .v2-cards { display: none; }

        /* Logo en el lado derecho del hero (reemplaza los 4 cuadros) */
        .hero-logo-right {
            display: flex;
            align-items: center;
            justify-content: center;
            grid-template-columns: unset;
        }
        .hero-logo-right-img {
            width: 90%;
            max-width: 440px;
            height: auto;
            object-fit: contain;
            animation: logoBrillo 3.5s ease-in-out infinite;
        }

        /* ── Destellos del logo ── */
        .hero-logo-right::before,
        .hero-logo-right::after {
            content: '✦';
            position: absolute;
            pointer-events: none;
            z-index: 4;
            animation: sparkleFlash 2.8s ease-in-out infinite;
        }
        .hero-logo-right::before {
            font-size: 1.5rem;
            color: var(--yellow);
            top: 10%; right: 12%;
            animation-delay: 0s;
        }
        .hero-logo-right::after {
            font-size: 1rem;
            color: var(--pink);
            bottom: 22%; right: 8%;
            animation-delay: 1.4s;
        }

        @keyframes logoBrillo {
            0%, 100% {
                filter: drop-shadow(0 8px 30px rgba(255,31,142,.4))
                        drop-shadow(0 0 18px rgba(255,31,142,.25));
                transform: scale(1);
            }
            40% {
                filter: drop-shadow(0 10px 55px rgba(255,31,142,.82))
                        drop-shadow(0 0 45px rgba(255,214,0,.52))
                        drop-shadow(0 0 25px rgba(255,31,142,.5));
                transform: scale(1.025);
            }
            70% {
                filter: drop-shadow(0 10px 48px rgba(255,31,142,.72))
                        drop-shadow(0 0 38px rgba(92,194,23,.42));
                transform: scale(1.015);
            }
        }

        @keyframes sparkleFlash {
            0%, 100% { opacity: 0; transform: scale(.3) rotate(0deg); }
            50%       { opacity: 1; transform: scale(1.4) rotate(180deg); }
        }
        #inicio.hero-v2 .v1-cards { display: none; }
        #inicio.hero-v2 .v2-cards { display: grid; }

        /* Base: solo bordes y transición */
        .hcard {
            border-radius: 18px; overflow: hidden;
            transition: transform .3s, box-shadow .3s;
            cursor: default; position: relative;
        }
        .hcard:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(255,31,142,.38); }

        /* V2: Emoji — mantiene glassmorphism */
        .hcard-emoji {
            background: rgba(13,31,16,.72);
            border: 1px solid rgba(255,255,255,.18);
            backdrop-filter: blur(14px);
            padding: 1.9rem 1.2rem;
            text-align: center;
        }
        .hcard-emoji .hico { font-size: 2.9rem; display: block; margin-bottom: .55rem; }
        .hcard-emoji p { color: rgba(255,255,255,.9); font-weight: 900; font-size: .9rem; }

        /* V1: Foto — imagen limpia sin recuadro */
        .hcard-photo img {
            width: 100%; height: 195px;
            object-fit: cover; object-position: center center;
            display: block; transition: transform .45s;
        }
        .hcard-photo:hover img { transform: scale(1.08); }
        .hcard-lbl {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: .75rem 1rem;
            background: linear-gradient(to top, rgba(0,0,0,.78) 0%, transparent 100%);
            color: rgba(255,255,255,.97);
            font-weight: 900; font-size: .9rem;
            text-align: center;
        }

        /* ═══════════════════════════════════
           HIGHLIGHTS STRIP
        ═══════════════════════════════════ */
        .highlights {
            background: var(--grad);
            padding: 1.2rem 6%;
            display: flex; align-items: center; justify-content: center;
            gap: 3rem; flex-wrap: wrap; text-align: center;
        }
        .hl-item { color: white; display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1rem; }
        .hl-item span { font-size: 1.4rem; }

        /* ═══════════════════════════════════
           STATS BAR
        ═══════════════════════════════════ */
        .stats-bar {
            background: var(--dark);
            padding: 3rem 6%;
            display: grid; grid-template-columns: repeat(4,1fr);
            gap: 1rem; text-align: center;
            border-top: 3px solid transparent;
            border-image: var(--grad) 1;
        }
        .stat-num {
            font-family: 'Fredoka One', cursive;
            font-size: 3.2rem; color: white; display: block; line-height: 1;
            background: var(--grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-lbl { font-size: 1rem; color: rgba(255,255,255,.85); font-weight: 700; margin-top: .4rem; }

        /* ═══════════════════════════════════
           SECTION BASE
        ═══════════════════════════════════ */
        section { padding: 6rem 6%; }

        .s-tag {
            display: inline-block;
            background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            font-weight: 900; font-size: .8rem; letter-spacing: 2.5px;
            text-transform: uppercase; margin-bottom: .7rem;
        }
        .s-title {
            font-family: 'Fredoka One', cursive;
            font-size: clamp(1.9rem, 3.8vw, 3rem);
            color: var(--dark); line-height: 1.18; margin-bottom: .9rem;
        }
        .s-sub { color: #6B6B7B; font-size: 1.12rem; line-height: 1.75; max-width: 580px; }
        .s-head { margin-bottom: 3.5rem; }
        .s-head.center { text-align: center; }
        .s-head.center .s-sub { margin: 0 auto; }

        /* ═══════════════════════════════════
           SERVICIOS – lista horizontal
        ═══════════════════════════════════ */
        #servicios {
            background: linear-gradient(180deg, #FFFFFF 0%, var(--light) 100%);
        }

        /* CMS Banner slot */
        /* ── CMS BANNER ── colores cambiables con --cb-from/--cb-to en inline style */
        .cms-banner-slot { margin-bottom: 3rem; }
        .cms-banner {
            --cb-from: #FF1F8E; --cb-to: #FF6B35;   /* ← WordPress puede sobreescribir */
            background: linear-gradient(135deg, var(--cb-from) 0%, var(--cb-to) 100%);
            border-radius: 26px; padding: 0; overflow: hidden;
            display: grid; grid-template-columns: 120px 1fr auto;
            align-items: stretch; position: relative;
            box-shadow: 0 12px 48px rgba(255,31,142,.28);
        }
        /* Burbuja decorativa */
        .cms-banner::before {
            content: ''; position: absolute; top: -60px; right: 160px;
            width: 260px; height: 260px;
            background: rgba(255,255,255,.08); border-radius: 50%;
            pointer-events: none;
        }
        .cms-banner::after {
            content: ''; position: absolute; bottom: -40px; right: -40px;
            width: 180px; height: 180px;
            background: rgba(255,255,255,.06); border-radius: 50%;
            pointer-events: none;
        }
        /* Columna izquierda – ícono grande */
        .cms-banner-icon {
            background: rgba(0,0,0,.15);
            display: flex; align-items: center; justify-content: center;
            font-size: 3.2rem; flex-shrink: 0;
            border-right: 1px solid rgba(255,255,255,.15);
        }
        /* Etiqueta flotante */
        .cms-banner-tag {
            position: absolute; top: 1rem; right: 1.5rem;
            background: rgba(255,255,255,.22);
            border: 1px solid rgba(255,255,255,.4);
            color: white; padding: .22rem .85rem; border-radius: 50px;
            font-size: .65rem; font-weight: 900; letter-spacing: 2px;
            text-transform: uppercase; z-index: 2;
        }
        /* Texto central */
        .cms-banner-text {
            padding: 1.8rem 2rem 1.8rem 2rem;
            position: relative; z-index: 1;
        }
        .cms-banner-text h3 {
            font-family: 'Fredoka One', cursive;
            font-size: 1.9rem; color: white; margin-bottom: .45rem;
            line-height: 1.15;
        }
        .cms-banner-text p {
            color: rgba(255,255,255,.9); font-size: 1rem;
            font-weight: 600; line-height: 1.55; max-width: 500px;
        }
        /* Columna derecha – botón */
        .cms-banner-cta {
            padding: 1.8rem 2.2rem; display: flex;
            align-items: center; justify-content: center;
            flex-shrink: 0; position: relative; z-index: 1;
        }
        .btn-cms {
            background: white; color: var(--pink);
            padding: .9rem 1.9rem; border-radius: 50px;
            font-family: 'Nunito', sans-serif; font-weight: 900; font-size: .95rem;
            text-decoration: none; white-space: nowrap;
            transition: transform .25s, box-shadow .25s;
            box-shadow: 0 4px 18px rgba(0,0,0,.22); display: inline-block;
        }
        .btn-cms:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.28); }
        .cms-caption {
            text-align: center; margin-top: .6rem;
            color: #B0B0C8; font-size: .7rem; font-weight: 700; letter-spacing: .5px;
            display: flex; align-items: center; justify-content: center; gap: .4rem;
        }

        /* ── MENU SPLIT: lista izq + masonry der ── */
        .menu-split {
            display: grid;
            grid-template-columns: 1fr 460px;
            gap: 3rem;
            align-items: start;
        }

        /* LEFT – lista de servicios */
        .svc-list {
            display: flex; flex-direction: column;
            counter-reset: svc-counter;
        }
        .svc-item {
            padding: 1.2rem 0 1.2rem 1.6rem;
            border-bottom: 1px solid #EEE8F8;
            position: relative;
            counter-increment: svc-counter;
        }
        .svc-item::before {
            content: '';
            position: absolute; left: 0; top: 0; bottom: 0;
            width: 3px; background: var(--grad);
            border-radius: 3px; opacity: 0; transition: opacity .25s;
        }
        .svc-item:hover::before { opacity: 1; }
        .svc-item-num {
            font-size: .7rem; color: var(--pink); letter-spacing: 2.5px;
            font-weight: 900; text-transform: uppercase;
            font-family: 'Nunito', sans-serif; display: block; margin-bottom: .2rem;
        }
        .svc-item h3 {
            font-family: 'Fredoka One', cursive; font-size: 1.45rem;
            color: var(--dark); margin-bottom: .38rem; line-height: 1.2;
        }
        .svc-item p {
            color: #5A5A70; font-size: 1rem;
            line-height: 1.62; margin-bottom: .65rem;
        }

        /* RIGHT – grid uniforme 3×3 celdas cuadradas */
        .menu-masonry {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            position: sticky;
            top: 88px;
        }
        .mm-img {
            border-radius: 10px;
            overflow: hidden;
            display: block;
            aspect-ratio: 9 / 16;
        }
        .mm-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
            transition: transform .45s ease;
        }
        .mm-img:hover img { transform: scale(1.05); }
        .mm-big, .mm-tall, .mm-wide {}
        .svc-pill {
            display: inline-block;
            background: rgba(255,31,142,.1); color: var(--pink);
            padding: .24rem .8rem; border-radius: 50px;
            font-size: .78rem; font-weight: 900; letter-spacing: .5px;
        }
        .svc-pill.coming { background: rgba(255,214,0,.15); color: #9A7500; }

        .svc-toggle {
            background: none; border: none; cursor: pointer;
            color: var(--pink); font-size: .95rem; font-weight: 800;
            padding: 0; margin-top: .6rem;
            display: flex; align-items: center; gap: .35rem;
            font-family: 'Nunito', sans-serif;
            transition: color .25s;
        }
        .svc-toggle:hover { color: var(--purple); }
        .svc-toggle i { transition: transform .3s; font-size: .75rem; }
        .svc-toggle.open i { transform: rotate(180deg); }
        .svc-detail { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
        .svc-detail-inner {
            padding: .75rem 0 .4rem;
            border-top: 1px solid rgba(0,0,0,.07);
            margin-top: .5rem;
            font-size: 1rem; color: #555568; line-height: 1.7;
        }

        /* ═══════════════════════════════════
           DIFERENCIADOR – 4 cards siempre
        ═══════════════════════════════════ */
        .diferenciador {
            background: var(--dark);
            padding: 4rem 6%;
            text-align: center;
        }
        .dif-title {
            font-family: 'Fredoka One', cursive;
            font-size: clamp(1.6rem, 3.5vw, 2.6rem);
            color: white; margin-bottom: 1rem;
        }
        .dif-sub { color: rgba(255,255,255,.85); font-size: 1.15rem; line-height: 1.75; max-width: 620px; margin: 0 auto 2rem; }

        .dif-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);   /* siempre 4 columnas */
            gap: 1.2rem;
            max-width: 1080px;
            margin: 0 auto;
        }
        .dif-card {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 18px; padding: 1.8rem 1.4rem;
            transition: background .3s, border-color .3s; cursor: default;
        }
        .dif-card:hover { background: rgba(255,31,142,.15); border-color: rgba(255,31,142,.35); }
        .dif-card .ico { font-size: 2.2rem; margin-bottom: .8rem; display: block; color: var(--pink); }
        .dif-card h4 { font-family: 'Fredoka One', cursive; color: white; font-size: 1.25rem; margin-bottom: .5rem; }
        .dif-card p  { color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.65; }

        /* ═══════════════════════════════════
           NOSOTROS
        ═══════════════════════════════════ */
        #nosotros {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            padding: 6rem 6%;
        }

        .nos-visual { position: relative; }
        .nos-main-img {
            width: 100%; height: 500px;
            border-radius: 28px; overflow: hidden;
            box-shadow: 0 20px 60px rgba(255,31,142,.25);
        }
        .nos-main-img img { width: 100%; height: 100%; object-fit: cover; }
        .nos-badge-1 {
            position: absolute; top: -18px; left: -18px;
            background: var(--grad); border-radius: 16px;
            padding: .9rem 1.4rem; color: white;
            font-weight: 900; font-size: .88rem;
            box-shadow: 0 6px 22px rgba(92,194,23,.4); z-index: 2;
        }
        .nos-badge-2 {
            position: absolute; bottom: -22px; right: -22px;
            background: white; border-radius: 18px;
            padding: 1.3rem 1.6rem; text-align: center;
            box-shadow: 0 12px 35px rgba(0,0,0,.12); z-index: 2;
        }
        .nos-badge-2 .big {
            font-family: 'Fredoka One', cursive; font-size: 2rem;
            background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            display: block; line-height: 1;
        }
        .nos-badge-2 small { font-size: .82rem; font-weight: 800; color: #888; }

        .nos-features { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 1.8rem; }
        .feat { display: flex; align-items: flex-start; gap: .8rem; }
        .feat-ico {
            width: 42px; height: 42px; flex-shrink: 0;
            background: rgba(255,31,142,.1); border-radius: 11px;
            display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
            color: var(--pink);
        }
        .feat-txt h4 { font-weight: 900; font-size: 1rem; color: var(--dark); margin-bottom: .2rem; }
        .feat-txt p  { font-size: .9rem; color: #7878A0; }

        /* ═══════════════════════════════════
           GALERÍA – collage masonry
        ═══════════════════════════════════ */
        #galeria { background: var(--dark); padding: 5rem 3%; }
        #galeria .s-title { color: white; }

        /* CSS Grid masonry – 3 cols × 6 filas = 18 celdas, 15 imgs sin hueco
           Patrón: ítem 1 alto en col1, ítem 6 alto en col3, ítem 11 alto en col2
           Resultado visual:
             [1T·col1] [2·col2]  [3·col3]
             [1T·col1] [4·col2]  [5·col3]
             [7·col1]  [8·col2]  [6T·col3]
             [9·col1]  [10·col2] [6T·col3]
             [12·col1] [11T·col2][13·col3]
             [14·col1] [11T·col2][15·col3]
        */
        /* GALERÍA – masonry 4 cols × 5 filas · rectángulo perfecto sin huecos */
        .gal-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(7, 220px);
            gap: 8px;
            border-radius: 16px;
            overflow: hidden;
            width: 100%;
        }

        .gal-item {
            overflow: hidden;
            position: relative; cursor: pointer;
            border-radius: 0;
        }

        .gal-thumb {
            position: relative; width: 100%; height: 100%;
            overflow: hidden;
        }

        /* Tetris 4×7: verticales span 2 filas, horizontales 1 fila */
        .gal-item:nth-child(1)  { grid-column: 1; grid-row: 1 / 3; }
        .gal-item:nth-child(2)  { grid-column: 2; grid-row: 1 / 3; }
        .gal-item:nth-child(3)  { grid-column: 3; grid-row: 1 / 3; }
        .gal-item:nth-child(4)  { grid-column: 4; grid-row: 3; }
        .gal-item:nth-child(5)  { grid-column: 4; grid-row: 1 / 3; }
        .gal-item:nth-child(6)  { grid-column: 1; grid-row: 3 / 5; }
        .gal-item:nth-child(7)  { grid-column: 2; grid-row: 3 / 5; }
        .gal-item:nth-child(8)  { grid-column: 3; grid-row: 3 / 5; }
        .gal-item:nth-child(9)  { grid-column: 1; grid-row: 5; }
        .gal-item:nth-child(10) { grid-column: 4; grid-row: 4 / 6; }
        .gal-item:nth-child(11) { grid-column: 3; grid-row: 7; }
        .gal-item:nth-child(12) { grid-column: 2; grid-row: 5 / 7; }
        .gal-item:nth-child(13) { grid-column: 3; grid-row: 5 / 7; }
        .gal-item:nth-child(14) { grid-column: 2; grid-row: 7; }
        .gal-item:nth-child(15) { grid-column: 1; grid-row: 6 / 8; }
        .gal-item:nth-child(16) { grid-column: 4; grid-row: 6 / 8; }

        .gal-thumb img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block; transition: transform .4s;
        }
        .gal-item:hover .gal-thumb img { transform: scale(1.07); }

        .gal-overlay {
            position: absolute; inset: 0;
            background: rgba(255,31,142,.55);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: opacity .3s; border-radius: 14px;
        }
        .gal-item:hover .gal-overlay { opacity: 1; }
        .gal-overlay i { color: white; font-size: 1.8rem; }

        /* Lightbox fotos */
        .lightbox {
            position: fixed; inset: 0; z-index: 2000;
            background: rgba(0,0,0,.93);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none;
            transition: opacity .3s;
        }
        .lightbox.open { opacity: 1; pointer-events: all; }
        .lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
        .lb-close {
            position: absolute; top: 1.5rem; right: 2rem;
            color: white; font-size: 2rem; cursor: pointer;
            background: none; border: none; opacity: .7; transition: opacity .2s;
        }
        .lb-close:hover { opacity: 1; }
        .lb-prev, .lb-next {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(255,255,255,.1); border: none;
            color: white; font-size: 1.6rem; cursor: pointer;
            width: 50px; height: 50px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: background .3s;
        }
        .lb-prev { left: 1.5rem; }
        .lb-next { right: 1.5rem; }
        .lb-prev:hover, .lb-next:hover { background: rgba(255,31,142,.6); }

        /* ═══════════════════════════════════
           VIDEOS – portrait + lightbox
        ═══════════════════════════════════ */
        #videos { background: var(--light); padding: 6rem 6%; }

        .vid-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .vid-card {
            border-radius: 18px; overflow: hidden;
            background: var(--dark);
            box-shadow: 0 8px 30px rgba(0,0,0,.15);
            transition: transform .3s, box-shadow .3s;
            cursor: pointer;
        }
        .vid-card:hover { transform: translateY(-6px); box-shadow: 0 22px 55px rgba(255,31,142,.2); }

        /* Thumbnail portrait 9:16 */
        .vid-thumb {
            position: relative;
            aspect-ratio: 9 / 16;
            overflow: hidden;
            background: var(--dark);
        }
        .vid-thumb video {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            pointer-events: none;
        }
        /* Overlay play */
        .vid-play {
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center;
            background: rgba(0,0,0,.28);
            transition: background .3s;
        }
        .vid-card:hover .vid-play { background: rgba(255,31,142,.35); }
        .vid-play-icon {
            width: 56px; height: 56px;
            background: rgba(255,255,255,.92);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,.4);
            transition: transform .3s, background .3s;
        }
        .vid-card:hover .vid-play-icon { transform: scale(1.12); background: white; }
        .vid-play-icon svg { width: 22px; height: 22px; fill: var(--pink); margin-left: 3px; }

        .vid-label {
            padding: .85rem 1.1rem;
            color: rgba(255,255,255,.85);
            font-size: .82rem; font-weight: 700;
            display: flex; align-items: center; gap: .5rem;
            border-top: 1px solid rgba(255,255,255,.07);
        }
        .vid-label i { color: var(--pink); }

        /* Lightbox video */
        .vid-lightbox {
            position: fixed; inset: 0; z-index: 2001;
            background: rgba(0,0,0,.96);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none;
            transition: opacity .3s;
        }
        .vid-lightbox.open { opacity: 1; pointer-events: all; }

        .vlb-wrap {
            position: relative;
            display: flex; align-items: center; justify-content: center;
            gap: 1rem;
        }
        /* Contenedor video + controles */
        .vlb-video-box {
            position: relative;
            display: flex; flex-direction: column;
        }
        #vlbVideo {
            height: min(78vh, 580px);
            width: auto;
            max-width: min(380px, 92vw);
            border-radius: 16px 16px 0 0;
            object-fit: contain;
            background: #000;
            cursor: pointer;
            display: block;
        }
        /* Controles personalizados – sin botón de volumen */
        .vlb-controls {
            display: flex; align-items: center; gap: .7rem;
            padding: .55rem .9rem;
            background: rgba(0,0,0,.75);
            border-radius: 0 0 16px 16px;
            width: 100%;
            box-sizing: border-box;
        }
        .vlb-play-btn {
            background: none; border: none; cursor: pointer;
            color: white; font-size: 1rem;
            width: 28px; height: 28px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            transition: color .2s;
        }
        .vlb-play-btn:hover { color: var(--pink); }
        .vlb-progress-wrap {
            flex: 1; display: flex; align-items: center; gap: .55rem;
        }
        .vlb-progress-bar {
            flex: 1; height: 4px;
            background: rgba(255,255,255,.22);
            border-radius: 4px; cursor: pointer; position: relative;
        }
        .vlb-progress-fill {
            height: 100%; width: 0%;
            background: var(--pink);
            border-radius: 4px;
            pointer-events: none;
        }
        .vlb-time {
            color: rgba(255,255,255,.65);
            font-size: .72rem; font-weight: 700;
            white-space: nowrap; flex-shrink: 0;
            font-family: 'Nunito', sans-serif;
        }
        .vlb-close {
            position: absolute; top: -2.5rem; right: 0;
            color: white; font-size: 1.6rem; cursor: pointer;
            background: rgba(255,255,255,.12); border: none;
            width: 40px; height: 40px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: background .2s;
        }
        .vlb-close:hover { background: rgba(255,31,142,.7); }
        .vlb-prev, .vlb-next {
            position: relative; top: auto; transform: none;
            background: rgba(255,255,255,.1); border: none;
            color: white; font-size: 1.3rem; cursor: pointer;
            width: 44px; height: 44px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: background .25s; flex-shrink: 0;
        }
        .vlb-prev:hover, .vlb-next:hover { background: rgba(255,31,142,.6); }

        /* ═══════════════════════════════════
           TESTIMONIOS
        ═══════════════════════════════════ */
        #testimonios { background: white; }
        .test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
        .test-card {
            background: var(--light); border-radius: 22px; padding: 2rem;
            border: 1px solid rgba(92,194,23,.18);
            box-shadow: 0 4px 22px rgba(0,0,0,.05);
            position: relative; transition: transform .3s, box-shadow .3s;
        }
        .test-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(255,31,142,.18); border-color: rgba(255,31,142,.3); }
        .test-card::before {
            content: '\201C'; position: absolute; top: 1.1rem; right: 1.5rem;
            font-family: 'Fredoka One', cursive; font-size: 5.5rem;
            color: rgba(255,31,142,.09); line-height: 1;
        }
        .stars { color: var(--yellow); font-size: .95rem; margin-bottom: .9rem; }
        .test-txt { color: #5A5A72; line-height: 1.75; font-size: 1rem; margin-bottom: 1.4rem; }
        .test-author { display: flex; align-items: center; gap: .75rem; }
        .author-av {
            width: 44px; height: 44px; border-radius: 50%;
            background: var(--grad);
            display: flex; align-items: center; justify-content: center;
            color: white; font-weight: 900; font-size: 1.05rem; flex-shrink: 0;
        }
        .author-av.purple { background: var(--grad-p); }
        .author-av.yellow { background: var(--grad-y); }
        .author-info h4 { font-weight: 900; font-size: .92rem; color: var(--dark); }
        .author-info p  { font-size: .78rem; color: #A0A0B8; }

        /* ═══════════════════════════════════
           FAQ
        ═══════════════════════════════════ */
        #faq { background: var(--light); }
        .faq-wrap { max-width: 780px; margin: 0 auto; }
        .faq-list { display: flex; flex-direction: column; gap: .9rem; }
        .faq-item {
            background: white; border-radius: 16px; overflow: hidden;
            border: 1px solid rgba(92,194,23,.15); transition: border-color .3s;
        }
        .faq-item.active { border-color: rgba(255,31,142,.4); border-left: 4px solid var(--pink); }
        .faq-q {
            width: 100%; padding: 1.25rem 1.4rem;
            background: none; border: none; text-align: left;
            font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800;
            color: var(--dark); cursor: pointer;
            display: flex; justify-content: space-between; align-items: center; gap: 1rem;
            transition: color .3s;
        }
        .faq-q:hover { color: var(--pink); }
        .faq-q i { color: var(--pink); transition: transform .35s; flex-shrink: 0; }
        .faq-item.active .faq-q i { transform: rotate(180deg); }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
        .faq-a-inner { padding: 0 1.4rem 1.25rem; color: #6B6B80; font-size: 1rem; line-height: 1.75; }

        /* ═══════════════════════════════════
           CONTACTO
        ═══════════════════════════════════ */
        #contacto { background: var(--dark); }
        #contacto .s-title { color: white; }
        #contacto .s-sub   { color: rgba(255,255,255,.85); margin: 0 auto 3rem; }

        .cto-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem; align-items: start;
        }
        .cto-info { display: flex; flex-direction: column; gap: 1.2rem; }
        .cto-card {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.09);
            border-radius: 20px; padding: 1.6rem;
            transition: background .3s, border-color .3s;
            display: flex; align-items: flex-start; gap: 1rem;
            text-decoration: none; cursor: pointer;
        }
        .cto-card:hover { background: rgba(255,31,142,.12); border-color: rgba(255,31,142,.3); }
        .cto-ico {
            width: 46px; height: 46px; flex-shrink: 0;
            background: var(--grad); border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; color: white;
        }
        .cto-text h3 { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: white; margin-bottom: .3rem; }
        .cto-text p, .cto-text a {
            color: rgba(255,255,255,.85); text-decoration: none;
            font-size: .92rem; transition: color .3s;
        }
        .cto-text a:hover { color: var(--pink); }
        .socials { display: flex; gap: .9rem; margin-top: .5rem; flex-wrap: wrap; }
        .social-btn {
            width: 44px; height: 44px;
            background: rgba(255,255,255,.08); border-radius: 11px;
            display: flex; align-items: center; justify-content: center;
            color: white; text-decoration: none; font-size: 1.1rem;
            transition: background .3s, transform .3s; cursor: pointer;
        }
        .social-btn:hover { background: var(--grad); transform: translateY(-3px); }

        .cto-form {
            background: rgba(255,255,255,.05);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 24px; padding: 2.4rem;
        }
        .cto-form h3 { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: white; margin-bottom: 1.6rem; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
        .form-group label { color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 700; }
        .form-group input,
        .form-group select,
        .form-group textarea {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 12px; padding: .8rem 1rem;
            color: white; font-family: 'Nunito', sans-serif;
            font-size: .95rem; font-weight: 600;
            outline: none; transition: border-color .3s, background .3s;
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder { color: rgba(255,255,255,.35); }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus { border-color: var(--pink); background: rgba(255,31,142,.08); }
        .form-group select option { background: #1C1C35; color: white; }
        .form-group textarea { resize: vertical; min-height: 100px; }
        .field-hint { display: block; font-size: .76rem; color: rgba(255,255,255,.42); margin-top: .3rem; font-weight: 600; letter-spacing: .2px; }
        .btn-form {
            width: 100%; padding: 1rem; border-radius: 50px;
            background: #FF1F8E; color: white; border: none;
            box-shadow: 0 4px 20px rgba(255,31,142,.4);
            font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1rem;
            cursor: pointer; transition: background .25s, transform .25s, box-shadow .25s;
            display: flex; align-items: center; justify-content: center; gap: .6rem; margin-top: .5rem;
        }
        .btn-form:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(255,31,142,.55); background: #E0177A; }
        .btn-wa {
            display: inline-flex; align-items: center; gap: .7rem;
            background: linear-gradient(135deg,#25D366,#128C7E);
            color: white; padding: 1rem 2.2rem; border-radius: 50px;
            font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1rem;
            text-decoration: none; transition: transform .3s, box-shadow .3s;
            margin-top: 1.4rem; width: 100%; justify-content: center;
        }
        .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,.4); }

        /* ═══════════════════════════════════
           FOOTER
        ═══════════════════════════════════ */
        footer {
            background: #060F07; padding: 1.8rem 6%;
            display: flex; align-items: center; justify-content: space-between;
            flex-wrap: wrap; gap: .8rem;
        }
        footer p { color: rgba(255,255,255,.35); font-size: .82rem; }
        .foot-links { display: flex; gap: 1.2rem; }
        .foot-links a { color: rgba(255,255,255,.35); text-decoration: none; font-size: .82rem; transition: color .3s; }
        .foot-links a:hover { color: var(--pink); }

        /* ═══════════════════════════════════
           FLOATING WA
        ═══════════════════════════════════ */
        .float-wa {
            position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 998;
            width: 58px; height: 58px;
            background: linear-gradient(135deg,#25D366,#128C7E);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.55rem; text-decoration: none;
            box-shadow: 0 6px 28px rgba(37,211,102,.5);
            animation: waPulse 2.4s ease-in-out infinite;
        }
        @keyframes waPulse {
            0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,.5); }
            50%      { box-shadow: 0 6px 40px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.1); }
        }

        /* ═══════════════════════════════════
           SCROLL REVEAL
        ═══════════════════════════════════ */
        .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
        .reveal.in { opacity: 1; transform: translateY(0); }

        /* ═══════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════ */

        /* ── Tablet ancha ── */
        @media (max-width: 1100px) {
            .hero-cards { width: 46%; }
            .menu-split { grid-template-columns: 1fr 380px; gap: 2rem; }
            #nosotros   { grid-template-columns: 1fr; gap: 3rem; }
            .nos-main-img { height: 380px; }
            .nos-badge-1, .nos-badge-2 { display: none; }
            .test-grid  { grid-template-columns: 1fr 1fr; }
            .cto-layout { grid-template-columns: 1fr; gap: 2.5rem; }
            .dif-cards  { grid-template-columns: repeat(2,1fr); }
        }
        /* Galería tablet (< 960px) – 4 cols, filas portrait compactas */
        @media (max-width: 960px) {
            .gal-grid { grid-template-rows: repeat(7, 175px); gap: 6px; }
        }

        /* ── Tablet ── */
        @media (max-width: 900px) {
            nav { display: none; }
            .hamburger { display: flex; }
            /* Ocultar solo las cards emoji/foto; el logo-right se reposiciona */
            .hero-cards:not(.hero-logo-right) { display: none; }
            /* Hero en columna: texto arriba, logo centrado abajo */
            #inicio {
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                padding-bottom: 3rem;
            }
            .hero-logo-right {
                position: relative;
                transform: none;
                right: auto; top: auto;
                width: 100%;
                max-width: none;
                margin-top: 2rem;
                align-self: center;
            }
            .hero-logo-right-img {
                width: 50vw;
                max-width: 260px;
            }
            .menu-split { grid-template-columns: 1fr; }
            .menu-masonry { position: static; grid-template-columns: repeat(3, 1fr); }
            .cms-banner { grid-template-columns: 80px 1fr; }
            .cms-banner-cta { grid-column: 1/-1; padding: 0 2rem 1.6rem; }
            .cms-banner-tag { top: .8rem; right: 1rem; }
            .vid-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
        }

        /* ── Mobile ── */
        @media (max-width: 768px) {
            #header { padding: 0 4%; }
            .ver-btn { padding: .32rem .7rem; font-size: .72rem; }

            /* Hero */
            #inicio { min-height: 100svh; }
            .hero-content { padding: 0 5%; max-width: 100%; }
            .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
            .hero-sub { font-size: .95rem; }
            .hero-ctas { flex-direction: column; align-items: flex-start; gap: .8rem; }
            .hero-ctas .btn { width: 100%; justify-content: center; }
            .hero-logo-right-img { width: 58vw; max-width: 200px; }

            /* Stats */
            .stats-bar  { grid-template-columns: repeat(2,1fr); }
            .highlights { gap: 1rem; font-size: .85rem; }

            /* Sections */
            section { padding: 3.5rem 5%; }
            #nosotros, #videos { padding: 3.5rem 5%; }
            #galeria { padding: 3.5rem 3%; }
            .s-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

            /* Menu */
            .menu-split { gap: 2rem; }
            .svc-item { padding: 1rem 0 1rem 1.4rem; }
            .svc-item h3 { font-size: 1.25rem; }
            .svc-item p  { font-size: .92rem; }
            /* 9 fotos en 2 cols → la 9ª centrada y vertical */
            .menu-masonry { grid-template-columns: repeat(2, 1fr); }
            .menu-masonry .mm-img:last-child {
                grid-column: 1 / -1;
                width: 50%;
                margin: 0 auto;
                aspect-ratio: 9 / 16;
            }

            /* CMS Banner mobile */
            .cms-banner { grid-template-columns: 1fr; }
            .cms-banner-icon { height: 70px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
            .cms-banner-text { padding: 1.4rem 1.4rem .8rem; }
            .cms-banner-cta  { padding: .8rem 1.4rem 1.4rem; justify-content: flex-start; }
            .cms-banner-tag  { display: none; }

            /* Gallery mobile – Tetris 2 cols: verticales x2 filas, horizontales ancho completo */
            .gal-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: 150px 150px 150px 150px 260px 150px 150px 150px 150px 260px 150px 150px 150px 150px 260px 260px;
                grid-auto-rows: unset;
                gap: 6px;
                border-radius: 10px;
            }
            .gal-item:nth-child(1)  { grid-column: 1;    grid-row: 1 / 3; }
            .gal-item:nth-child(2)  { grid-column: 2;    grid-row: 1 / 3; }
            .gal-item:nth-child(3)  { grid-column: 1;    grid-row: 3 / 5; }
            .gal-item:nth-child(4)  { grid-column: 1/3;  grid-row: 5; }
            .gal-item:nth-child(5)  { grid-column: 2;    grid-row: 3 / 5; }
            .gal-item:nth-child(6)  { grid-column: 1;    grid-row: 6 / 8; }
            .gal-item:nth-child(7)  { grid-column: 2;    grid-row: 6 / 8; }
            .gal-item:nth-child(8)  { grid-column: 1;    grid-row: 8 / 10; }
            .gal-item:nth-child(9)  { grid-column: 1/3;  grid-row: 10; }
            .gal-item:nth-child(10) { grid-column: 2;    grid-row: 8 / 10; }
            .gal-item:nth-child(11) { grid-column: 1/3;  grid-row: 15; }
            .gal-item:nth-child(12) { grid-column: 1;    grid-row: 11 / 13; }
            .gal-item:nth-child(13) { grid-column: 2;    grid-row: 11 / 13; }
            .gal-item:nth-child(14) { grid-column: 1/3;  grid-row: 16; }
            .gal-item:nth-child(15) { grid-column: 1;    grid-row: 13 / 15; }
            .gal-item:nth-child(16) { grid-column: 2;    grid-row: 13 / 15; }

            /* Cards */
            .dif-cards  { grid-template-columns: repeat(2,1fr); }
            .test-grid  { grid-template-columns: 1fr; }
            .nos-features { grid-template-columns: 1fr; }
            .form-row   { grid-template-columns: 1fr; }
            .vlb-prev, .vlb-next { width: 36px; height: 36px; font-size: 1.1rem; }
            #vlbVideo { max-width: min(300px, 82vw); }
        }

        /* ── Mobile pequeño ── */
        @media (max-width: 480px) {
            /* Header: ocultar ver-btn, reducir logo y dejar nav-cta solo icono */
            .ver-btn { display: none; }
            .logo { font-size: 1.5rem; }
            .nav-cta { font-size: 0; padding: .5rem .75rem; display: inline-flex; align-items: center; }
            .nav-cta i { font-size: 1.1rem; }

            .hero-title  { font-size: 2.1rem; }
            .stat-num    { font-size: 1.8rem; }
            .dif-cards   { grid-template-columns: 1fr; }
            .vid-grid    { grid-template-columns: 1fr 1fr; max-width: 100%; }
            .menu-masonry { grid-template-columns: repeat(2, 1fr); }
            .gal-grid { grid-template-rows: 120px 120px 120px 120px 210px 120px 120px 120px 120px 210px 120px 120px 120px 120px 210px 210px; gap: 5px; }

            /* Botones nav del lightbox: superpuestos al video en lugar de ocultos */
            .vlb-prev, .vlb-next {
                display: flex;
                position: absolute;
                top: 40%;
                transform: translateY(-50%);
                z-index: 10;
                width: 30px; height: 30px;
                font-size: .9rem;
                background: rgba(0,0,0,.58);
            }
            .vlb-prev { left: 6px; }
            .vlb-next { right: 6px; }

            /* Bug fix: selector correcto para el footer */
            footer { flex-direction: column; text-align: center; }
            .foot-links { justify-content: center; }
        }

        /* Form validation feedback */
        .form-group.has-error input,
        .form-group.has-error select,
        .form-group.has-error textarea {
            border-color: #FF4560 !important;
            background: rgba(255,69,96,.1) !important;
        }
        .form-group.has-error label { color: #FF8099; }
        .form-msg {
            padding: .85rem 1.1rem; border-radius: 12px;
            font-size: .88rem; font-weight: 700;
            margin-top: .9rem; display: none; opacity: 0;
            transition: opacity .3s;
        }
        .form-msg.error { background: rgba(255,69,96,.14); color: #FF8099; border: 1px solid rgba(255,69,96,.28); }
        .form-msg.success { background: rgba(37,211,102,.1); color: #2ECC71; border: 1px solid rgba(37,211,102,.22); }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .hm-col { animation: none; }
            #header, .hero-content, .hero-cards .hcard { animation: none; }
            .reveal { transition: none; }
            .float-wa { animation: none; }
            .hero-logo-right-img {
                animation: none;
                filter: drop-shadow(0 12px 40px rgba(255,31,142,.35));
            }
            .hero-logo-right::before,
            .hero-logo-right::after { animation: none; opacity: 0; }
        }

        /* ═══════════════════════════════════
           LOGO DISPLAY – múltiples secciones
        ═══════════════════════════════════ */
        .logo-display {
            display: inline-flex; align-items: center; gap: .6rem;
            background: white; border-radius: 50px;
            padding: .55rem 1.4rem .55rem .9rem;
            box-shadow: 0 6px 28px rgba(255,31,142,.22);
            margin-bottom: 1.4rem;
        }
        .logo-display .logo { font-size: 1.45rem; }
        .logo-display .logo-bird { font-size: 1.5rem; }

        /* Logo invertido (sobre fondo oscuro) – sin fondo, el PNG ya es transparente */
        .logo-display.dark {
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        /* Badge de marca en sección galería */
        .gal-brand {
            display: flex; align-items: center; gap: .7rem;
            justify-content: center; margin-bottom: 1rem;
        }
        .gal-brand .logo { font-size: 1.2rem; color: rgba(255,255,255,.6); }

        /* Nosotros: logo badge sobre imagen */
        .nos-logo-badge {
            position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
            background: white; border-radius: 50px;
            padding: .6rem 1.6rem; z-index: 3;
            box-shadow: 0 8px 28px rgba(255,31,142,.25);
            white-space: nowrap;
        }
        .nos-logo-badge .logo { font-size: 1.3rem; }

        /* ═══════════════════════════════════
           VIDEO DESTACADO
        ═══════════════════════════════════ */
        .vid-featured-wrap {
            max-width: 360px;
            margin: 0 auto 2.8rem;
        }
        .vid-featured {
            border-radius: 22px; overflow: hidden;
            background: var(--dark);
            box-shadow: 0 16px 50px rgba(255,31,142,.3);
            cursor: pointer;
            transition: transform .3s, box-shadow .3s;
            position: relative;
        }
        .vid-featured:hover { transform: translateY(-6px); box-shadow: 0 26px 65px rgba(255,31,142,.4); }
        .vid-featured .vid-thumb { aspect-ratio: 9 / 16; overflow: hidden; background: #0D2218; }
        .vid-featured .vid-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
        .vid-featured-tag {
            position: absolute; top: 1rem; left: 1rem;
            background: var(--grad); color: white;
            padding: .28rem .9rem; border-radius: 50px;
            font-size: .72rem; font-weight: 900; letter-spacing: 1.5px;
            text-transform: uppercase; z-index: 2;
        }

        @media (max-width: 768px) {
            .vid-featured-wrap { max-width: 100%; }
        }

        /* ═══════════════════════════════════
           BOTÓN VER MENÚ PDF – destacado
        ═══════════════════════════════════ */
        .pdf-cta-wrap {
            margin-top: 2.2rem;
            display: flex; flex-direction: column; align-items: center; gap: .7rem;
        }
        .pdf-cta-label {
            font-size: .88rem; font-weight: 800; letter-spacing: .5px;
            color: var(--pink); text-transform: uppercase;
        }
        .pdf-menu-btn {
            display: inline-flex; align-items: center; gap: 1rem;
            background: #FF1F8E;
            color: white; border: none; cursor: pointer;
            padding: 1.1rem 2.2rem 1.1rem 1.4rem; border-radius: 60px;
            font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.1rem;
            box-shadow: 0 10px 35px rgba(255,31,142,.45), 0 0 0 0 rgba(255,31,142,.3);
            animation: pdfPulse 2.6s ease-in-out infinite;
            transition: background .25s, transform .25s, box-shadow .25s;
        }
        @keyframes pdfPulse {
            0%,100% { box-shadow: 0 10px 35px rgba(255,31,142,.45), 0 0 0 0 rgba(255,31,142,.25); }
            50%      { box-shadow: 0 10px 35px rgba(255,31,142,.55), 0 0 0 12px rgba(255,31,142,.0); }
        }
        .pdf-menu-btn:hover {
            transform: translateY(-4px);
            background: #E0177A;
            box-shadow: 0 10px 32px rgba(255,31,142,.55);
            animation: none;
        }
        .pdf-btn-icon {
            background: rgba(255,255,255,.2); border-radius: 50%;
            width: 46px; height: 46px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem;
        }
        .pdf-btn-text {
            display: flex; flex-direction: column; gap: .15rem; text-align: left;
        }
        .pdf-btn-text strong { font-size: 1.05rem; line-height: 1.2; }
        .pdf-btn-text small  { font-size: .78rem; font-weight: 600; opacity: .85; }
        .pdf-menu-arrow {
            background: rgba(255,255,255,.22); border-radius: 50%;
            width: 32px; height: 32px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: .8rem; margin-left: .3rem;
        }

        /* ═══════════════════════════════════
           MODAL MENÚ PDF
        ═══════════════════════════════════ */
        .pdf-lightbox {
            position: fixed; inset: 0; z-index: 2002;
            background: rgba(0,0,0,.88);
            display: flex; align-items: center; justify-content: center;
            padding: 1rem;
            opacity: 0; pointer-events: none;
            transition: opacity .3s;
        }
        .pdf-lightbox.open { opacity: 1; pointer-events: all; }

        .pdf-lb-inner {
            width: 100%; max-width: 880px;
            height: min(90vh, 880px);
            display: flex; flex-direction: column;
            border-radius: 22px; overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,.6);
        }
        .pdf-lb-header {
            background: var(--dark);
            padding: .85rem 1.4rem;
            display: flex; align-items: center; gap: .75rem;
            flex-shrink: 0;
        }
        .pdf-lb-title {
            flex: 1; color: rgba(255,255,255,.65);
            font-size: .9rem; font-weight: 700;
        }
        .pdf-lb-close {
            background: rgba(255,255,255,.1); border: none; color: white;
            width: 36px; height: 36px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: .95rem;
            transition: background .2s;
        }
        .pdf-lb-close:hover { background: var(--pink); }

        #pdfFrame {
            flex: 1; border: none; width: 100%;
            background: #f5f5f5;
        }

        .pdf-lb-footer {
            background: var(--dark); padding: .85rem 1.4rem;
            display: flex; gap: .8rem; justify-content: flex-end;
            flex-shrink: 0; flex-wrap: wrap;
        }
        .pdf-lb-download, .pdf-lb-wa {
            display: inline-flex; align-items: center; gap: .5rem;
            padding: .6rem 1.3rem; border-radius: 50px;
            font-family: 'Nunito', sans-serif; font-weight: 900; font-size: .88rem;
            text-decoration: none; transition: opacity .2s, transform .2s;
        }
        .pdf-lb-download { background: rgba(255,255,255,.12); color: white; }
        .pdf-lb-wa       { background: linear-gradient(135deg,#25D366,#128C7E); color: white; }
        .pdf-lb-download:hover, .pdf-lb-wa:hover { opacity: .88; transform: translateY(-2px); }

        @media (max-width: 768px) {
            .pdf-lb-inner { height: 92vh; border-radius: 16px; }
            .pdf-btn-text small { display: none; }
            .pdf-menu-btn { padding: 1rem 1.6rem 1rem 1.2rem; font-size: 1rem; }
        }
