/* ============================================================
   LUXURIAS SEX SHOP — Design System v3.0
   Premium dark theme · Conversion-optimized · SEO-friendly
   ============================================================ */

:root {
  /* Core palette */
  --bg: #080011;
  --surface: #0f0a1a;
  --surface-2: #150d24;
  --surface-3: #1c1230;

  /* Brand */
  --primary: #d946ef;
  --primary-soft: #f0abfc;
  --primary-glow: rgba(217,70,239,.45);
  --accent: #a855f7;
  --accent-glow: rgba(168,85,247,.35);
  --gold: #d4a853;
  --gold-soft: #f0d48a;

  /* Semantic */
  --success: #22c55e;
  --success-glow: rgba(34,197,94,.4);
  --danger: #ef4444;

  /* Text */
  --text: #faf5ff;
  --text-secondary: #c4b5d8;
  --text-muted: #9280ab;

  /* Borders & Surfaces */
  --border: rgba(255,255,255,.07);
  --border-hover: rgba(217,70,239,.5);
  --glass: rgba(15,10,26,.82);
  --glass-border: rgba(255,255,255,.1);

  /* Spacing */
  --section-y: clamp(48px, 8vw, 80px);
  --container: 1180px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --duration: .25s;
  --duration-slow: .4s;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(125,178,255,.18), transparent 60%),
              radial-gradient(900px 500px at 100% 30%, rgba(43,228,167,.10), transparent 60%),
              var(--bg);
}

.app{max-width:1200px;margin:0 auto;padding:18px}

.header{display:flex;flex-direction:column;gap:4px;margin-bottom:14px}
.header__title{font-weight:700;letter-spacing:.2px;font-size:18px}
.header__subtitle{color:var(--muted);font-size:13px}

.main{display:grid;grid-template-columns: 1.2fr .8fr; gap:14px}

.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 38%),
              var(--panel);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  min-height:560px;
}
.panel--right{background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 38%), var(--panel2)}

.panel__row{margin-bottom:14px}
.label{font-size:12px;color:var(--muted);margin-bottom:6px}

.search{position:relative}
.search__input{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
.search__input:focus{border-color: rgba(125,178,255,.6); box-shadow: 0 0 0 3px rgba(125,178,255,.18)}

.suggestions{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  right:0;
  background: rgba(15,26,46,.98);
  border:1px solid var(--border);
  border-radius:10px;
  overflow:hidden;
  z-index:10;
}
.suggestions__item{
  padding:10px 12px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}
.suggestions__item:hover{background: rgba(125,178,255,.12)}
.suggestions__item .pill{
  font-size:11px;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
}

.mapWrap{display:flex;flex-direction:column;gap:10px}
.map{
  width:100%;
  aspect-ratio: 4/3;
  min-height:320px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  overflow:hidden;
}
.mapHint{font-size:12px;color:var(--muted)}

.selectedName{font-weight:650;font-size:16px}

.card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px;
  margin-bottom:12px;
}
.card__title{font-size:12px;color:var(--muted);margin-bottom:8px}
.card__label{font-size:12px;color:var(--muted);margin-top:10px}
.card__value{font-size:18px;font-weight:700}
.card__valueSmall{font-size:13px;color:var(--text);line-height:1.35}

.grid2{display:grid;grid-template-columns: 1fr 1fr; gap:10px}

.delivery{font-size:13px;line-height:1.45;color:var(--text)}
.delivery .delivery__item{padding:10px 10px;border:1px solid var(--border);border-radius:10px;margin-top:10px}
.delivery .delivery__title{font-weight:700}
.delivery .delivery__meta{color:var(--muted);font-size:12px;margin-top:4px}

.footerNote{color:var(--muted);font-size:11px;line-height:1.3}

/* SVG styling */
.svgMap{width:100%;height:100%}
.svgMap .bairro{
  fill: rgba(231,238,252,.06);
  stroke: rgba(231,238,252,.20);
  stroke-width: 1;
  cursor: pointer;
}
.svgMap .bairro:hover{fill: rgba(125,178,255,.20)}
.svgMap .bairro.is-selected{fill: rgba(43,228,167,.22); stroke: rgba(43,228,167,.75); stroke-width: 1.4}
.svgMap .cidade{fill: rgba(255,207,90,.10); stroke: rgba(255,207,90,.45)}

.svgMap text.cidade{
  fill: rgba(231,238,252,.92);
  cursor: pointer;
  user-select: none;
}
.svgMap text.cidade:hover{fill: rgba(125,178,255,.95)}
.svgMap text.cidade.is-selected{fill: rgba(43,228,167,.95)}

