  :root {
    --bg: #0b0f17;
    --gold: #c9a876;
    --gold-light: #dfc196;
    --gold-dark: #a8884f;
    --cream: #f4efe4;
    --muted: #8e98ae;
    --card: #161f31;
    --border: #26334d;
    --white: #ffffff;
    --radius: 8px;
    --transition: 0.3s ease;
  }

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

  html { scroll-behavior: smooth; }

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

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  button { cursor: pointer; border: none; background: none; font-family: inherit; }
  ul { list-style: none; }

  /* ── TOPBAR ── */
  #topbar {
    background: #060a10;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  #topbar span { display: flex; align-items: center; gap: 6px; }
  #topbar a { color: var(--gold); transition: color var(--transition); }
  #topbar a:hover { color: var(--gold-light); }
  .topbar-ship { font-weight: 500; }
  .topbar-ship strong { color: var(--gold); }

  /* ── HEADER ── */
  #header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(11,15,23,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: box-shadow var(--transition);
  }
  #header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

  .header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }
  .header-logo {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    box-shadow: 0 0 20px rgba(201,168,118,0.5), 0 0 6px rgba(201,168,118,0.3);
  }
  .header-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--cream);
  }
  .header-brand-text span { color: var(--gold); }

  #nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  #nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color var(--transition);
    position: relative;
  }
  #nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
  }
  #nav-links a:hover { color: var(--cream); }
  #nav-links a:hover::after { width: 100%; }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }
  .btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all var(--transition);
    position: relative;
  }
  .btn-icon:hover { background: var(--border); color: var(--gold); border-color: var(--gold); }
  .btn-icon svg { width: 18px; height: 18px; }
  .cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
  }
  .cart-badge.visible { display: flex; }

  #burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }
  #burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all var(--transition);
  }

  /* Mobile nav */
  #mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(6,10,16,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  #mobile-nav.open { display: flex; }
  #mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.06em;
    transition: color var(--transition);
  }
  #mobile-nav a:hover { color: var(--gold); }
  #mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
  }
  #mobile-nav-close:hover { color: var(--gold); }

  /* ── HERO ── */
  #hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 50%, #111827 0%, var(--bg) 60%);
  }
  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 80%, rgba(201,168,118,0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(201,168,118,0.04) 0%, transparent 50%);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .hero-content {}
  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .hero-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 600;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 24px;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-lead {
    font-size: 16px;
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 40px;
    line-height: 1.7;
  }
  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--bg);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,118,0.3);
  }
  .btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 28px rgba(201,168,118,0.45);
    transform: translateY(-1px);
  }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--cream);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,118,0.07);
  }
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .hero-logo-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-logo-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(201,168,118,0.2);
    animation: spin-slow 20s linear infinite;
  }
  .hero-logo-ring::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
  }
  @keyframes spin-slow { to { transform: rotate(360deg); } }
  .hero-logo-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
    box-shadow: 0 0 60px rgba(201,168,118,0.25), 0 0 120px rgba(201,168,118,0.1);
  }
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
  }
  .hero-stat {}
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
  }
  .hero-stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ── TICKER ── */
  #ticker {
    background: var(--gold);
    overflow: hidden;
    padding: 12px 0;
    position: relative;
  }
  .ticker-track {
    display: flex;
    gap: 0;
    animation: ticker-move 35s linear infinite;
    width: max-content;
  }
  @keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
  }
  .ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--bg);
    opacity: 0.5;
  }

  /* ── SECTION COMMON ── */
  .section { padding: 96px 64px; }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .section-desc {
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 48px;
  }

  /* ── VITRINE ── */
  #vitrine { background: var(--bg); }
  .tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .tab-btn {
    padding: 9px 22px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
    background: var(--card);
    border: 1px solid var(--border);
    transition: all var(--transition);
  }
  .tab-btn:hover { color: var(--cream); border-color: var(--muted); }
  .tab-btn.active {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    font-weight: 600;
  }

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

  .product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    border-color: rgba(201,168,118,0.3);
  }

  .product-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    background: #0f1723;
    overflow: hidden;
  }
  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .product-card:hover .product-img-wrap img { transform: scale(1.04); }

  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bg);
  }

  .product-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.2;
  }

  .product-colors {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: transform var(--transition);
  }
  .color-dot:hover { transform: scale(1.25); border-color: var(--gold); }

  .product-sizes {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
  }
  .size-chip {
    padding: 2px 7px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
  }

  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }

  .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
  }
  .product-parcelas {
    font-size: 10px;
    color: var(--muted);
    margin-top: 3px;
  }

  .btn-add {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    transition: all var(--transition);
    flex-shrink: 0;
  }
  .btn-add:hover {
    background: var(--gold-light);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(201,168,118,0.4);
  }

  /* ── MANIFESTO ── */
  #manifesto {
    background: linear-gradient(135deg, #0d1220 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .manifesto-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .manifesto-left {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .frame-gold {
    position: relative;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .frame-gold::before, .frame-gold::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.6;
  }
  .frame-gold::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
  .frame-gold::after { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
  .frame-gold-inner {
    position: relative;
  }
  .frame-gold-inner::before, .frame-gold-inner::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.6;
  }
  .frame-gold-inner::before { top: -40px; right: -40px; border-width: 2px 2px 0 0; }
  .frame-gold-inner::after { bottom: -40px; left: -40px; border-width: 0 0 2px 2px; }
  .manifesto-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    box-shadow: 0 0 40px rgba(201,168,118,0.2);
  }
  .manifesto-right {}
  .manifesto-right .section-title { margin-bottom: 24px; }
  .manifesto-text {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .manifesto-text strong { color: var(--cream); }
  .manifesto-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--gold);
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin-top: 32px;
  }

  /* ── SELOS ── */
  #selos { background: var(--bg); }
  .selos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
  }
  .selo {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card);
    transition: all var(--transition);
  }
  .selo:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(201,168,118,0.1);
    transform: translateY(-4px);
  }
  .selo-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,118,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(201,168,118,0.07);
  }
  .selo-icon svg { width: 28px; height: 28px; color: var(--gold); }
  .selo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
  }
  .selo-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* ── BANNER LOJA ── */
  #banner-loja {
    background: linear-gradient(135deg, #0f1a2e 0%, #0b0f17 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 64px;
    text-align: center;
  }
  .banner-loja-inner { max-width: 700px; margin: 0 auto; }
  .banner-loja-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(201,168,118,0.2);
  }
  .banner-loja-pre {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .banner-loja-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
  }
  .banner-loja-sub { color: var(--muted); }

  /* ── DEPOIMENTOS ── */
  #depoimentos { background: var(--bg); }
  .depo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .depo-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 28px;
    transition: transform var(--transition);
  }
  .depo-card:hover { transform: translateY(-4px); }
  .depo-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }
  .depo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .depo-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .depo-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
  }
  .depo-name { font-size: 13px; font-weight: 600; color: var(--cream); }
  .depo-info { font-size: 12px; color: var(--muted); }

  /* ── HISTÓRIA ── */
  #historia {
    background: var(--bg);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    padding: 96px 64px;
  }
  .historia-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(160px, 22vw, 280px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,118,0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }
  .historia-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .historia-content .section-title { font-size: clamp(36px, 4vw, 56px); }
  .historia-text {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 20px;
  }
  .historia-text + .historia-text { margin-top: 16px; }
  .historia-text strong { color: var(--cream); }
  .historia-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .historia-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .historia-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.6;
  }
  .historia-card-title {
    font-weight: 600;
    color: var(--cream);
    font-size: 14px;
    margin-bottom: 6px;
  }
  .historia-card-text { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* ── CLUBE VIP ── */
  #clube {
    background: linear-gradient(135deg, #0d1524 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    padding: 96px 64px;
    text-align: center;
  }
  .clube-inner { max-width: 560px; margin: 0 auto; }
  .clube-inner .section-label { display: block; }
  .clube-inner .section-title { margin-bottom: 12px; }
  .clube-desc { color: var(--muted); margin-bottom: 36px; }
  .clube-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .clube-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
  }
  .clube-input:focus { border-color: var(--gold); }
  .clube-input::placeholder { color: var(--muted); }
  .clube-btn {
    padding: 14px 28px;
    background: var(--gold);
    color: var(--bg);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
  }
  .clube-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── FOOTER ── */
  #footer {
    background: #060a10;
    border-top: 1px solid var(--border);
    padding: 64px 64px 32px;
  }
  .footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }
  .footer-brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    margin-bottom: 16px;
  }
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
  }
  .footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
    transition: all var(--transition);
  }
  .footer-social a:hover { border-color: var(--gold); color: var(--gold); }
  .footer-social svg { width: 16px; height: 16px; }
  .footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 13px; color: var(--muted); transition: color var(--transition); }
  .footer-links a:hover { color: var(--cream); }
  .footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--muted);
  }
  .footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
  .footer-map {
    margin-top: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .footer-map iframe { width: 100%; height: 130px; display: block; }
  .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-copy { font-size: 12px; color: var(--muted); }
  .footer-copy a { color: var(--gold); }

  /* ── FAB WHATSAPP ── */
  #fab-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 800;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201,168,118,0.5);
    transition: all var(--transition);
    text-decoration: none;
  }
  #fab-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201,168,118,0.65);
    background: var(--gold-light);
  }
  #fab-wa svg { width: 28px; height: 28px; }

  /* ── CART DRAWER ── */
  #cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  #cart-overlay.open { opacity: 1; pointer-events: all; }
  #cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100vw;
    height: 100%;
    background: var(--card);
    border-left: 1px solid var(--border);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #cart-drawer.open { transform: translateX(0); }
  .cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
  }
  .cart-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
  }
  .cart-close:hover { background: var(--gold); color: var(--bg); }
  .cart-items { flex: 1; overflow-y: auto; padding: 24px; }
  .cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
  }
  .cart-empty svg { width: 48px; height: 48px; color: var(--border); margin: 0 auto 16px; }
  .cart-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .cart-item-thumb {
    width: 64px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #0f1723;
    flex-shrink: 0;
  }
  .cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .cart-item-info { flex: 1; }
  .cart-item-name { font-size: 14px; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
  .cart-item-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
  .cart-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--gold);
  }
  .cart-item-remove { color: var(--muted); font-size: 18px; cursor: pointer; transition: color var(--transition); padding: 4px; }
  .cart-item-remove:hover { color: #dc3545; }
  .cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
  }
  .cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .cart-total-label { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
  .cart-total-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
  }
  .cart-checkout {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--bg);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
  }
  .cart-checkout:hover { background: var(--gold-light); transform: translateY(-1px); }
  .cart-checkout svg { width: 18px; height: 18px; }

  /* ── MODAL ── */
  #modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  #modal-overlay.open { opacity: 1; pointer-events: all; }
  #modal-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    transform: scale(0.96);
    transition: transform var(--transition);
  }
  #modal-overlay.open #modal-box { transform: scale(1); }
  .modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
  }
  .modal-close { color: var(--muted); font-size: 22px; cursor: pointer; transition: color var(--transition); }
  .modal-close:hover { color: var(--cream); }
  .modal-body { padding: 24px; }
  .modal-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    background: #0f1723;
    margin-bottom: 20px;
    max-height: 200px;
    aspect-ratio: auto;
    height: 160px;
  }
  .modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .modal-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .modal-colors { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
  .modal-color-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
  }
  .modal-color-btn .dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); }
  .modal-color-btn.selected, .modal-color-btn:hover { border-color: var(--gold); color: var(--cream); }
  .modal-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
  .modal-size-btn {
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
  }
  .modal-size-btn.selected, .modal-size-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,118,0.08); }
  .modal-confirm {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--bg);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-family: inherit;
  }
  .modal-confirm:hover { background: var(--gold-light); }
  .modal-confirm:disabled { opacity: 0.4; cursor: not-allowed; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 880px) {
    .section { padding: 64px 32px; }
    #hero { padding: 64px 32px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .manifesto-frame { grid-template-columns: 1fr; gap: 40px; }
    .historia-inner { grid-template-columns: 1fr; gap: 48px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .selos-grid { grid-template-columns: 1fr; }
    .depo-grid { grid-template-columns: 1fr; }
    #header { padding: 0 20px; }
    #nav-links { display: none; }
    #burger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-map { display: none; }
  }
  @media (max-width: 520px) {
    .section { padding: 48px 20px; }
    #hero { padding: 48px 20px; }
    #banner-loja { padding: 60px 24px; }
    #historia { padding: 64px 20px; }
    #clube { padding: 64px 20px; }
    #footer { padding: 48px 20px 24px; }
    .products-grid { grid-template-columns: 1fr; }
    #topbar { flex-direction: column; text-align: center; gap: 6px; }
    .hero-buttons { flex-direction: column; }
    .clube-form { flex-direction: column; }
  }
