:root{
    --black: #070707;
    --black-2: #0D0D0D;
    --panel: #131313;
    --panel-2: #171512;
    --orange: #F2701D;
    --orange-light: #FFA65C;
    --orange-deep: #C2530E;
    --white: #FFFFFF;
    --white-dim: #B4B0AA;
    --white-faint: #706C66;
    --line: rgba(242,112,29,0.16);
    --line-strong: rgba(242,112,29,0.35);
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  body{
    background: var(--black);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
  }
  h1,h2,h3,.display{
    font-family: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.5px;
  }
  a{ color:inherit; text-decoration:none; }
  img{ max-width:100%; display:block; }
  ul{ list-style:none; }
  button{ font-family:inherit; border:none; background:none; cursor:pointer; }

  .wrap{ max-width: 1180px; margin:0 auto; padding: 0 28px; }
  .eyebrow{
    font-weight:700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-size: 11.5px;
    color: var(--orange);
    display:inline-flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width: 22px; height:1px;
    background: var(--orange);
    display:inline-block;
  }

  /* ---------- reveal on scroll ---------- */
  .reveal{
    opacity:0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  }
  .reveal.in-view{ opacity:1; transform: translateY(0); }
  .reveal-1{ transition-delay: .05s; }
  .reveal-2{ transition-delay: .15s; }
  .reveal-3{ transition-delay: .25s; }
  .reveal-4{ transition-delay: .35s; }

  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
    *{ animation:none !important; }
  }

  /* ---------- header ---------- */
  header{
    position: sticky; top:0; z-index: 100;
    background: rgba(7,7,7,0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding: 16px 28px; max-width:1180px; margin:0 auto;
  }
  .brand{
    display:flex; align-items:center; gap:11px;
    font-family: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
    font-size: 20px;
    letter-spacing: 0.3px;
  }
  .brand img{ width:34px; height:34px; border-radius:9px; }
  .brand b{ color: var(--orange); font-weight:600; }
  .nav-links{
    display:flex; gap: 34px;
    font-size: 13.5px;
    font-weight:600;
    color: var(--white-dim);
  }
  .nav-links a{ transition: color .2s ease; }
  .nav-links a:hover{ color: var(--orange-light); }
  .nav-cta{
    background: var(--orange);
    color:#0A0500;
    font-weight:700;
    font-size:13px;
    padding: 11px 22px;
    border-radius: 100px;
    letter-spacing:0.3px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space:nowrap;
  }
  .nav-cta:hover{ background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(242,112,29,0.3); }
  @media (max-width: 820px){ .nav-links{ display:none; } }

  /* ---------- buttons ---------- */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    padding: 17px 30px;
    border-radius: 100px;
    font-weight:700;
    font-size:15px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  }
  .btn-primary{
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    color:#0A0500;
    box-shadow: 0 10px 30px rgba(242,112,29,0.28);
  }
  .btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 36px rgba(242,112,29,0.42); }
  .btn-primary:active{ transform: translateY(0); }
  .btn-ghost{
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.18);
    color: var(--white);
  }
  .btn-ghost:hover{ border-color: var(--orange); color: var(--orange-light); }

  /* ---------- hero ---------- */
  .hero{
    position:relative;
    padding: 120px 0 90px;
    min-height: 88vh;
    display:flex;
    align-items:center;
    background:
      radial-gradient(ellipse 60% 50% at 18% 10%, rgba(242,112,29,0.16), transparent 60%),
      radial-gradient(ellipse 40% 40% at 95% 30%, rgba(242,112,29,0.08), transparent 55%),
      var(--black);
  }
  .hero-grid{
    display:grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items:center;
    width:100%;
  }
  .hero h1{
    font-size: clamp(38px, 5.6vw, 68px);
    color: var(--white);
    margin: 18px 0 24px;
  }
  .hero h1 em{
    font-style: italic;
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .hero p.lead{
    font-size: 18px;
    color: var(--white-dim);
    max-width: 46ch;
    line-height:1.62;
    margin-bottom: 34px;
  }
  .hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 40px; }
  .hero-trust{ display:flex; gap: 26px; flex-wrap:wrap; }
  .hero-trust div{
    display:flex; align-items:center; gap:8px;
    font-size: 13px;
    color: var(--white-dim);
    font-weight:500;
  }
  .hero-trust svg{ width:15px; height:15px; stroke: var(--orange); flex-shrink:0; }

  .hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
  .ring-orb{
    width: min(420px, 90%);
    aspect-ratio: 1;
    position:relative;
    display:flex; align-items:center; justify-content:center;
    animation: floaty 7s ease-in-out infinite;
  }
  @keyframes floaty{
    0%,100%{ transform: translateY(0) rotate(0deg); }
    50%{ transform: translateY(-16px) rotate(2deg); }
  }
  .ring-orb::before{
    content:"";
    position:absolute; inset: 8%;
    border-radius:50%;
    background: radial-gradient(circle at 35% 30%, rgba(242,112,29,0.28), transparent 65%);
    filter: blur(10px);
  }
  .ring-orb svg{ width:100%; height:100%; position:relative; z-index:2; }
  .brand-badge{
    position:absolute;
    bottom: 6%;
    right: 4%;
    display:flex; align-items:center; gap:10px;
    background: rgba(19,19,19,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    padding: 10px 18px 10px 10px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.5);
  }
  .brand-badge img{ width:30px; height:30px; border-radius:8px; }
  .brand-badge span{ font-size:12px; font-weight:700; color: var(--white); letter-spacing:0.3px; }

  @media (max-width: 900px){
    .hero{ padding: 96px 0 70px; min-height: auto; }
    .hero-grid{ grid-template-columns:1fr; }
    .hero-visual{ order:-1; margin-bottom: 10px; }
    .ring-orb{ width: min(280px, 70%); }
  }

  /* ---------- marquee ---------- */
  .marquee{
    background: var(--black-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    overflow:hidden;
    white-space:nowrap;
  }
  .marquee-track{
    display:inline-flex;
    gap: 44px;
    animation: scroll-marquee 26s linear infinite;
  }
  .marquee span{
    font-family: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--white-faint);
    display:inline-flex;
    align-items:center;
    gap:44px;
  }
  .marquee span b{ color: var(--orange); font-style:normal; font-weight:700; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; letter-spacing:1px; font-size:12px; }
  @keyframes scroll-marquee{
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); }
  }

  /* ---------- section shared ---------- */
  section{ padding: 110px 0; }
  .section-head{ max-width: 640px; margin-bottom: 60px; }
  .section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
  .section-head h2{
    font-size: clamp(30px, 4vw, 46px);
    color: var(--white);
    margin-top: 14px;
  }
  .section-head p{
    color: var(--white-dim);
    font-size: 16.5px;
    line-height:1.65;
    margin-top: 16px;
  }
  .bg-alt{ background: var(--black-2); }

  /* ---------- benefícios ---------- */
  .grid3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .b-card{
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px 30px;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, background .3s ease;
  }
  .b-card:hover{
    transform: translateY(-8px);
    border-color: var(--line-strong);
    background: var(--panel-2);
  }
  .b-icon{
    width: 50px; height:50px;
    border-radius: 14px;
    background: rgba(242,112,29,0.1);
    display:flex; align-items:center; justify-content:center;
    margin-bottom: 22px;
    transition: background .3s ease, transform .3s ease;
  }
  .b-card:hover .b-icon{ background: rgba(242,112,29,0.18); transform: scale(1.05); }
  .b-icon svg{ width:24px; height:24px; stroke: var(--orange); fill:none; stroke-width:1.6; }
  .b-card h3{ font-size: 19px; color: var(--white); margin-bottom: 10px; font-weight:600; font-family: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif; }
  .b-card p{ font-size: 14px; color: var(--white-dim); line-height:1.6; }
  @media (max-width: 900px){ .grid3{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 600px){ .grid3{ grid-template-columns: 1fr; } }

  /* ---------- comparativo ---------- */
  .vs-wrap{
    max-width: 960px;
    margin: 0 auto;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow:hidden;
    display:grid;
    grid-template-columns: 1fr 1fr;
  }
  .vs-col{ padding: 46px 38px; }
  .vs-col.hi{
    background: linear-gradient(180deg, rgba(242,112,29,0.09), transparent 70%);
    border-left: 1px solid var(--line-strong);
    position:relative;
  }
  .vs-col.hi::before{
    content: "RECOMENDADO";
    position:absolute; top:0; right:0;
    background: var(--orange);
    color:#0A0500;
    font-size: 10px;
    font-weight:800;
    letter-spacing: 1.5px;
    padding: 7px 14px;
    border-radius: 0 22px 0 14px;
  }
  .vs-col h3{ font-size: 21px; margin-bottom: 22px; color: var(--white-dim); font-weight:600; }
  .vs-col.hi h3{ color: var(--orange-light); }
  .vs-list li{
    font-size: 14.5px;
    color: var(--white-dim);
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display:flex; gap:12px; align-items:flex-start;
  }
  .vs-list li:last-child{ border-bottom:none; }
  .vs-list li svg{ width:16px; height:16px; flex-shrink:0; margin-top:2px; }
  .vs-col:not(.hi) .vs-list li svg{ stroke: var(--white-faint); }
  .vs-col.hi .vs-list li svg{ stroke: var(--orange); }
  .vs-col.hi .vs-list li{ color: var(--white); }
  @media (max-width: 700px){
    .vs-wrap{ grid-template-columns:1fr; }
    .vs-col.hi{ border-left:none; border-top: 1px solid var(--line-strong); }
  }

  /* ---------- vitrine / categorias ---------- */
  .cat-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .cat-card{
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 34px 20px;
    text-align:center;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
    cursor:pointer;
  }
  .cat-card:hover{ transform: translateY(-6px); border-color: var(--line-strong); background: var(--panel-2); }
  .cat-card svg{ width:40px; height:40px; stroke: var(--orange); fill:none; stroke-width:1.3; margin: 0 auto 18px; }
  .cat-card h4{ font-family: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif; font-size:16px; color: var(--white); margin-bottom:4px; font-weight:500; }
  .cat-card p{ font-size:12px; color: var(--white-faint); }
  @media (max-width: 760px){ .cat-grid{ grid-template-columns: repeat(2,1fr); } }

  .catalog-cta{
    text-align:center;
    margin-top: 50px;
  }
  .catalog-cta p{ color: var(--white-dim); font-size:14.5px; margin-bottom:18px; }

  /* ---------- segurança / garantia ---------- */
  .grid4-sm{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .sec-card{
    text-align:center;
    padding: 30px 18px;
  }
  .sec-card svg{ width:32px; height:32px; stroke: var(--orange); fill:none; stroke-width:1.5; margin: 0 auto 16px; }
  .sec-card h4{ font-size:14.5px; color: var(--white); margin-bottom:6px; font-weight:700; }
  .sec-card p{ font-size:12.5px; color: var(--white-faint); line-height:1.5; }
  @media (max-width: 760px){ .grid4-sm{ grid-template-columns: repeat(2,1fr); } }

  .policy-box{
    max-width: 760px;
    margin: 46px auto 0;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 34px 38px;
    display:flex;
    gap: 22px;
    align-items:flex-start;
  }
  .policy-box svg{ width:28px; height:28px; stroke: var(--orange); fill:none; stroke-width:1.5; flex-shrink:0; margin-top:2px; }
  .policy-box h4{ font-size:16px; color: var(--white); margin-bottom: 8px; font-family: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif; font-weight:600; }
  .policy-box p{ font-size:14px; color: var(--white-dim); line-height:1.65; }

  /* ---------- pagamento ---------- */
  .pay-row{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
  .pay-pill{
    display:flex; align-items:center; gap:10px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 13px 24px;
    font-size: 13.5px;
    font-weight:600;
    color: var(--white-dim);
    transition: border-color .2s ease, color .2s ease;
  }
  .pay-pill:hover{ border-color: var(--line-strong); color: var(--white); }
  .pay-pill svg{ width:17px; height:17px; stroke: var(--orange); }

  /* ---------- faq ---------- */
  .faq-list{ max-width: 780px; margin: 0 auto; }
  .faq-item{
    border-bottom: 1px solid var(--line);
    padding: 6px 0;
  }
  .faq-item summary{
    list-style:none;
    display:flex; align-items:center; justify-content:space-between;
    padding: 22px 4px;
    font-family: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-weight:500;
    color: var(--white);
    cursor:pointer;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary .plus{
    width: 26px; height:26px;
    border-radius:50%;
    border: 1px solid var(--line-strong);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
    margin-left: 18px;
    position:relative;
    transition: transform .3s ease, background .3s ease;
  }
  .faq-item summary .plus::before, .faq-item summary .plus::after{
    content:"";
    position:absolute;
    background: var(--orange);
  }
  .faq-item summary .plus::before{ width:10px; height:1.5px; }
  .faq-item summary .plus::after{ width:1.5px; height:10px; }
  .faq-item[open] summary .plus{ transform: rotate(45deg); background: var(--orange); }
  .faq-item[open] summary .plus::before, .faq-item[open] summary .plus::after{ background:#0A0500; }
  .faq-item p{
    color: var(--white-dim);
    font-size: 14.5px;
    line-height:1.7;
    padding: 0 4px 24px;
    max-width: 62ch;
  }

  /* ---------- canais / comunidade ---------- */
  .canais-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 820px; margin: 0 auto; }
  .canal-card{
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 22px;
    text-align:center;
    transition: transform .25s ease, border-color .25s ease;
  }
  .canal-card:hover{ transform: translateY(-5px); border-color: var(--line-strong); }
  .canal-card svg{ width:26px; height:26px; stroke: var(--orange); fill:none; stroke-width:1.6; margin: 0 auto 14px; }
  .canal-card h4{ font-size:15px; color: var(--white); margin-bottom:4px; font-weight:700; }
  .canal-card p{ font-size:12.5px; color: var(--white-faint); }
  @media (max-width: 700px){ .canais-grid{ grid-template-columns: 1fr; } }

  /* ---------- final ---------- */
  .final{
    text-align:center;
    background:
      radial-gradient(ellipse 60% 60% at 50% 0%, rgba(242,112,29,0.16), transparent 65%),
      var(--black);
  }
  .final h2{
    font-size: clamp(32px, 5.2vw, 56px);
    color: var(--white);
    margin: 18px 0 22px;
  }
  .final h2 em{
    font-style: italic;
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .final p{ color: var(--white-dim); max-width: 50ch; margin: 0 auto 36px; font-size: 16.5px; }
  .final .btn{ font-size:16px; padding: 19px 38px; }
  .ship-note{ margin-top: 20px; font-size: 13px; color: var(--white-faint); }

  /* ---------- footer ---------- */
  footer{
    background: var(--black-2);
    border-top: 1px solid var(--line);
    padding: 50px 0 26px;
  }
  .footer-grid{
    display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
  }
  .footer-brand p{ color: var(--white-faint); font-size:13px; margin-top:10px; max-width: 32ch; line-height:1.6; }
  .footer-links{ display:flex; gap: 50px; flex-wrap:wrap; }
  .footer-col h5{ font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color: var(--orange); margin-bottom:14px; }
  .footer-col a{ display:block; font-size:13.5px; color: var(--white-dim); margin-bottom:10px; transition: color .2s ease; }
  .footer-col a:hover{ color: var(--white); }
  footer .bottom{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    padding-top: 22px;
    font-size: 12px;
    color: var(--white-faint);
  }

  /* ---------- sticky mobile cta ---------- */
  .mobile-cta{
    display:none;
  }
  @media (max-width: 820px){
    .mobile-cta{
      display:flex;
      position: fixed;
      bottom: 0; left:0; right:0;
      z-index: 200;
      background: rgba(7,7,7,0.92);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--line-strong);
      padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
      justify-content:center;
    }
    .mobile-cta a{ width:100%; }
    body{ padding-bottom: 78px; }
  }
