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

    :root {
      --purple: #6b21a8;
      --purple-light: #9333ea;
      --purple-soft: #c084fc;
      --purple-pale: #f5f0ff;
      --purple-bg: #1a1028;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --white: #ffffff;
      --off-white: #fafafa;
      --gray-50: #f7f7f8;
      --gray-100: #f0f0f2;
      --gray-200: #e2e2e7;
      --gray-400: #9898a8;
      --gray-600: #5a5a6e;
      --gray-800: #28283a;
      --black: #14141e;
      --green: #22c55e;
      --radius: 10px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--gray-800);
      overflow-x: hidden;
      font-size: 15px;
      line-height: 1.6;
    }

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

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

    /* ══════════════════════════════
       TOP ANNOUNCEMENT BAR
    ══════════════════════════════ */
    @keyframes ann-slide {
      0% {
        background-position: 0% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    @keyframes ann-marquee {
      0% {
        transform: translateX(100vw);
      }

      100% {
        transform: translateX(-100%);
      }
    }

    .ann-bar {
      background: linear-gradient(90deg, #92400e 0%, #b45309 40%, #d97706 100%);
      color: #fff;
      text-align: center;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.4px;
    }

    .ann-bar-track {
      display: inline;
    }

    .ann-bar .ann-divider {
      display: inline-block;
      width: 1px;
      height: 12px;
      background: rgba(255, 255, 255, 0.3);
      margin: 0 14px;
      vertical-align: middle;
    }

    .ann-bar .ann-highlight {
      color: var(--gold-light);
      font-weight: 700;
    }

    .ann-bar a {
      color: var(--gold-light);
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: rgba(232, 201, 122, 0.4);
    }

    /* ══════════════════════════════
       HEADER
    ══════════════════════════════ */
    header {
      background: var(--white);
      position: sticky;
      top: 0;
      /* Deve ficar acima do conteúdo .spa-page (overflow cria stacking) para o drawer fixo aparecer sobre o banner */
      z-index: 10100;
      border-bottom: 1px solid var(--gray-100);
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    }

    .header-wrap {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 32px;
      height: 72px;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
      text-decoration: none;
    }

    .logo-img {
      height: 52px;
      width: 52px;
      display: block;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 2px 8px rgba(107, 33, 168, 0.2);
    }

    .logo-circle {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple), var(--purple-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .logo-texts {
      line-height: 1.15;
    }

    .logo-texts b {
      font-size: 17px;
      font-weight: 700;
      color: var(--black);
      display: block;
    }

    .logo-texts small {
      font-size: 10px;
      color: var(--purple);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    nav.main-nav {
      display: flex;
      align-items: center;
      gap: 2px;
      flex: 1;
    }

    nav.main-nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-600);
      padding: 8px 16px;
      border-radius: 8px;
      transition: color 0.15s;
      position: relative;
      white-space: nowrap;
    }

    nav.main-nav a::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 16px;
      right: 16px;
      height: 2px;
      background: var(--purple);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.2s;
    }

    nav.main-nav a:hover {
      color: var(--purple);
    }

    nav.main-nav a:hover::after,
    nav.main-nav a.active::after {
      transform: scaleX(1);
    }

    nav.main-nav a.active {
      color: var(--purple);
      font-weight: 600;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .icon-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--gray-200);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
    }

    .icon-btn:hover {
      border-color: var(--purple);
      background: var(--purple-pale);
    }

    .btn-cta-head {
      background: linear-gradient(135deg, var(--purple), var(--purple-light));
      color: var(--white);
      padding: 10px 22px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      transition: opacity 0.15s, transform 0.15s;
      white-space: nowrap;
      box-shadow: 0 4px 14px rgba(107, 33, 168, 0.3);
    }

    .btn-cta-head:hover {
      opacity: 0.88;
      transform: translateY(-1px);
    }

    /* ══════════════════════════════
       HERO VÍDEO
    ══════════════════════════════ */
    .hero {
      position: relative;
      overflow: hidden;
      background: #000;
      width: 100%;
      aspect-ratio: 16 / 9;
      min-height: 480px;
    }

    /* camada que cobre o overlay do YouTube (nome do canal) */
    .hero-yt-shield {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    /* escurecimento geral + gradiente lateral para foco no título */
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 3;
      background:
        /* camada escura uniforme no topo */
        linear-gradient(to bottom, rgba(10, 3, 22, 0.55) 0%, rgba(10, 3, 22, 0.30) 100%),
        /* gradiente lateral que foca o texto à esquerda */
        linear-gradient(100deg, rgba(10, 3, 22, 0.80) 0%, rgba(10, 3, 22, 0.45) 50%, rgba(10, 3, 22, 0.15) 100%);
      pointer-events: none;
    }

    /* conteúdo sobre o vídeo */
    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 4;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 80px;
      width: 100%;
    }

    /* vídeo de fundo */
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
      /* performance hint */
      will-change: transform;
    }

    /* fallback: imagem estática exibida enquanto o vídeo carrega */
    .hero-img-fallback {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }

    /* esconde fallback assim que o vídeo estiver pronto */
    .hero-video-loaded .hero-img-fallback {
      opacity: 0;
    }

    /* mobile background image — hidden on desktop */
    .hero-mobile-bg {
      display: none;
    }


    /* botão mute/unmute */
    .hero-mute-btn {
      position: absolute;
      bottom: 32px;
      right: 32px;
      z-index: 10;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      color: var(--white);
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(6px);
      transition: background 0.2s;
    }

    .hero-mute-btn:hover {
      background: rgba(255, 255, 255, 0.28);
    }


    .hero-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--purple-soft);
      margin-bottom: 16px;
    }

    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 700;
      line-height: 1.08;
      color: var(--white);
      max-width: 640px;
      margin-bottom: 20px;
    }

    .hero-content h1 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-content p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.78);
      max-width: 440px;
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--purple), var(--purple-light));
      color: var(--white);
      padding: 13px 28px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 6px 20px rgba(107, 33, 168, 0.45);
    }

    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(107, 33, 168, 0.55);
    }

    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: var(--white);
      padding: 13px 28px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      backdrop-filter: blur(4px);
      transition: background 0.2s;
    }

    .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.22);
    }

    /* scroll-down indicator */
    .hero-scroll {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, 0.55);
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      animation: scrollBounce 2s ease-in-out infinite;
    }

    @keyframes scrollBounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(6px);
      }
    }

    .hero-scroll svg {
      opacity: 0.6;
    }

    /* ── Color dots por produto ── */
    .dot-purple {
      background: #2c1654;
    }

    .dot-tan {
      background: #8b7355;
    }

    .dot-black {
      background: #1a1a1a;
    }

    .dot-brown-dark {
      background: #3d2b1f;
    }

    .dot-tan-light {
      background: #c0a080;
    }

    .dot-brown-mid {
      background: #5c4033;
    }

    .dot-saddle {
      background: #8b4513;
    }

    .dot-blue {
      background: #2e6ca4;
    }

    .dot-brown {
      background: #8b6343;
    }

    .dot-aura-split {
      background: linear-gradient(90deg, #2e6ca4 50%, #8b6343 50%);
    }

    .dot-wine {
      background: #6b1a2e;
    }

    .dot-gray-prem {
      background: #8a8a8a;
    }

    .dot-champagne {
      background: #c8a882;
    }

    /* ── Badge topo de linha (gradiente roxo) ── */
    .p-badge-top {
      background: linear-gradient(135deg, #6b21a8, #9333ea);
      color: #fff;
    }

    /* ── Blog section dentro de products-section ── */
    .blog-products-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .blog-p-cat {
      margin-bottom: 8px;
    }

    .blog-p-title {
      font-size: 16px;
      margin-bottom: 8px;
    }

    .blog-p-desc {
      font-size: 13px;
      color: var(--gray-400);
      line-height: 1.6;
    }

    /* ── Contact layout ── */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 960px;
      margin: 0 auto;
    }

    .contact-form-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 36px;
    }

    .contact-form-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      margin-bottom: 24px;
      color: var(--black);
    }

    .contact-field-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-600);
      display: block;
      margin-bottom: 6px;
    }

    .contact-field-wrap {
      margin-bottom: 16px;
    }

    .contact-input {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--gray-200);
      border-radius: 8px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.2s;
      background: var(--white);
      color: var(--gray-800);
    }

    .contact-input:focus {
      border-color: var(--purple);
    }

    .contact-textarea {
      resize: vertical;
      min-height: 88px;
    }

    .contact-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--purple), var(--purple-light));
      color: var(--white);
      border: none;
      padding: 13px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      margin-top: 4px;
      transition: opacity 0.2s;
    }

    .contact-submit:hover {
      opacity: 0.88;
    }

    .contact-info-side {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .wa-contact-card {
      display: flex;
      align-items: center;
      gap: 16px;
      background: linear-gradient(135deg, #2ecc71 0%, #25D366 50%, #1da851 100%);
      border-radius: 14px;
      padding: 22px 24px;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }

    .wa-contact-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    }

    .wa-contact-icon {
      font-size: 38px;
      flex-shrink: 0;
      color: #fff;
    }

    .wa-contact-number {
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      display: block;
    }

    .wa-contact-label {
      color: rgba(255, 255, 255, 0.85);
      font-size: 13px;
    }

    .contact-details-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 14px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-detail-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .contact-detail-icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: var(--purple-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .contact-detail-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--gray-800);
      display: block;
    }

    .contact-detail-sub {
      font-size: 13px;
      color: var(--gray-400);
    }

    .contact-mission-card {
      background: var(--purple-pale);
      border: 1px solid rgba(107, 33, 168, 0.2);
      border-radius: 14px;
      padding: 24px;
    }

    .contact-mission-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--purple);
      display: block;
      margin-bottom: 6px;
    }

    .contact-mission-text {
      font-size: 13px;
      color: var(--gray-600);
      line-height: 1.65;
    }

    /* ── Why section background ── */
    .why-section-bg {
      background: var(--off-white);
    }

    /* ── Contact section background ── */
    .contact-section {
      background: var(--gray-50);
    }

    /* ── Blog card link reset ── */
    .blog-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    /* ── Blog section background ── */
    .blog-section {
      background: var(--white);
    }

    /* ── Feature split img row fix ── */
    .row1 {
      grid-row: 1;
    }

    /* YouTube iframe — ocupa exatamente o hero */
    .hero-yt-wrap {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-yt-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* ══════════════════════════════
       TRUST BAR
    ══════════════════════════════ */
    .trust-bar {
      background: var(--gray-50);
      border-bottom: 1px solid var(--gray-200);
    }

    .trust-inner {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      divide-x: 1px solid var(--gray-200);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 16px;
      border-right: 1px solid var(--gray-200);
    }

    .trust-item:last-child {
      border-right: none;
    }

    .trust-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      font-size: 16px;
      background: var(--purple-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .trust-item b {
      font-size: 12px;
      font-weight: 600;
      color: var(--gray-800);
      display: block;
      line-height: 1.2;
    }

    .trust-item span {
      font-size: 11px;
      color: var(--gray-400);
    }

    /* ══════════════════════════════
       FEATURE SPLIT (Devoted to...)
    ══════════════════════════════ */
    .feature-split {
      max-width: 1260px;
      margin: 48px auto;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    }

    .feature-split-img {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 520px 380px;
      gap: 6px;
      background: var(--gray-200);
    }

    .feature-split-img .img-cell {
      overflow: hidden;
      background: var(--gray-100);
    }

    .feature-split-img .img-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.4s;
    }

    .feature-split-img .img-cell:hover img {
      transform: scale(1.05);
    }

    .feature-split-img .img-cell.span2 {
      grid-column: span 2;
    }

    .feature-split-copy {
      background: var(--purple-pale);
      padding: 48px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eyebrow {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 12px;
    }

    .feature-split-copy h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 2.5vw, 30px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--black);
      margin-bottom: 16px;
    }

    .feature-sub {
      font-size: 16px;
      color: var(--gray-700);
      line-height: 1.7;
      font-weight: 500;
      margin-bottom: 14px;
    }

    .feature-desc {
      font-size: 13px;
      color: var(--gray-400);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .feature-split-copy p {
      font-size: 15px;
      color: var(--gray-600);
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .btn-outline-purple {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid var(--purple);
      color: var(--purple);
      padding: 11px 24px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: background 0.2s, color 0.2s;
      width: fit-content;
    }

    .btn-outline-purple:hover {
      background: var(--purple);
      color: var(--white);
    }

    /* ══════════════════════════════
       SECTION HEADING
    ══════════════════════════════ */
    .sec-head {
      text-align: center;
      margin-bottom: 28px;
    }

    .sec-head .eyebrow {
      display: block;
      margin-bottom: 8px;
    }

    .sec-head h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 2.8vw, 32px);
      font-weight: 700;
      color: var(--black);
      margin-bottom: 10px;
    }

    .sec-head p {
      font-size: 15px;
      color: var(--gray-400);
      max-width: 520px;
      margin: 0 auto;
    }

    /* ══════════════════════════════
       PRODUCT TABS + GRID
    ══════════════════════════════ */
    .products-section {
      background: var(--white);
      padding: 48px 24px;
    }

    .products-inner {
      max-width: 1260px;
      margin: 0 auto;
    }

    .product-tabs {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .tab-btn {
      padding: 8px 22px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      border: 1.5px solid var(--gray-200);
      color: var(--gray-600);
      background: var(--white);
      cursor: pointer;
      transition: all 0.2s;
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: var(--purple);
      border-color: var(--purple);
      color: var(--white);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .product-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 14px;
      overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
      position: relative;
    }

    .product-card:hover {
      box-shadow: 0 12px 40px rgba(107, 33, 168, 0.13);
      transform: translateY(-4px);
    }

    .product-card-img {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      background: var(--gray-50);
    }

    .product-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s, opacity 0.35s ease;
    }

    .product-card:hover .product-card-img img {
      transform: scale(1.06);
    }

    .product-card-img .wishlist-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--gray-200);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.2s;
      z-index: 2;
    }

    .product-card:hover .wishlist-btn {
      opacity: 1;
    }

    .p-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      z-index: 2;
    }

    .p-badge.novo {
      background: var(--purple);
      color: var(--white);
    }

    .p-badge.destaque {
      background: var(--gold);
      color: var(--black);
    }

    .p-badge.premium {
      background: var(--black);
      color: var(--white);
    }

    .product-card-body {
      padding: 18px 18px 20px;
    }

    .product-color-dots {
      display: flex;
      gap: 5px;
      margin-bottom: 10px;
    }

    .color-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1.5px solid var(--gray-200);
    }

    .product-card-body h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--gray-800);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .product-card-body .p-cat {
      font-size: 12px;
      color: var(--gray-400);
      margin-bottom: 12px;
    }

    .product-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .p-price {
      font-size: 14px;
      font-weight: 700;
      color: var(--purple);
    }

    .p-price small {
      font-size: 11px;
      font-weight: 400;
      color: var(--gray-400);
      display: block;
    }

    .p-price-detail {
      font-size: 10px;
      font-weight: 400;
      color: var(--gray-400);
      display: block;
    }

    .aura-footer {
      align-items: flex-end;
    }

    .aura-price {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .aura-price-full {
      font-size: 11px;
      font-weight: 400;
      color: var(--gray-400);
      text-decoration: line-through;
    }

    .aura-price-parcel {
      font-size: 13px;
      font-weight: 700;
      color: var(--purple);
    }

    .aura-price-pix {
      font-size: 11px;
      font-weight: 500;
      color: #16a34a;
    }

    .add-btn {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: var(--purple);
      color: var(--white);
      border: none;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }

    .add-btn:hover {
      background: var(--purple-light);
      transform: scale(1.08);
    }

    .stars {
      display: flex;
      gap: 2px;
      margin-bottom: 8px;
      font-size: 12px;
    }

    .star {
      color: var(--gold);
    }

    .star.empty {
      color: var(--gray-200);
    }

    .star.half {
      position: relative;
      display: inline-block;
      color: var(--gray-200);
    }

    .star.half::before {
      content: "★";
      position: absolute;
      left: 0;
      top: 0;
      width: 50%;
      overflow: hidden;
      color: var(--gold);
    }

    /* ══════════════════════════════
       PROMO BANNER
    ══════════════════════════════ */
    .promo-banner {
      background: #000;
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    .promo-banner::before {
      content: '';
      position: absolute;
      right: -100px;
      top: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .promo-inner {
      max-width: 1260px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .promo-tag {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 4px;
    }

    /* badge sobre a imagem */
    .promo-tag-img {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 3;
    }

    .promo-img-only {
      position: relative;
    }

    .promo-img-only img {
      width: 100%;
      height: 460px;
      display: block;
      object-fit: cover;
      object-position: center center;
    }

    .promo-copy h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .promo-copy h2 span {
      color: var(--gold-light);
    }

    .promo-copy p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 15px;
      margin-bottom: 28px;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--black);
      padding: 13px 28px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
    }

    .promo-img-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .promo-img-wrap img {
      max-height: 320px;
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
      position: relative;
      z-index: 2;
      display: block;
      transition: transform 0.3s;
    }

    .promo-img-wrap .glow {
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(147, 51, 234, 0.35) 0%, transparent 70%);
      right: 20px;
    }

    /* link wrapper da imagem promo */
    .promo-img-link {
      position: relative;
      display: inline-block;
      z-index: 2;
      cursor: pointer;
    }

    .promo-img-link:hover img {
      transform: scale(1.04);
    }

    .promo-img-hover {
      position: absolute;
      inset: 0;
      background: rgba(107, 33, 168, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s;
      border-radius: 12px;
    }

    .promo-img-hover span {
      color: var(--white);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.5px;
      background: rgba(0, 0, 0, 0.35);
      padding: 10px 22px;
      border-radius: 8px;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
    }

    .promo-img-link:hover .promo-img-hover {
      opacity: 1;
    }

    /* botão secundário da promo */
    .promo-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 4px;
    }

    .btn-promo-ver {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, 0.75);
      font-size: 14px;
      font-weight: 600;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .btn-promo-ver:hover {
      color: var(--gold-light);
      border-color: var(--gold-light);
    }

    /* ══════════════════════════════
       WHY US
    ══════════════════════════════ */
    .why-section {
      padding: 48px 24px;
      background: var(--off-white);
    }

    .why-inner {
      max-width: 1260px;
      margin: 0 auto;
    }

    .why-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .why-img-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 12px;
    }

    .why-img-mosaic .mosaic-cell {
      border-radius: 12px;
      overflow: hidden;
      background: var(--gray-100);
    }

    .why-img-mosaic .mosaic-cell img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.4s;
    }

    .why-img-mosaic .mosaic-cell:hover img {
      transform: scale(1.05);
    }

    .why-img-mosaic .mosaic-cell.tall img {
      height: 260px;
    }

    .why-img-mosaic .mosaic-cell.full {
      grid-column: 1 / -1;
    }

    .why-copy .eyebrow {
      margin-bottom: 10px;
    }

    .why-copy h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 2.5vw, 30px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--black);
      margin-bottom: 16px;
    }

    .why-copy>p {
      font-size: 15px;
      color: var(--gray-600);
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .why-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 36px;
    }

    .why-feat {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .why-benefits {
      list-style: none;
      padding: 0;
      margin: 0 0 36px 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .why-benefits li {
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding-left: 16px;
      position: relative;
    }

    .why-benefits li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--purple);
    }

    .why-benefits li b {
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-800);
    }

    .why-benefits li span {
      font-size: 13px;
      color: var(--gray-400);
      line-height: 1.6;
    }

    .why-feat-icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: var(--purple-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .why-feat b {
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-800);
      display: block;
      margin-bottom: 2px;
    }

    .why-feat span {
      font-size: 12px;
      color: var(--gray-400);
      line-height: 1.5;
    }

    /* ══════════════════════════════
       CATEGORIES
    ══════════════════════════════ */
    .cat-section {
      padding: 48px 24px;
      background: var(--white);
    }

    .cat-inner {
      max-width: 1260px;
      margin: 0 auto;
    }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .cat-card {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      min-height: 260px;
      cursor: pointer;
    }

    .cat-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
      position: absolute;
      inset: 0;
    }

    .cat-card:hover img {
      transform: scale(1.07);
    }

    .cat-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20, 5, 40, 0.75) 0%, rgba(20, 5, 40, 0.15) 60%, transparent 100%);
    }

    .cat-card-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px 20px;
    }

    .cat-card-label span {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--purple-soft);
      display: block;
      margin-bottom: 4px;
    }

    .cat-card-label h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }

    .cat-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold-light);
      letter-spacing: 0.5px;
    }

    .cat-link::after {
      content: '→';
      transition: transform 0.2s;
    }

    .cat-card:hover .cat-link::after {
      transform: translateX(4px);
    }

    /* ══════════════════════════════
       ABOUT CTA
    ══════════════════════════════ */
    .about-cta {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      display: flex;
      align-items: center;
    }

    .about-cta-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-cta-overlay {
      position: absolute;
      inset: 0;
      background: rgba(20, 5, 40, 0.7);
    }

    .about-cta-content {
      position: relative;
      z-index: 2;
      max-width: 1260px;
      margin: 0 auto;
      padding: 52px 24px;
      text-align: center;
      width: 100%;
    }

    .about-cta-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 3vw, 38px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    .about-cta-content p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.72);
      max-width: 480px;
      margin: 0 auto 36px;
    }

    .about-cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ══════════════════════════════
       COMPARE TABLE
    ══════════════════════════════ */
    .compare-section {
      padding: 72px 24px;
      background: var(--off-white);
    }

    .compare-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .compare-wrap {
      overflow-x: auto;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
      background: #fff;
    }

    .compare-table thead tr {
      background: #1e1030;
    }

    .compare-table thead th {
      padding: 18px 20px;
      text-align: center;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }

    .compare-table thead th:first-child {
      text-align: left;
    }

    .compare-table thead th.col-highlight {
      background: #0f0820;
      color: var(--gold);
    }

    .compare-table tbody tr {
      border-bottom: 1px solid var(--gray-100);
    }

    .compare-table tbody tr:last-child {
      border-bottom: none;
    }

    .compare-table tbody tr:nth-child(even) {
      background: #faf9ff;
    }

    .compare-table tbody td {
      padding: 14px 20px;
      text-align: center;
      font-size: 14px;
      color: var(--gray-600);
    }

    .compare-table tbody td:first-child {
      text-align: left;
      font-weight: 600;
      color: var(--gray-800);
    }

    .compare-table td.col-highlight {
      background: #f5f0ff;
    }

    .ct-yes {
      color: #16a34a;
      font-weight: 700;
    }

    .ct-no {
      color: #d1d5db;
    }

    .ct-premium {
      color: var(--purple);
      font-weight: 600;
      font-size: 13px;
    }

    .ct-gold {
      color: #b8860b;
      font-weight: 700;
    }

    .ct-price-row td {
      padding-top: 20px;
      padding-bottom: 20px;
      font-size: 15px;
      font-weight: 700;
      color: var(--gray-800);
      border-top: 2px solid var(--gray-100);
    }

    /* ══════════════════════════════
       TESTIMONIALS
    ══════════════════════════════ */
    .testimonials-section {
      padding: 48px 24px;
      background: var(--off-white);
    }

    .testimonials-inner {
      max-width: 1260px;
      margin: 0 auto;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testi-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 28px;
      transition: box-shadow 0.25s;
    }

    .testi-card:hover {
      box-shadow: 0 8px 32px rgba(107, 33, 168, 0.1);
    }

    .testi-stars {
      font-size: 14px;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .testi-card blockquote {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 20px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--purple-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .testi-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testi-author b {
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-800);
      display: block;
    }

    .testi-author span {
      font-size: 12px;
      color: var(--gray-400);
    }

    /* ══════════════════════════════
       GUIAS E DICAS
    ══════════════════════════════ */
    .guias-section {
      padding: 72px 24px;
      background: var(--white);
    }

    .guias-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .guias-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .guia-card {
      background: #faf9ff;
      border: 1px solid #ede9f8;
      border-radius: 16px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: box-shadow 0.3s, transform 0.3s;
    }

    .guia-card:hover {
      box-shadow: 0 8px 32px rgba(107, 33, 168, 0.10);
      transform: translateY(-4px);
    }

    .guia-card-highlight {
      border-color: var(--purple);
      background: #f5f0ff;
    }

    .guia-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
      width: fit-content;
    }

    .guia-tag-green {
      background: #dcfce7;
      color: #16a34a;
    }

    .guia-tag-blue {
      background: #dbeafe;
      color: #1d4ed8;
    }

    .guia-tag-purple {
      background: #ede9fe;
      color: var(--purple);
    }

    .guia-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--gray-800);
      line-height: 1.35;
      margin: 0;
    }

    .guia-card p {
      font-size: 14px;
      color: var(--gray-400);
      line-height: 1.7;
      margin: 0;
      flex: 1;
    }

    .guia-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--purple);
      text-decoration: none;
      margin-top: auto;
    }

    .guia-link:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .guias-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ══════════════════════════════
       INSTAGRAM GRID
    ══════════════════════════════ */
    .insta-section {
      padding: 48px 24px;
      background: var(--white);
    }

    .insta-inner {
      max-width: 1260px;
      margin: 0 auto;
    }

    .insta-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .insta-handle {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .insta-handle .ig-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .insta-handle b {
      font-size: 15px;
      font-weight: 700;
      color: var(--gray-800);
    }

    .insta-handle span {
      font-size: 12px;
      color: var(--gray-400);
      display: block;
    }

    .btn-insta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid var(--gray-200);
      color: var(--gray-600);
      padding: 9px 18px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-insta:hover {
      border-color: var(--purple);
      color: var(--purple);
    }

    .insta-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
    }

    .insta-cell {
      aspect-ratio: 1;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--gray-100);
    }

    .insta-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s, filter 0.3s;
    }

    .insta-cell:hover img {
      transform: scale(1.08);
      filter: brightness(0.85);
    }

    .insta-cell-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      background: rgba(107, 33, 168, 0.5);
      transition: opacity 0.25s;
      color: var(--white);
      font-size: 22px;
    }

    .insta-cell:hover .insta-cell-overlay {
      opacity: 1;
    }

    /* ══════════════════════════════
       CTA BANNER
    ══════════════════════════════ */
    .cta-banner {
      background: linear-gradient(135deg, #c084fc 0%, #a855f7 40%, #7c3aed 100%);
      padding: 72px 24px;
    }

    .cta-banner-inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .cta-banner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 3.5vw, 42px);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin: 0;
    }

    .cta-banner>.cta-banner-inner>p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.85);
      margin: 0;
    }

    .cta-banner-btn {
      display: inline-block;
      background: #fff;
      color: var(--purple);
      font-size: 16px;
      font-weight: 700;
      padding: 18px 36px;
      border-radius: 50px;
      text-decoration: none;
      margin-top: 8px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .cta-banner-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }

    .cta-banner-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.65);
    }

    .cta-banner-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
    }

    .cta-banner-social {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.75);
    }

    .cta-banner-showroom {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      text-decoration: underline;
    }

    /* ══════════════════════════════
       NEWSLETTER (kept for ref)
    ══════════════════════════════ */
    .newsletter {
      background: linear-gradient(135deg, var(--purple), var(--purple-light));
      padding: 40px 24px;
    }

    .newsletter-inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }

    .newsletter h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }

    .newsletter p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 28px;
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
      max-width: 460px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex: 1;
      padding: 13px 18px;
      border-radius: 8px;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.2s;
    }

    .newsletter-form input::placeholder {
      color: rgba(255, 255, 255, 0.55);
    }

    .newsletter-form input:focus {
      border-color: var(--white);
    }

    .btn-nl {
      background: var(--white);
      color: var(--purple);
      padding: 13px 22px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: transform 0.15s;
      white-space: nowrap;
    }

    .btn-nl:hover {
      transform: scale(1.03);
    }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    footer {
      background: var(--black);
      padding: 44px 24px 0;
    }

    .footer-inner {
      max-width: 1260px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .footer-brand {}

    .footer-brand .logo {
      margin-bottom: 16px;
    }

    .footer-brand .logo .logo-texts b {
      color: var(--white);
    }

    .footer-brand .logo .logo-texts small {
      color: var(--purple-soft);
    }

    .footer-brand p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.75;
      margin-bottom: 24px;
    }

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

    .f-social {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.55);
      transition: background 0.2s, color 0.2s;
    }

    .f-social:hover {
      background: var(--purple);
      color: var(--white);
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.45);
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: var(--white);
    }

    .footer-contact-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .f-contact-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .f-contact-icon {
      width: 32px;
      height: 32px;
      border-radius: 7px;
      background: rgba(107, 33, 168, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    .f-contact-row b {
      font-size: 13px;
      color: var(--white);
      display: block;
      line-height: 1.2;
    }

    .f-contact-row span {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-bottom {
      max-width: 1260px;
      margin: 0 auto;
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.25);
    }

    .footer-bottom .verse {
      font-style: italic;
      color: rgba(255, 255, 255, 0.2);
    }

    /* ══════════════════════════════
       WHATSAPP FLOAT
    ══════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
    }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 1024px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }

      .trust-inner {
        grid-template-columns: repeat(3, 1fr);
      }

      .trust-item:nth-child(3) {
        border-right: none;
      }

      .trust-item:nth-child(4),
      .trust-item:nth-child(5) {
        border-top: 1px solid var(--gray-200);
      }

      .trust-item:nth-child(5) {
        border-right: none;
      }
    }

    @media (max-width: 900px) {

      .feature-split,
      .why-layout,
      .promo-inner {
        grid-template-columns: 1fr;
      }

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

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

      .insta-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 600px) {
      .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }

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

      .insta-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .hero-content h1 {
        font-size: 34px;
      }

      section,
      .products-section,
      .why-section,
      .cat-section,
      .testimonials-section,
      .insta-section {
        padding: 48px 16px;
      }
    }

    /* ══════════════════════════════
       SCROLL ANIMATION
    ══════════════════════════════ */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* SPA — catálogo e página de produto */
    .spa-page[hidden] {
      display: none !important;
    }

    a.product-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .spa-back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--purple);
      margin-bottom: 24px;
    }

    .spa-back-link:hover {
      color: var(--purple-light);
    }

    .p-detail-link {
      display: inline-block;
      margin-top: 12px;
      font-size: 13px;
      font-weight: 600;
      color: var(--purple);
    }

    .p-detail-link:hover {
      color: var(--purple-light);
    }

    .product-detail-section {
      padding: 48px 0 72px;
    }

    .product-detail-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .product-detail-wrap {
        grid-template-columns: 1fr;
      }
    }

    .product-detail-img {
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
    }

    .product-detail-img img {
      width: 100%;
      display: block;
    }

    .product-detail-body .eyebrow {
      margin-bottom: 10px;
    }

    .product-detail-body h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 4vw, 36px);
      color: var(--black);
      margin-bottom: 8px;
      line-height: 1.15;
    }

    .product-detail-variant {
      font-size: 15px;
      color: var(--gray-600);
      margin-bottom: 16px;
    }

    .product-detail-desc {
      font-size: 15px;
      color: var(--gray-600);
      margin: 20px 0;
      line-height: 1.75;
    }

    .product-detail-desc ul {
      margin-top: 12px;
      padding-left: 20px;
    }

    .product-detail-desc li {
      margin-bottom: 8px;
    }

    .product-detail-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    /* ════════════════════════════════════════
       MOBILE — complementos ao main.css
    ════════════════════════════════════════ */

    /* ── HEADER MOBILE: logo esquerda · hamburger direita · sem CTA ── */
    @media (max-width: 900px) {
      .header-wrap {
        flex-wrap: nowrap !important;
        height: 58px !important;
        min-height: 58px !important;
        padding: 0 16px !important;
        gap: 0 !important;
        align-items: center;
      }

      .logo {
        flex-shrink: 0;
        gap: 8px;
      }

      .logo-img {
        height: 38px !important;
        width: 38px !important;
      }

      .logo-texts b {
        font-size: 15px;
      }

      .logo-texts small {
        display: none;
      }

      /* nav fora do fluxo */
      nav.main-nav {
        flex: none;
      }

      /* OCULTA o CTA em qualquer breakpoint mobile */
      header .header-actions,
      .header-wrap .header-actions {
        display: none !important;
        flex: none !important;
        width: 0 !important;
        overflow: hidden !important;
      }

      /* Hambúrguer bem à direita */
      .nav-menu-toggle {
        margin-left: auto !important;
        flex-shrink: 0;
        order: 99;
      }
    }

    /* Link WhatsApp no drawer — só aparece no mobile */
    .nav-wa-link {
      display: none;
    }

    @media (max-width: 900px) {
      .nav-wa-link {
        display: flex !important;
        margin-top: 12px;
        background: linear-gradient(135deg, #25D366, #1da851);
        color: #fff !important;
        border-radius: 10px;
        font-weight: 700 !important;
        font-size: 15px !important;
        padding: 14px 16px !important;
        justify-content: center;
        text-align: center;
      }
    }

    /* Hero mobile — conteúdo centralizado verticalmente */
    @media (max-width: 900px) {
      .hero-yt-wrap {
        display: none;
      }

      .hero-mobile-bg {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        z-index: 1;
      }

      .hero-btns {
        width: 100%;
        flex-direction: column;
        gap: 10px;
      }

      .btn-hero-primary,
      .btn-hero-secondary {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 900px) {
      .hero-mobile-bg {
        object-position: 65% center;
      }
    }

    /* itens duplicados ocultos no desktop */
    .trust-item[aria-hidden="true"] {
      display: none;
    }

    /* ── TRUST BAR MARQUEE (mobile) ── */
    @media (max-width: 900px) {
      .trust-bar {
        overflow: hidden;
        border-bottom: 1px solid var(--gray-200);
        padding: 0;
      }

      /* substitui o grid/flex por marquee */
      .trust-inner {
        display: flex !important;
        grid-template-columns: unset !important;
        width: max-content;
        animation: trust-scroll 22s linear infinite;
        padding: 0;
        gap: 0;
      }

      .trust-bar:hover .trust-inner {
        animation-play-state: paused;
      }

      @keyframes trust-scroll {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(-50%);
        }
      }

      .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        border-right: 1px solid var(--gray-200) !important;
        border-bottom: none !important;
        flex-shrink: 0;
        white-space: nowrap;
      }

      .trust-item:last-child {
        border-right: 1px solid var(--gray-200) !important;
      }

      /* mostra duplicatas no mobile */
      .trust-item[aria-hidden="true"] {
        display: flex;
      }

      .trust-icon {
        width: 26px;
        height: 26px;
        font-size: 15px;
        flex-shrink: 0;
      }

      .trust-item b {
        font-size: 12px;
        font-weight: 600;
      }

      .trust-item span {
        font-size: 11px;
        display: none;
      }
    }

    /* Announcement bar compacta */
    @media (max-width: 600px) {
      .ann-bar {
        font-size: 12px;
        padding: 8px 12px;
        line-height: 1.4;
      }
    }

    /* ════════════════════════════════════════
       TABELA COMPARATIVA MOBILE
    ════════════════════════════════════════ */
    @media (max-width: 900px) {
      .compare-section {
        padding: 48px 0;
      }

      .compare-inner {
        padding: 0;
      }

      .compare-inner .sec-head {
        padding: 0 16px;
        margin-bottom: 12px;
      }

      .compare-scroll-hint {
        padding: 0 16px;
        margin-bottom: 10px;
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: var(--purple);
        letter-spacing: 0.02em;
      }

      .compare-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        padding: 0 0 12px;
        /* subtle scroll shadow hint */
        background:
          linear-gradient(to right, white 16px, transparent 16px) left / 20px 100% no-repeat,
          linear-gradient(to left, white 16px, transparent 16px) right / 20px 100% no-repeat,
          radial-gradient(ellipse at left, rgba(0, 0, 0, .10) 0%, transparent 70%) left / 14px 100% no-repeat,
          radial-gradient(ellipse at right, rgba(0, 0, 0, .10) 0%, transparent 70%) right / 14px 100% no-repeat;
        background-attachment: local, local, scroll, scroll;
      }

      .compare-table {
        min-width: 540px;
        font-size: 13px;
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
        width: 100%;
      }

      /* Coluna de recurso sticky */
      .compare-table thead th:first-child,
      .compare-table tbody td:first-child {
        position: sticky;
        left: 0;
        z-index: 3;
        min-width: 130px;
        max-width: 140px;
      }

      .compare-table thead th:first-child {
        background: #1e1030;
        z-index: 4;
      }

      .compare-table tbody td:first-child {
        background: #fff;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.06);
      }

      .compare-table tbody tr:nth-child(even) td:first-child {
        background: #faf9ff;
      }

      .compare-table thead th {
        padding: 14px 12px;
        font-size: 13px;
        white-space: nowrap;
      }

      .compare-table tbody td {
        padding: 12px 12px;
        font-size: 13px;
      }

      /* Linha de preço destaque */
      .ct-price-row td {
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 13px;
      }
    }

    @media (max-width: 480px) {
      .compare-table {
        min-width: 480px;
        font-size: 12px;
      }

      .compare-table thead th:first-child,
      .compare-table tbody td:first-child {
        min-width: 110px;
        max-width: 120px;
      }

      .compare-table thead th,
      .compare-table tbody td {
        padding: 11px 10px;
      }
    }

    /* ════════════════════════════════════════
       BANNER CATÁLOGO MOBILE
    ════════════════════════════════════════ */
    @media (max-width: 900px) {
      .catalog-hero-wrap {
        padding: 12px 12px 6px;
      }

      .catalog-carousel {
        border-radius: 16px;
      }

      /* Banner portrait no mobile */
      .catalog-carousel-slides {
        aspect-ratio: 3 / 4;
        min-height: 240px;
        max-height: min(72vh, 480px);
      }

      .catalog-carousel-slide img,
      .catalog-carousel-slide picture img {
        object-fit: contain;
        object-position: center center;
        height: 100%;
        width: 100%;
        background: #0f0b1a;
      }

      /* Texto sobre o banner */
      .catalog-carousel-slide figcaption {
        left: 14px;
        right: 14px;
        bottom: 16px;
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 10px;
      }
    }

    @media (max-width: 480px) {
      .catalog-carousel-slides {
        aspect-ratio: 3 / 4;
        min-height: 200px;
        max-height: min(65vh, 400px);
      }
    }

    /* ── Override pós-main.css: header mobile compacto ── */
    @media (max-width: 900px) {
      .header-wrap {
        flex-wrap: nowrap !important;
        height: 58px !important;
        min-height: 58px !important;
        padding: 0 16px !important;
        gap: 0 !important;
        align-items: center;
      }

      .header-wrap .header-actions {
        display: none !important;
      }

      .header-wrap .nav-menu-toggle {
        margin-left: auto !important;
        order: 99 !important;
        flex-shrink: 0;
      }

      /* Drawer fora da faixa clicável até abrir — evita “Home” fantasmas na barra */
      .header-wrap.header-inner nav.main-nav:not(.is-open) {
        pointer-events: none !important;
      }

      .header-wrap.header-inner nav.main-nav.is-open {
        pointer-events: auto !important;
      }

      .logo-img {
        height: 38px !important;
        width: 38px !important;
      }

      /* Header: slide up/down no scroll
         Importante: NÃO usar will-change:transform nem translateY(0) — qualquer um
         desses cria stacking context e faz position:fixed (drawer mob) ficar preso ao
         header em vez da viewport, deixando o menu atrás do hero.
      */
      header {
        transform: none;
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
          box-shadow 0.28s ease;
      }

      header.header-hidden {
        transform: translateY(-100%);
        box-shadow: none !important;
      }

      header.header-visible {
        transform: none;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
      }

      /* Drawer aberto: garante fullscreen mesmo se o header estiver “escondido” no scroll */
      body.nav-drawer-open header {
        transform: none !important;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
      }
    }

    /* ── HERO MOBILE: altura full-screen ── */
    @media (max-width: 900px) {
      .hero {
        aspect-ratio: unset !important;
        height: 100svh !important;
        min-height: 560px !important;
        max-height: 860px !important;
      }

      .hero-content {
        justify-content: flex-end !important;
        padding: 0 28px 52px !important;
        text-align: left;
      }

      .hero-content h1 {
        font-size: clamp(34px, 9vw, 50px) !important;
        margin-bottom: 14px;
        line-height: 1.08;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
      }

      .hero-content p {
        font-size: 15px !important;
        margin-bottom: 28px;
        max-width: 100%;
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
      }

      /* overlay forte para texto legível sobre fundo claro */
      .hero-overlay {
        background:
          linear-gradient(to bottom,
            rgba(10, 3, 22, 0.70) 0%,
            rgba(10, 3, 22, 0.50) 35%,
            rgba(10, 3, 22, 0.55) 65%,
            rgba(10, 3, 22, 0.85) 100%) !important;
      }
    }

    /* ══════════════════════════════
       BREADCRUMB
    ══════════════════════════════ */
    .breadcrumb {
      padding: 14px 0 0;
      font-size: 13px;
      color: var(--gray-400);
    }
    .breadcrumb ol {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0;
      margin: 0;
      padding: 0;
    }
    .breadcrumb li {
      display: flex;
      align-items: center;
    }
    .breadcrumb li + li::before {
      content: "\203A";
      margin: 0 8px;
      color: var(--gray-400);
      font-size: 15px;
    }
    .breadcrumb a {
      color: var(--purple);
      text-decoration: none;
      transition: color .2s;
    }
    .breadcrumb a:hover {
      color: var(--purple-light);
      text-decoration: underline;
    }

    /* telas muito pequenas */
    @media (max-width: 400px) {
      .hero {
        min-height: 500px !important;
      }
    }