@media (max-width: 980px){
  .main{grid-template-columns:1fr}
  .panel{min-height:auto}
}

        :root {
            --bg-main: #050008;
            --bg-secondary: #120016;
            --rosa-neon: #ff2fd0;
            --rosa-neon-soft: #ff66e1;
            --vermelho: #ff1744;
            --vermelho-dark: #c51139;
            --roxo: #4b1c71;
            --text-main: #fdf5ff;
            --text-muted: #bda9d9;
            --card-bg: #130017;
            --card-border: rgba(255, 255, 255, 0.06);
            --glow-soft: 0 0 18px rgba(255, 47, 208, 0.55);
            --radius-lg: 18px;
            --radius-md: 14px;
            --radius-sm: 10px;
            --transition-fast: 0.18s ease-out;
            --transition-mid: 0.25s ease-out;
        }

        * {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background-color: #050008;
            position: relative;
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        body {
            margin: 0;
            font-family: 'Montserrat', Arial, sans-serif;
            color: var(--text);
            background-color: #0f0714;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image: url('../assets/img/capa.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center 20%;
            filter: blur(3px) saturate(1.08) hue-rotate(10deg) brightness(0.74);
            transform: scale(1.03);
            z-index: 0;
            pointer-events: none;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background:
                radial-gradient(circle at 18% 12%, rgba(182, 108, 255, 0.2) 0%, rgba(182, 108, 255, 0.08) 42%, transparent 70%),
                radial-gradient(circle at 80% 18%, rgba(152, 96, 255, 0.18) 0%, rgba(152, 96, 255, 0.07) 44%, transparent 70%),
                radial-gradient(circle at 50% 85%, rgba(114, 66, 212, 0.18) 0%, rgba(114, 66, 212, 0.07) 40%, transparent 72%),
                linear-gradient(180deg, rgba(33, 14, 54, 0.56) 0%, rgba(28, 10, 46, 0.66) 62%, rgba(20, 7, 34, 0.78) 100%);
            z-index: 1;
            pointer-events: none;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .page-shell {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
        }

        .max-width {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Topbar simples com logo + CTA loja oficial */
        .topbar {
            position: sticky;
            top: 0;
            z-index: 40;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: linear-gradient(90deg, rgba(5, 0, 8, 0.96), rgba(12, 0, 24, 0.96));
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            gap: 16px;
        }

        .topbar-logo-wrap {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .topbar-logo {
            height: 40px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
        }

        .topbar-badge {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 4px 8px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(255, 47, 208, 0.32), transparent 70%);
            border: 1px solid rgba(255, 255, 255, 0.22);
            color: var(--rosa-neon-soft);
            white-space: nowrap;
        }

        /* Menu de categorias da campanha */
        .main-menu-shell {
            background: transparent;
            padding-top: 8px;
        }

        .main-menu {
            max-width: 1180px;
            margin: 0 auto;
            padding: 4px 16px 8px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
        }

        .main-menu-caption {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--text-muted);
            margin: 0 0 6px;
            text-align: center;
        }

        .main-menu-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 16px;
            white-space: nowrap;
            justify-content: flex-start;
        }

        .main-menu-list li a {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 6px;
            padding: 6px 2px 4px;
            border-radius: 14px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #fdf5ff;
            text-decoration: none;
            min-width: 84px;
            transition: transform var(--transition-fast), filter var(--transition-fast);
            scroll-snap-align: center;
        }

        .main-menu-icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 2px solid rgba(255, 47, 208, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            background:
                radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.08), transparent 55%),
                radial-gradient(circle at 50% 120%, rgba(255, 47, 208, 0.35), transparent 60%),
                #050008;
            box-shadow: none;
            filter: drop-shadow(0 0 8px rgba(255, 47, 208, 0.55));
        }

        .main-menu-icon {
            width: 30px;
            height: 30px;
            color: #ffe4ff;
        }

        .main-menu-label {
            font-size: 0.66rem;
            text-align: center;
            max-width: 80px;
            word-spacing: 0.2em;
        }

        .main-menu-list li a:hover .main-menu-icon-wrap {
            filter: drop-shadow(0 0 14px rgba(255, 47, 208, 0.95));
            transform: translateY(-1px) scale(1.03);
        }

        @media (min-width: 900px) {
            .main-menu {
                max-width: none;
                margin: 0;
                padding-top: 8px;
                padding-bottom: 12px;
                padding-left: 32px;
                padding-right: 32px;
                overflow-x: visible;
            }

            .main-menu-list {
                width: 100%;
                justify-content: space-between;
                gap: 24px;
            }

            .main-menu-list li {
                flex: 1;
                display: flex;
                justify-content: center;
            }

            .main-menu-list li a {
                min-width: 0;
            }
        }

        @media (max-width: 899px) {
            html,
            body {
                max-width: 100%;
                overflow-x: hidden;
            }

            .page-wrapper,
            .main-menu-shell {
                max-width: 100vw;
                overflow-x: hidden;
            }

            .main-menu {
                max-width: 100vw;
                margin: 0;
                padding-left: 12px;
                padding-right: 12px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
        }

        .topbar-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .topbar-tagline {
            font-size: 0.72rem;
            color: var(--text-muted);
            display: none;
        }

        @media (min-width: 768px) {
            .topbar-tagline {
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }
        }

        @media (max-width: 767px) {
            .topbar-badge,
            .topbar-tagline {
                display: none !important;
            }
        }

        .btn-outline {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            background: radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.25), transparent 60%);
            color: #fff;
            padding: 7px 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
        }

        .btn-outline:hover {
            border-color: var(--rosa-neon);
            box-shadow: 0 0 22px rgba(255, 47, 208, 0.4);
            transform: translateY(-1px);
        }

        .btn-outline span.icon-arrow {
            display: inline-block;
            transform: translateX(0);
            transition: transform var(--transition-fast);
        }

        .btn-outline:hover span.icon-arrow {
            transform: translateX(3px);
        }

        /* Barra de busca na topbar */
        .topbar-search-form {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.38);
            background:
                radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.28), transparent 65%),
                rgba(9, 0, 18, 0.9);
            padding: 6px 12px;
            gap: 6px;
        }

        .topbar-search-form input[type="search"] {
            background: transparent;
            border: 0;
            outline: none;
            color: #fff;
            font-size: 0.78rem;
            min-width: 220px;
        }

        .topbar-search-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .topbar-search-btn {
            border: 0;
            background: transparent;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            cursor: pointer;
        }

        .topbar-search-icon {
            width: 16px;
            height: 16px;
        }

        /* Botões flutuantes de redes sociais */
        .whatsapp-float {
            position: fixed;
            bottom: 18px;
            right: 16px;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 20%, #25d366 0, #128c7e 55%, #075e54 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow:
                0 0 16px rgba(37, 211, 102, 0.75),
                0 10px 24px rgba(0, 0, 0, 0.55);
            filter: drop-shadow(0 0 10px rgba(182, 22, 255, 0.55));
            z-index: 60;
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
            animation: pulseGlow 2.4s ease-in-out infinite;
        }

        .whatsapp-float:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow:
                0 0 22px rgba(37, 211, 102, 0.9),
                0 14px 30px rgba(0, 0, 0, 0.7);
        }

        .icon-whatsapp {
            font-size: 1.6rem;
        }

        .instagram-float {
            position: fixed;
            bottom: 82px;
            right: 16px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 10%, #fdf497 0, #fd5949 40%, #d6249f 70%, #285AEB 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow:
                0 0 16px rgba(214, 36, 159, 0.8),
                0 10px 22px rgba(0, 0, 0, 0.5);
            filter: drop-shadow(0 0 10px rgba(182, 22, 255, 0.55));
            z-index: 59;
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
            animation: pulseGlow 2.6s ease-in-out infinite;
        }

        .instagram-float:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow:
                0 0 22px rgba(214, 36, 159, 0.95),
                0 14px 28px rgba(0, 0, 0, 0.7);
        }

        .icon-instagram-float {
            width: 22px;
            height: 22px;
        }

        @keyframes pulseGlow {
            0% {
                transform: translateY(0) scale(1);
                box-shadow: 0 0 10px rgba(255, 47, 208, 0.45), 0 8px 20px rgba(0, 0, 0, 0.55);
            }
            50% {
                transform: translateY(-1px) scale(1.05);
                box-shadow: 0 0 22px rgba(255, 47, 208, 0.9), 0 12px 26px rgba(0, 0, 0, 0.75);
            }
            100% {
                transform: translateY(0) scale(1);
                box-shadow: 0 0 10px rgba(255, 47, 208, 0.45), 0 8px 20px rgba(0, 0, 0, 0.55);
            }
        }

        /* HERO – CAMPANHA */
        .hero {
            padding: 32px 0 22px;
            position: relative;
            overflow: hidden;
        }

        /* Imagem de fundo da index em P&B atrás da máscara vermelha */
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('../assets/img/capa.jpg');
            background-size: cover;
            background-position: center 20%;
            background-repeat: no-repeat;
            transform: scale(1.06);
            filter: blur(8px) saturate(1.05);
            will-change: transform, filter;
            opacity: 1;
            z-index: 0;
            pointer-events: none;
            display: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 18%, rgba(182, 22, 255, 0.22) 0%, rgba(182, 22, 255, 0.0) 62%),
                radial-gradient(circle at 85% 18%, rgba(182, 22, 255, 0.2) 0%, rgba(182, 22, 255, 0.0) 62%),
                radial-gradient(circle at 50% 45%, rgba(182, 22, 255, 0.12) 0%, rgba(182, 22, 255, 0.0) 70%),
                radial-gradient(ellipse at center, rgba(0, 0, 0, 0.0) 32%, rgba(20, 0, 32, 0.58) 100%),
                linear-gradient(180deg, rgba(20, 0, 32, 0.22) 0%, rgba(20, 0, 32, 0.26) 55%, rgba(5, 0, 8, 0.9) 100%);
            z-index: 0;
            pointer-events: none;
            display: none;
        }

        @media (min-width: 768px) {
            .hero {
                padding: 40px 0 34px;
            }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1240px;
            margin: 0 auto;
            text-align: left;
            padding: 10px 0 0;
        }

        .hero-layout {
            display: block;
        }

        .hero-social-proof {
            display: none;
        }

        @media (max-width: 991.98px) {
            .hero-social-proof {
                display: none !important;
            }
        }

        .hero-title {
            margin-bottom: 12px;
            font-size: clamp(2.25rem, 3.9vw, 3.15rem);
            font-weight: 700;
            line-height: 1.03;
        }

        .hero-subtitle {
            margin-left: auto;
            margin-right: auto;
            max-width: 760px;
            color: rgba(255, 255, 255, 0.92);
            text-shadow: 0 2px 18px rgba(182, 22, 255, 0.28);
            font-weight: 400;
            line-height: 1.55;
        }

        .hero-ctas {
            justify-content: center;
        }

        .hero-buttons {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            width: 100%;
            max-width: 520px;
            margin: 18px auto 22px;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.1;
            padding: 16px 22px;
            border-radius: 999px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-size: 0.86rem;
            min-height: 54px;
            transition: transform var(--transition-mid), filter var(--transition-mid), box-shadow var(--transition-mid), border-color var(--transition-mid), background-color var(--transition-mid);
            will-change: transform;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

        .hero-btn-text {
            display: inline-block;
            text-align: center;
            width: 100%;
            white-space: normal;
        }

        .hero-btn--primary {
            background: linear-gradient(135deg, #1f8f5a, #2fcf7a);
            color: #fff;
            border: 0;
            box-shadow: 0 0 22px rgba(47, 207, 122, 0.28), 0 12px 26px rgba(0, 0, 0, 0.58);
        }

        .hero-btn--primary:hover {
            filter: brightness(1.08);
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 0 30px rgba(47, 207, 122, 0.42), 0 18px 34px rgba(0, 0, 0, 0.72);
        }

        .hero-btn--secondary {
            background: linear-gradient(135deg, #b616ff, #ff2fd0);
            color: #fff;
            border: 0;
            box-shadow: 0 0 22px rgba(182, 22, 255, 0.6), 0 12px 26px rgba(0, 0, 0, 0.65);
            text-align: center;
        }

        .hero-btn--secondary:hover {
            filter: brightness(1.08);
            box-shadow: 0 0 30px rgba(182, 22, 255, 0.95), 0 18px 34px rgba(0, 0, 0, 0.78);
            transform: translateY(-1px) scale(1.02);
        }

        .hero-benefits {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            max-width: none;
            margin: 0;
        }

        .hero-benefits--phrases {
            margin-top: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12px 0 10px;
        }

        .hero-benefits--phrases .hero-buttons {
            width: min(92vw, 720px);
            max-width: 720px;
            margin: 12px auto 0;
            align-self: center;
        }

        .hero-benefit-card {
            width: min(80vw, 430px);
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            position: relative;
            touch-action: manipulation;
        }

        .speech-city-strip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 62px;
            flex-wrap: wrap;
            gap: 0.2em 0.32em;
            width: min(88vw, 460px);
            margin: 0 0 -16px;
            padding: 11px 16px;
            border-radius: 16px;
            background: linear-gradient(165deg, #25211d, #181614);
            color: #fff;
            font-size: clamp(0.92rem, 3.2vw, 1.34rem);
            font-weight: 850;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            line-height: 1.1;
            transform: rotate(-5deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.42);
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .speech-city-strip .neon {
            display: inline-block;
            color: var(--rosa-neon-soft);
            text-shadow:
                0 0 6px rgba(255, 47, 208, 0.68),
                0 0 12px rgba(255, 47, 208, 0.7),
                0 0 22px rgba(255, 23, 68, 0.6);
            animation: neonPulse 2.8s ease-in-out infinite alternate;
        }

        .speech-main-panel {
            width: 100%;
            border-radius: 26px;
            background: linear-gradient(180deg, rgba(247, 245, 245, 0.98), rgba(232, 226, 226, 0.96));
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
            padding: clamp(30px, 8vw, 44px) 14px 16px;
        }

        .hero-benefit-title {
            margin: 0;
            font-size: clamp(1.3rem, 5vw, 2rem);
            line-height: 1.08;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #191716;
        }

        .hero-benefit-highlight {
            margin: 6px 0 0;
            font-size: clamp(1.5rem, 6.6vw, 2.45rem);
            line-height: 1;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #d10031;
        }

        .speech-divider {
            display: block;
            width: min(66%, 220px);
            height: 2px;
            background: rgba(38, 33, 33, 0.55);
            margin: 10px auto 10px;
        }

        .hero-benefit-text {
            margin: 0;
            font-size: clamp(0.9rem, 3.8vw, 1.1rem);
            line-height: 1.32;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(55, 49, 49, 0.88);
        }

        .hero-benefit-text--message {
            text-transform: none;
            letter-spacing: 0.01em;
            line-height: 1.45;
            font-size: clamp(0.9rem, 3.4vw, 1.02rem);
            max-width: 34ch;
            margin: 0 auto;
        }

        .hero-benefit-text--strong {
            margin-top: 6px;
            font-weight: 900;
            letter-spacing: 0.2em;
            color: rgba(41, 36, 36, 0.95);
        }

        @media (min-width: 900px) {
            .hero-content {
                padding-left: clamp(18px, 3.2vw, 52px);
            }

            .hero-benefits--phrases {
                align-items: flex-start;
                padding: 6px 0 0;
            }

            .hero-benefit-card {
                width: min(100%, 430px);
                margin: 0;
            }

            .hero-benefits--phrases .hero-buttons {
                width: min(100%, 430px);
                max-width: 430px;
                margin: 14px 0 0;
                align-self: flex-start;
            }

            .speech-main-panel {
                padding-bottom: 20px;
            }
        }

        @media (min-width: 992px) {
            .hero-layout {
                display: grid;
                grid-template-columns: minmax(0, 430px) minmax(250px, 1fr);
                align-items: center;
                gap: clamp(20px, 3.2vw, 56px);
            }

            .hero-social-proof {
                display: block;
                justify-self: start;
                width: 100%;
                max-width: 420px;
            }

            .trust-panel {
                padding: 18px 18px 16px;
                border-radius: 20px;
                border: 1px solid rgba(255, 255, 255, 0.2);
                background:
                    radial-gradient(circle at 10% 5%, rgba(182, 22, 255, 0.22), transparent 52%),
                    linear-gradient(155deg, rgba(36, 14, 45, 0.9), rgba(19, 8, 28, 0.9));
                box-shadow: 0 16px 30px rgba(5, 0, 8, 0.42);
            }

            .trust-title {
                margin: 0 0 12px;
                color: rgba(255, 244, 255, 0.96);
                font-size: 0.9rem;
                font-weight: 800;
                letter-spacing: 0.04em;
                text-transform: uppercase;
            }

            .trust-badges {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                margin-bottom: 12px;
            }

            .hero-social-badge {
                display: inline-flex;
                align-items: center;
                min-height: 36px;
                padding: 8px 14px;
                border-radius: 999px;
                border: 1px solid rgba(255, 255, 255, 0.24);
                background:
                    linear-gradient(145deg, rgba(43, 20, 55, 0.78), rgba(23, 10, 33, 0.76));
                box-shadow: 0 6px 14px rgba(5, 0, 8, 0.26);
                color: rgba(255, 255, 255, 0.94);
                font-size: 0.78rem;
                font-weight: 700;
                letter-spacing: 0.02em;
                white-space: nowrap;
            }

            .trust-steps {
                margin: 0;
                padding-left: 18px;
                color: rgba(255, 255, 255, 0.9);
                font-size: 0.84rem;
                line-height: 1.45;
            }

            .trust-steps li + li {
                margin-top: 4px;
            }

            .trust-foot {
                margin: 12px 0 0;
                font-size: 0.76rem;
                letter-spacing: 0.03em;
                color: rgba(240, 214, 255, 0.88);
                text-transform: uppercase;
            }
        }

        @media (min-width: 992px) {
            .hero-btn {
                font-size: 0.78rem;
                min-height: 52px;
            }

            .hero-btn-text {
                white-space: nowrap;
            }
        }

        @media (min-width: 900px) {
            .hero-buttons {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 900px) {
            .hero-grid {
                grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
                align-items: center;
                gap: 40px;
            }
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 10px 4px 4px;
            border-radius: 999px;
            background: radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.4), rgba(255, 23, 68, 0.45), transparent 70%);
            border: 1px solid rgba(255, 255, 255, 0.35);
            margin-bottom: 14px;
        }

        .hero-label-pill {
            padding: 3px 9px;
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--rosa-neon), var(--vermelho));
            box-shadow: var(--glow-soft);
        }

        .hero-label-text {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .hero-title {
            font-size: clamp(2rem, 3.3vw, 2.6rem);
            line-height: 1.05;
            text-transform: uppercase;
            margin: 0 0 10px;
            letter-spacing: 0.12em;
        }

        .hero-title span.neon {
            position: relative;
            display: inline-block;
            color: var(--rosa-neon-soft);
            text-shadow:
                0 0 8px rgba(255, 47, 208, 0.7),
                0 0 18px rgba(255, 47, 208, 0.75),
                0 0 32px rgba(255, 23, 68, 0.7);
            animation: neonPulse 2.8s ease-in-out infinite alternate;
        }

        .hero-subtitle {
            font-size: 1rem;
            max-width: 540px;
            color: var(--text-muted);
            margin-bottom: 14px;
        }

        .hero-bullets {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 14px 0 20px;
        }

        .hero-badge {
            font-size: 0.78rem;
            padding: 6px 10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.18), transparent 65%);
            color: #ffe9ff;
            white-space: nowrap;
        }

        .hero-copy-highlight {
            font-weight: 600;
            color: #ffe5f8;
            margin-bottom: 16px;
            font-size: 0.95rem;
        }

        .hero-copy-highlight span {
            color: var(--rosa-neon-soft);
        }

        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            margin-bottom: 16px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 13px 28px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 0.84rem;
            font-weight: 800;
            color: #fff7ff;
            background-image:
                radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.18) 0, transparent 55%),
                linear-gradient(135deg, #ff2fd0, #b616ff);
            box-shadow:
                0 0 18px rgba(255, 64, 187, 0.6),
                0 10px 22px rgba(0, 0, 0, 0.75);
            transition:
                transform var(--transition-mid),
                box-shadow var(--transition-mid),
                filter var(--transition-mid);
            white-space: nowrap;
        }

        .btn-primary:hover {
            transform: translateY(-1px) scale(1.03);
            filter: brightness(1.06);
            box-shadow:
                0 0 26px rgba(255, 64, 187, 0.95),
                0 18px 36px rgba(0, 0, 0, 0.9);
        }

        .btn-primary span.icon {
            display: inline-flex;
            transform: translateX(0);
            transition: transform var(--transition-mid);
        }

        .btn-primary:hover span.icon {
            transform: translateX(4px);
        }

        .btn-secondary-link {
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-secondary-link::after {
            content: "↗";
            font-size: 0.84rem;
            opacity: 0.85;
        }

        .hero-note {
            font-size: 0.78rem;
            color: var(--text-muted);
            max-width: 420px;
        }

        /* Hero visual – cartão com faixa */
        .hero-card-wrap {
            position: relative;
        }

        .hero-card {
            position: relative;
            border-radius: var(--radius-lg);
            padding: 18px 16px 16px;
            background:
                radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12), transparent 50%),
                linear-gradient(145deg, #130017, #1b001f);
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow:
                0 18px 42px rgba(0, 0, 0, 0.85),
                0 0 40px rgba(255, 47, 208, 0.35);
            overflow: hidden;
        }

        .hero-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(255, 47, 208, 0.18), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 23, 68, 0.35), transparent 55%);
            mix-blend-mode: screen;
            opacity: 0.7;
            pointer-events: none;
        }

        .hero-card-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hero-ribbon {
            position: absolute;
            inset: 0;
            transform: rotate(-18deg) translateY(-32%);
            transform-origin: center;
            pointer-events: none;
        }

        .hero-ribbon span {
            position: absolute;
            left: -20%;
            right: -20%;
            top: 12%;
            padding: 6px 24px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.28em;
            font-size: 0.7rem;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(90deg, #ff1744, #ff2fd0, #ff1744);
            box-shadow: 0 0 26px rgba(255, 23, 68, 0.8);
        }

        .hero-card-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--text-muted);
        }

        .hero-card-main {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #fff;
        }

        .hero-card-main span {
            color: var(--rosa-neon-soft);
        }

        .hero-card-sub {
            font-size: 0.85rem;
            color: var(--text-muted);
            max-width: 260px;
        }

        .hero-percent {
            margin-left: auto;
            text-align: right;
        }

        .hero-percent-big {
            font-size: 2.1rem;
            font-weight: 800;
            color: #fff;
            text-shadow:
                0 0 10px rgba(255, 23, 68, 0.9),
                0 0 24px rgba(255, 23, 68, 0.6);
        }

        .hero-percent-label {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--text-muted);
        }

        .hero-sec-row {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: flex-end;
        }

        .hero-mini-badges {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 0.75rem;
        }

        .badge-soft {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 9px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.18), transparent 60%);
            color: #ffe9ff;
        }

        .badge-soft-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--rosa-neon), rgba(255, 47, 208, 0.1));
            box-shadow: 0 0 10px rgba(255, 47, 208, 0.8);
        }

        /* Seção frases de impacto */
        .phrases-section {
            padding: 6px 0 24px;
            margin-top: 0;
            background: transparent;
        }

        .phrases-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 10px;
        }

        @media (min-width: 720px) {
            .phrases-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .phrases-grid > .hero-benefits--phrases {
            grid-column: 1 / -1;
            width: 100%;
        }

        .phrase-card {
            border-radius: 999px;
            padding: 10px 14px;
            border: 0;
            background: linear-gradient(135deg, rgba(75, 28, 113, 0.55), rgba(255, 47, 208, 0.35));
            font-size: 0.88rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
        }

        .phrase-pill {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 2px 7px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.9);
        }

        /* Produtos fictícios – cards clicáveis */
        .products-section {
            padding: 12px 0 30px;
            background: transparent;
        }

        .section-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
        }

        .section-title span {
            color: var(--rosa-neon-soft);
        }

        .section-subtitle {
            font-size: 0.78rem;
            color: var(--text-muted);
            max-width: 320px;
        }

        .categories-section {
            padding-top: 34px;
            padding-bottom: 36px;
        }

        .categories-hub {
            position: relative;
            display: block;
            margin: 0 auto;
            max-width: 1160px;
            padding: 20px 16px 18px;
            border-radius: 26px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background:
                linear-gradient(180deg, rgba(33, 12, 52, 0.72) 0%, rgba(24, 8, 39, 0.64) 100%),
                radial-gradient(circle at 8% 0, rgba(255, 47, 208, 0.14), transparent 34%);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.36);
            backdrop-filter: blur(6px);
        }

        .categories-hub .section-title {
            margin: 0;
            text-align: center;
            font-size: clamp(1.04rem, 2.4vw, 1.32rem);
            letter-spacing: 0.2em;
        }

        .categories-hub .main-menu-shell {
            margin-top: 14px;
            padding-top: 0;
        }

        .categories-hub .main-menu {
            padding: 6px 4px 4px;
        }

        .categories-hub .main-menu-list {
            gap: 10px;
        }

        .categories-hub .main-menu-list li a {
            min-width: 92px;
            padding: 9px 6px 8px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: linear-gradient(180deg, rgba(10, 3, 18, 0.42), rgba(10, 3, 18, 0.16));
        }

        .categories-hub .main-menu-icon-wrap {
            width: 60px;
            height: 60px;
            border-color: rgba(255, 47, 208, 0.78);
            filter: drop-shadow(0 0 10px rgba(255, 47, 208, 0.52));
        }

        .categories-hub .main-menu-label {
            font-size: 0.68rem;
            max-width: 88px;
            letter-spacing: 0.06em;
            color: rgba(255, 235, 255, 0.94);
        }

        @media (min-width: 900px) {
            .categories-section {
                padding-top: 46px;
                padding-bottom: 44px;
            }

            .categories-hub {
                padding: 24px 24px 20px;
            }

            .categories-hub .section-title {
                text-align: left;
            }

            .categories-hub .main-menu {
                padding: 10px 2px 4px;
            }

            .categories-hub .main-menu-list {
                display: grid;
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 14px 10px;
                justify-content: initial;
                white-space: normal;
            }

            .categories-hub .main-menu-list li {
                flex: initial;
                display: block;
            }

            .categories-hub .main-menu-list li a {
                width: 100%;
                min-width: 0;
            }
        }

        @media (max-width: 899px) {
            .categories-section {
                padding-top: 26px;
            }

            .categories-hub {
                margin-left: -4px;
                margin-right: -4px;
                padding: 16px 10px 12px;
                border-radius: 22px;
            }

            .categories-hub .main-menu {
                padding-left: 4px;
                padding-right: 4px;
            }

            .categories-hub .main-menu-list {
                gap: 8px;
            }
        }

        .stores-section .section-subtitle {
            max-width: none;
            white-space: nowrap;
        }

        /* Selos de Confiança – integrados ao rodapé */
        .footer-badges {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 10px;
            opacity: 0.85;
        }

        .footer-badges picture {
            display: inline-flex;
            align-items: center;
        }

        .footer-badge {
            height: 22px;
            width: auto;
            filter: saturate(0.9);
        }

        @media (max-width: 576px) {
            .footer-badge {
                height: 18px;
            }
        }

        /* Rodapé site-footer – adaptado do tema principal */
        .site-footer {
            background: #1f1033;
            color: #eae2ff;
            padding: 36px 15px 26px;
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.65);
        }

        .site-footer .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 16px;
        }

        .site-footer .footer-inner > div {
            position: relative;
            padding-left: 14px;
        }

        .site-footer .footer-inner > div:first-child {
            padding-left: 0;
        }

        .site-footer .footer-inner > div:not(:first-child) {
            border-left: 1px solid rgba(255, 255, 255, 0.12);
        }

        .site-footer h4 {
            color: #ffffff;
            margin: 0 0 10px;
            font-size: 1.05rem;
        }

        .site-footer p,
        .site-footer a {
            color: #cfc3f9;
            text-decoration: none;
            font-size: 0.92rem;
        }

        .site-footer a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-branding {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .footer-copy {
            border-top: 1px solid #3a2958;
            margin-top: 16px;
            padding-top: 12px;
            text-align: center;
            color: #b7a7e6;
            font-size: 0.92rem;
        }

        .footer-center {
            max-width: 1200px;
            margin: 14px auto 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .footer-center .footer-logo-center {
            width: 140px;
            height: auto;
            display: inline-block;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social.center {
            justify-content: center;
        }

        .footer-social a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.08);
            color: #eae2ff;
            transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, var(--rosa-neon), var(--vermelho));
            color: #050008;
            transform: translateY(-1px);
        }

        @media (max-width: 992px) {
            .site-footer .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 576px) {
            .site-footer {
                padding: 20px 12px 18px;
            }

            .site-footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .site-footer .footer-inner > div {
                padding-left: 0;
            }

            .site-footer .footer-inner > div:not(:first-child) {
                border-left: 0;
            }

            .site-footer h4 {
                font-size: 1rem;
                margin: 6px 0 8px;
            }

            .site-footer p,
            .site-footer a {
                font-size: 0.9rem;
                line-height: 1.55;
            }

            .footer-social {
                gap: 8px;
            }

            .footer-social a {
                width: 32px;
                height: 32px;
            }

            .footer-center {
                margin-top: 12px;
            }
        }

        .products-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 14px;
        }

        /* Faixa ornamental de Novidades (inspirada na seção da index) */
        .novidades-ornamental {
            margin-top: 14px;
            padding: 12px 12px 10px;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.12);
            background:
                radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.16), transparent 60%),
                radial-gradient(circle at 100% 0, rgba(255, 23, 68, 0.16), transparent 60%),
                linear-gradient(135deg, rgba(10, 0, 18, 0.96), rgba(5, 0, 8, 0.96));
        }

        .novidades-ornamental-head {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 8px;
        }

        .novidades-ornamental-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
        }

        .novidades-ornamental-title span {
            color: var(--rosa-neon-soft);
        }

        .novidades-ornamental-sub {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .novidades-ornamental-strip {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 8px;
        }

        @media (min-width: 640px) {
            .novidades-ornamental-strip {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .novidades-pill-card {
            border-radius: var(--radius-sm);
            padding: 8px 10px;
            background: rgba(5, 0, 8, 0.88);
            border: 1px solid rgba(255, 255, 255, 0.18);
            display: flex;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            transition:
                transform var(--transition-fast),
                box-shadow var(--transition-fast),
                border-color var(--transition-fast),
                background var(--transition-fast);
        }

        .novidades-pill-card:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 47, 208, 0.7);
            box-shadow:
                0 12px 28px rgba(0, 0, 0, 0.9),
                0 0 20px rgba(255, 47, 208, 0.5);
            background:
                radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.2), transparent 55%),
                rgba(5, 0, 8, 0.95);
        }

        .novidades-pill-label {
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--text-muted);
        }

        .novidades-pill-main {
            font-size: 0.86rem;
            font-weight: 600;
        }

        .novidades-pill-cta {
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--rosa-neon-soft);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .novidades-pill-cta span.icon {
            transform: translateX(0);
            transition: transform var(--transition-fast);
        }

        .novidades-pill-card:hover .novidades-pill-cta span.icon {
            transform: translateX(3px);
        }

        /* Cards completos de Novidades (conteúdo da index adaptado para a campanha) */
        .novidades-grid-real {
            margin-top: 16px;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        @media (max-width: 480px) {
            .novidades-grid-real {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px;
            }
        }

        @media (min-width: 992px) {
            .novidades-grid-real {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        .nov-real-card {
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background:
                radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.18), transparent 60%),
                linear-gradient(135deg, #130017, #060008);
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.85);
            display: flex;
            flex-direction: column;
            height: 100%;
            transition:
                transform var(--transition-mid),
                box-shadow var(--transition-mid),
                border-color var(--transition-mid);
            will-change: transform, box-shadow;
            transform: translateZ(0);
            content-visibility: auto;
            contain-intrinsic-size: 420px;
        }

        .nov-real-card:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 47, 208, 0.7);
            box-shadow:
                0 18px 40px rgba(0, 0, 0, 0.95),
                0 0 24px rgba(255, 47, 208, 0.55);
        }

        .nov-real-img-wrap {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.16), transparent 55%),
                #050008;
            height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
            contain: paint;
        }

        .nov-real-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            will-change: opacity;
        }

        .nov-real-img.primary {
            position: absolute;
            inset: 0;
            z-index: 1;
            opacity: 1;
            transition: opacity 0.25s ease;
        }

        .nov-real-img.secondary {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .nov-real-img-wrap:hover .nov-real-img.primary {
            opacity: 0;
        }

        .nov-real-img-wrap:hover .nov-real-img.secondary {
            opacity: 1;
        }

        .nov-real-body {
            padding: 8px 10px 10px;
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
        }

        .nov-real-title {
            font-size: 0.82rem;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .nov-real-stars-row {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            color: #ffdd75;
            margin-bottom: 6px;
        }

        .nov-real-stars {
            letter-spacing: 0.08em;
        }

        .nov-real-rating-count {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .nov-real-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 8px;
            flex: 1 1 auto;
        }

        @media (max-width: 768px) {
            .nov-real-desc {
                display: -webkit-box;
                -webkit-line-clamp: 3;
                line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                line-height: 1.4;
                max-height: calc(1.4em * 3);
            }

            .nov-real-price {
                white-space: nowrap;
            }
        }

        .nov-real-price {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
        }

        .nov-real-price span.price-old {
            font-size: 0.78rem;
            text-decoration: line-through;
            color: var(--text-muted);
            margin-right: 6px;
        }

        .nov-real-footer {
            padding: 8px 10px 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .nov-real-pill {
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: transparent;
            position: relative;
            text-align: center;
            white-space: nowrap;
        }

        .nov-real-pill::after {
            content: "Entrega rápida e discreta";
            display: block;
            text-align: center;
            color: var(--text-muted);
        }

        @media (max-width: 480px) {
            .nov-real-pill {
                font-size: 0.55rem;
                white-space: normal;
            }
        }

        .nov-real-wa {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 6px 10px;
            border-radius: 999px;
            border: 1px solid rgba(37, 211, 102, 0.8);
            color: #b9ffcf;
            background: radial-gradient(circle at 0 0, rgba(37, 211, 102, 0.18), transparent 60%);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .nov-real-wa::before {
            content: "";
            width: 14px;
            height: 14px;
            background-color: currentColor;
            -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.52 3.48A11.94 11.94 0 0 0 12.01 0C5.4 0 .06 5.34.06 11.95c0 2.11.56 4.17 1.63 5.98L0 24l6.22-1.63a11.93 11.93 0 0 0 5.78 1.49h.01c6.61 0 11.95-5.34 11.95-11.95a11.9 11.9 0 0 0-3.44-8.43ZM12 21.5a9.5 9.5 0 0 1-4.84-1.32l-.35-.2-3.69.97.99-3.6-.22-.37A9.48 9.48 0 1 1 12 21.5Zm5.44-7.1c-.3-.15-1.77-.87-2.04-.97-.27-.1-.46-.15-.66.15-.2.3-.76.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.47-.88-.78-1.48-1.73-1.66-2.03-.17-.3-.02-.47.13-.62.13-.13.3-.35.44-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.66-1.6-.9-2.2-.24-.57-.48-.5-.66-.5l-.56-.01c-.20 0-.52.07-.8.37-.27.3-1.05 1.03-1.05 2.5s1.08 2.9 1.23 3.1c.15.2 2.13 3.24 5.16 4.54.72.31 1.28.49 1.72.63.72.23 1.37.2 1.88.12.57-.08 1.77-.72 2.02-1.42.25-.7.25-1.32.17-1.45-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.52 3.48A11.94 11.94 0 0 0 12.01 0C5.4 0 .06 5.34.06 11.95c0 2.11.56 4.17 1.63 5.98L0 24l6.22-1.63a11.93 11.93 0 0 0 5.78 1.49h.01c6.61 0 11.95-5.34 11.95-11.95a11.9 11.9 0 0 0-3.44-8.43ZM12 21.5a9.5 9.5 0 0 1-4.84-1.32l-.35-.2-3.69.97.99-3.6-.22-.37A9.48 9.48 0 1 1 12 21.5Zm5.44-7.1c-.3-.15-1.77-.87-2.04-.97-.27-.1-.46-.15-.66.15-.2.3-.76.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.47-.88-.78-1.48-1.73-1.66-2.03-.17-.3-.02-.47.13-.62.13-.13.3-.35.44-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.66-1.6-.9-2.2-.24-.57-.48-.5-.66-.5l-.56-.01c-.2 0-.52.07-.8.37-.27.3-1.05 1.03-1.05 2.5s1.08 2.9 1.23 3.1c.15.2 2.13 3.24 5.16 4.54.72.31 1.28.49 1.72.63.72.23 1.37.2 1.88.12.57-.08 1.77-.72 2.02-1.42.25-.7.25-1.32.17-1.45-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
        }

        .nov-real-cta {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 7px 14px;
            border-radius: 999px;
            background:
                radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18), transparent 55%),
                linear-gradient(135deg, var(--rosa-neon), var(--vermelho));
            color: #050008;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
            position: relative;
            padding-left: 28px;
        }

        .nov-real-cta::before {
            content: "";
            position: absolute;
            left: 8px;
            top: 50%;
            width: 14px;
            height: 14px;
            transform: translateY(-50%);
            background-color: currentColor;
            -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2S15.9 22 17 22s2-.9 2-2-.9-2-2-2zM7.17 14h9.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1 1 0 0 0 21 5H6.21l-.94-2H2v2h2l3.6 7.59-1.35 2.44C5.52 15.37 6.19 16 7 16h12v-2H7.42l.75-1.35z'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2S15.9 22 17 22s2-.9 2-2-.9-2-2-2zM7.17 14h9.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1 1 0 0 0 21 5H6.21l-.94-2H2v2h2l3.6 7.59-1.35 2.44C5.52 15.37 6.19 16 7 16h12v-2H7.42l.75-1.35z'/%3E%3C/svg%3E") center / contain no-repeat;
        }

        .nov-real-cta span.icon {
            display: none;
        }

        /* ==========================
           Lojas físicas (vídeo + mapa)
           ========================== */

        .stores-section {
            padding: 32px 16px 28px;
            background: transparent;
        }

        .stores-container {
            max-width: 1120px;
            margin: 0 auto;
            background: rgba(15, 0, 24, 0.96);
            border-radius: 24px;
            padding: 26px 18px 24px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .stores-section .section-title {
            text-align: center;
        }

        .stores-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 18px;
        }

        @media (min-width: 900px) {
            .stores-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .store-card {
            background: #12001c;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-direction: column;
        }

        .store-head {
            padding: 10px 16px 6px;
            background: radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.24), transparent 55%);
        }

        .store-head h3 {
            font-size: 0.96rem;
            font-weight: 700;
        }

        .store-media {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
        }

        @media (min-width: 720px) {
            .store-media {
                grid-template-columns: 1.05fr 1.05fr;
            }
        }

        .store-video,
        .store-map {
            position: relative;
            overflow: hidden;
            background: #000;
        }

        .store-video iframe,
        .store-map iframe {
            display: block;
            width: 100%;
            height: 220px;
            border: 0;
        }

        .store-foot {
            padding: 10px 14px 12px;
            background: #26003b;
            color: #f4f0ff;
            font-size: 0.82rem;
            text-align: center;
        }

        /* ==========================
           Opções de entrega
           ========================== */

        .delivery-section {
            padding: 52px 20px 80px;
            background: linear-gradient(180deg, #060013, #0d001c, #050013);
            text-align: center;
            color: #fff;
            font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .delivery-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .delivery-subtitle {
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 16px;
            opacity: 0.9;
        }

        .delivery-subtitle .delivery-city {
            color: #ff32b8;
            font-weight: 600;
        }

        .delivery-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .delivery-card {
            background: #120024;
            border-radius: 18px;
            padding: 35px 30px;
            width: 300px;
            border: 2px solid rgba(189, 0, 255, 0.75);
            box-shadow: 0 0 20px rgba(189, 0, 255, 0.75);
            transition: 0.3s ease;
        }

        .delivery-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 30px rgba(216, 90, 255, 0.9);
        }

        .neon-icon {
            font-size: 55px;
            margin-bottom: 15px;
        }

        .neon-icon img,
        .neon-icon svg {
            width: 64px;
            height: auto;
            display: block;
            margin: 0 auto;
            filter: drop-shadow(0 0 14px rgba(216, 90, 255, 0.95));
        }

        .card-label {
            font-size: 15px;
            color: #f542ff;
            letter-spacing: 1.3px;
            margin-bottom: 8px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .card-time {
            display: inline-block;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 15px;
            color: #ffd6ff;
            line-height: 1.25;
            letter-spacing: 0.04em;
            font-stretch: condensed;
            transform: scaleY(1.08);
            transform-origin: center;
        }

        .card-time-prefix {
            display: block;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.08em;
            font-stretch: normal;
            transform: none;
            margin-bottom: 4px;
        }

        .card-text {
            font-size: 14px;
            opacity: 0.85;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .card-price {
            font-size: 15px;
            font-weight: 600;
            color: #f542ff;
        }

        @media (min-width: 640px) {
            .products-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .product-card {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--card-border);
            background: linear-gradient(145deg, var(--card-bg), #1c001f);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            transition:
                transform var(--transition-mid),
                box-shadow var(--transition-mid),
                border-color var(--transition-mid),
                background var(--transition-mid);
            will-change: transform, box-shadow;
            transform: translateZ(0);
            content-visibility: auto;
            contain-intrinsic-size: 420px;
        }

        .product-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.18), transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(255, 23, 68, 0.25), transparent 60%);
            opacity: 0;
            mix-blend-mode: screen;
            pointer-events: none;
            transition: opacity var(--transition-mid);
        }

        .product-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 47, 208, 0.6);
            box-shadow:
                0 18px 40px rgba(0, 0, 0, 0.9),
                0 0 26px rgba(255, 47, 208, 0.65);
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            padding: 4px 8px;
            border-radius: 999px;
            background: rgba(5, 0, 8, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.32);
            color: var(--rosa-neon-soft);
        }

        .product-img-area {
            padding: 18px 16px 10px;
            position: relative;
        }

        .product-illus {
            height: 120px;
            border-radius: 999px;
            border: 1px dashed rgba(255, 255, 255, 0.3);
            background:
                radial-gradient(circle at 15% 0, rgba(255, 255, 255, 0.16), transparent 60%),
                linear-gradient(135deg, #2d002e, #1c001f);
            position: relative;
            overflow: hidden;
        }

        .product-illus-glow {
            position: absolute;
            inset: 12px 20px;
            border-radius: 999px;
            background:
                radial-gradient(circle at 30% 0, rgba(255, 47, 208, 0.8), transparent 65%),
                radial-gradient(circle at 70% 100%, rgba(255, 23, 68, 0.7), transparent 65%);
            opacity: 0.8;
            filter: blur(4px);
        }

        .product-illus-line {
            position: absolute;
            inset: 50% -20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
            opacity: 0.7;
        }

        .product-body {
            padding: 0 16px 14px;
        }

        .product-title {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .product-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .product-price-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 8px;
        }

        .price-main {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
        }

        .price-tagline {
            font-size: 0.72rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            padding: 8px 16px 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .product-pill {
            font-size: 0.7rem;
            color: var(--rosa-neon-soft);
            text-transform: uppercase;
            letter-spacing: 0.16em;
        }

        .product-cta {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #fff;
        }

        .product-cta span.icon {
            display: inline-flex;
            transform: translateX(0);
            transition: transform var(--transition-fast);
        }

        .product-card:hover .product-cta span.icon {
            transform: translateX(3px);
        }

        /* Seção final – reforço da URL oficial */
        .final-section {
            padding: 18px 0 40px;
            background: transparent;
        }

        .final-card {
            border-radius: var(--radius-lg);
            padding: 16px 18px 18px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background:
                radial-gradient(circle at 0 0, rgba(255, 47, 208, 0.24), transparent 65%),
                radial-gradient(circle at 100% 0, rgba(255, 23, 68, 0.24), transparent 65%),
                linear-gradient(135deg, #140019, #060008);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.9);
            position: relative;
            overflow: hidden;
        }

        .final-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.6;
            mix-blend-mode: overlay;
            pointer-events: none;
        }

        .final-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.3fr);
            gap: 18px;
        }

        .final-text-columns {
            column-count: 2;
            column-gap: 40px;
        }

        .final-text,
        .final-highlight {
            break-inside: avoid;
        }

        @media (min-width: 800px) {
            .final-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .final-title {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            margin-bottom: 6px;
        }

        .final-title span {
            color: var(--rosa-neon-soft);
        }

        .final-text {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .final-highlight {
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffe9ff;
            margin-bottom: 16px;
        }

        .final-url {
            font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
            font-size: 0.86rem;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(5, 0, 8, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.22);
            color: #fff;
            display: inline-flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }

        .final-url span.label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--text-muted);
        }

        .final-url span.address {
            color: var(--rosa-neon-soft);
        }

        .final-side {
            text-align: left;
        }

        .final-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(5, 0, 8, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.22);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            margin-bottom: 8px;
        }

        .final-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle, #12ff7a, rgba(18, 255, 122, 0.1));
            box-shadow: 0 0 10px rgba(18, 255, 122, 0.9);
        }

        .final-mini {
            font-size: 0.76rem;
            color: var(--text-muted);
            max-width: 280px;
        }

        /* Footer pequeno */
        .footer {
            padding: 16px 0 22px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            background: linear-gradient(180deg, rgba(5, 0, 8, 0.6), rgba(0, 0, 0, 0.88));
        }

        .footer-inner {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px 16px;
            justify-content: space-between;
            align-items: center;
        }

        .footer-inner strong {
            color: #fff;
        }

        /* Animações */
        @keyframes neonPulse {
            0% {
                text-shadow:
                    0 0 6px rgba(255, 47, 208, 0.5),
                    0 0 14px rgba(255, 47, 208, 0.5);
                filter: drop-shadow(0 0 4px rgba(255, 47, 208, 0.7));
            }
            50% {
                text-shadow:
                    0 0 10px rgba(255, 47, 208, 0.9),
                    0 0 22px rgba(255, 23, 68, 0.9),
                    0 0 36px rgba(255, 23, 68, 0.7);
                filter: drop-shadow(0 0 8px rgba(255, 47, 208, 1));
            }
            100% {
                text-shadow:
                    0 0 4px rgba(255, 47, 208, 0.45),
                    0 0 10px rgba(255, 23, 68, 0.4);
                filter: drop-shadow(0 0 3px rgba(255, 47, 208, 0.7));
            }
        }

        @media (max-width: 480px) {
            .hero-ctas {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-content {
                text-align: center;
            }

            .btn-secondary-link {
                justify-content: center;
            }

            .topbar-inner {
                padding-bottom: 6px;
            }
        }
