/* ==========================================================================
   BROTHERS — Site de Captação de Franqueados
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root{
  --black: #0a0a0a;
  --black-soft: #121212;
  --panel: #161616;
  --red: #d40000;
  --red-2: #ff1f1f;
  --red-dark: #7a0000;
  --cream: #f3f1ec;
  --cream-2: #e9e5db;
  --white: #f7f6f3;
  --gray: #a8a49c;
  --gray-dark: #6b6862;
  --ink: #1a1a1a;

  --display: 'Anton', sans-serif;
  --sans: 'Poppins', sans-serif;

  --container: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(.16,.8,.3,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
html,body{ margin:0; padding:0; max-width: 100%; }
body{
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{ margin:0; }

.container{
  width:100%;
  max-width: var(--container);
  margin:0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 2px solid var(--red-2);
  outline-offset: 3px;
}

/* Offset anchored sections so the fixed header never covers the title */
#hero, #por-que, #quem-somos, #suporte, #modelos, #depoimentos, #form-final, #lead-form{
  scroll-margin-top: 88px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 18px;
  border: 1px solid rgba(212,0,0,.55);
  border-radius: 999px;
  color: #ff5b5b;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow.dark{
  border-color: rgba(212,0,0,.4);
  color: var(--red);
}

.section-title{
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -.01em;
  color: var(--white);
}
.section-title b, .section-title strong{ font-weight: 700; }
.rule{
  width: 90px;
  height: 4px;
  background: var(--red);
  margin: 22px 0 26px;
}
.rule.center{ margin-left:auto; margin-right:auto; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  background: rgba(8,8,8,.72);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s var(--ease);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 76px;
}
.logo{
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: .02em;
  display:flex;
  align-items:center;
  gap:6px;
  color: var(--white);
  flex: none;
}
.logo .mark{
  color: var(--red);
}
.nav-links{
  display:flex;
  gap: 34px;
  font-size: .88rem;
  font-weight: 500;
  color: #cfcdc8;
}
.nav-links a{ position:relative; padding: 4px 0; transition: color .2s; white-space: nowrap; }
.nav-links a:hover{ color: var(--white); }
.nav-links a::after{
  content:'';
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px; background: var(--red);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after{ width:100%; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .88rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor:pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s;
  white-space: nowrap;
}
.btn-primary{
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(212,0,0,.6);
}
.btn-primary:hover{ background: var(--red-2); transform: translateY(-2px); box-shadow: 0 10px 26px -6px rgba(255,31,31,.55); }
.btn-outline{
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
}
.btn-outline:hover{ border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-block{ width:100%; }
.btn-lg{ padding: 16px 32px; font-size: .95rem; }

.header-right{ display:flex; align-items:center; gap:18px; flex:none; }
.header-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display:none;
  flex: none;
  width: 40px; height:40px;
  border:none; background:transparent;
  color:var(--white);
  align-items:center; justify-content:center;
}
.nav-toggle svg{ width:24px; height:24px; }

/* Mobile nav drawer (toggled via .is-open, not inline styles) */
@media (max-width: 720px){
  .nav-links{
    display: flex;
    position: fixed;
    top: 76px; left:0; right:0;
    background: #0a0a0a;
    flex-direction: column;
    padding: 0 28px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s var(--ease), opacity .25s var(--ease), padding .3s var(--ease);
  }
  .nav-links.is-open{
    max-height: 400px;
    opacity: 1;
    padding: 22px 28px 28px;
  }
  .nav-links a{ padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
}
/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position: relative;
  padding: 130px 0 80px;
  background:
    radial-gradient(ellipse 90% 60% at 15% 0%, rgba(212,0,0,.16), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 100%);
  border-bottom: 6px solid var(--red);
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.025) 0 1px, transparent 1px 90px);
  pointer-events:none;
}
.hero-top{
  position: relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items:center;
}
.hero-title{
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .002em;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  text-transform: uppercase;
  color: var(--white);
  overflow-wrap: break-word;
}
.hero-title .line-red{ color: var(--red); display:block; }
.hero-rule{ width: 120px; height:5px; background: var(--red); margin: 26px 0; }
.hero-sub{
  font-size: 1.08rem;
  color: #d8d6d1;
  max-width: 46ch;
  font-weight: 300;
}
.hero-cta-row{
  display:flex;
  gap:16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* Large article proof card, beside the headline like the original deck */
.hero-article-card{
  background: transparent;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.9);
}
.hero-article-card img{
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display:block;
}


/* Lead form: full-width band under the hero top row */
.lead-card{
  position: relative;
  margin-top: 64px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, #171717, #0f0f0f);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 36px 40px 34px;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.85);
}
.lead-card::before{
  content:'';
  position:absolute; top:-1px; left: 40px; right:40px; height:3px;
  background: linear-gradient(90deg, var(--red), transparent 80%);
  border-radius: 3px;
}
.lead-card-head{
  margin-bottom: 26px;
  text-align: center;
}
.lead-card-head h3{ margin-bottom: 8px; }
.lead-card h3{
  font-size: 1.35rem;
  font-weight: 700;
}
.lead-card p.lead-sub{
  color: var(--gray);
  font-size: .87rem;
  max-width: 52ch;
  margin: 0 auto;
}
.lead-fields{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px 20px;
  margin-bottom: 10px;
}
.lead-fields .field{ grid-column: span 2; }
.lead-fields .field:nth-child(4){ grid-column: span 3; }
.lead-fields .field-invest{ grid-column: span 3; }
.field{ margin-bottom: 0; }
.field label{
  display:block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing:.04em;
  text-transform: uppercase;
  color: #9d9a94;
  margin-bottom: 6px;
}
.field input, .field select{
  width:100%;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,.13);
  color: var(--white);
  font-family: var(--sans);
  font-size: .92rem;
  padding: 12px 14px;
  border-radius: 7px;
  transition: border-color .2s;
}
.field input:focus, .field select:focus{ border-color: var(--red); }
.lead-card .btn-block{ max-width: 340px; margin: 22px auto 0; display:flex; }
.lead-note{
  font-size: .72rem;
  color: var(--gray-dark);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}
.form-success{
  display:none;
  text-align:center;
  padding: 20px 4px;
}
.form-success.show{ display:block; }
.form-success svg{ width:46px; height:46px; color: var(--red); margin-bottom: 14px;}
.form-success h4{ font-size: 1.1rem; margin-bottom: 8px; }
.form-success p{ color: var(--gray); font-size: .88rem; }

/* ==========================================================================
   VIDEO / MANIFESTO SECTION
   ========================================================================== */
.manifesto{
  padding: 110px 0;
  background: var(--black);
  position: relative;
}
.manifesto-grid{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items:center;
}
.manifesto-title{
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  color: var(--white);
}
.manifesto-title em{
  font-style: normal;
  color: var(--red);
}
.manifesto-text{
  margin-top: 22px;
  color: #cac7c1;
  font-weight: 300;
  font-size: 1.02rem;
  max-width: 44ch;
}
.manifesto-stats{
  display:flex;
  gap: 34px;
  margin-top: 34px;
}
.manifesto-stats div strong{
  display:block;
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--red);
}
.manifesto-stats div span{
  font-size: .76rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.video-wrap{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.9);
  background: #000;
}
.video-wrap video{
  width:100%;
  display:block;
  aspect-ratio: 9/16;
  object-fit: cover;
  max-height: 640px;
  margin: 0 auto;
}
.video-wrap{ max-width: 360px; margin: 0 auto; }
.video-play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.28);
  cursor:pointer;
  transition: background .25s;
}
.video-play.hide{ opacity:0; pointer-events:none; }
.video-play .circle{
  width: 74px; height:74px;
  border-radius:50%;
  background: rgba(212,0,0,.92);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 0 0 10px rgba(212,0,0,.16);
  transition: transform .25s var(--ease);
}
.video-play:hover .circle{ transform: scale(1.08); }
.video-play svg{ width:26px; height:26px; color:#fff; margin-left:3px; }

/* ==========================================================================
   WHY INVEST (photo + badges)
   ========================================================================== */
.why{
  position: relative;
  min-height: 640px;
  display:flex;
  align-items:center;
  background: #000;
}
.why-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  opacity: .58;
}
.why-bg::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(90deg, #000 8%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.85) 100%);
}
.why-inner{
  position:relative;
  width:100%;
  padding: 90px 0;
}
.why-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items:center;
}
.why-title{
  font-weight: 300;
  font-size: clamp(1.9rem,3.6vw,2.8rem);
  color: var(--white);
}
.why-title b{ font-family: var(--display); font-weight:400; display:block; letter-spacing:.01em; }
.why-list{ display:flex; flex-direction:column; gap: 16px; }
.why-item{
  display:flex;
  align-items:center;
  gap: 14px;
}
.why-icon{
  flex: none;
  width: 34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  color: var(--red);
}
.why-icon svg{ width:22px; height:22px; }
.why-badge{
  background: var(--red);
  color:#fff;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 22px;
  border-radius: 3px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.35);
  flex:1;
}

/* ==========================================================================
   QUEM SOMOS
   ========================================================================== */
.about{
  padding: 110px 0;
  background: var(--black-soft);
}
.about-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items:center;
}
.about-photo{ position:relative; }
.about-photo img{ border-radius: 10px; width:100%; object-fit:cover; aspect-ratio: 4/5; }
.about-stats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: -50px;
  position:relative;
  z-index:2;
  padding: 0 16px;
}
.stat-pill{
  background: var(--red);
  color:#fff;
  font-weight: 600;
  font-size: .85rem;
  padding: 14px 16px;
  border-radius: 4px;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.6);
}
.about-copy p{
  color: #cecbc5;
  font-weight: 300;
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.about-copy p b{ color: var(--white); font-weight:600; }
.about-tag{
  margin-top: 22px;
  font-size: 1.3rem;
  font-weight: 300;
}
.about-tag b{ font-weight:700; display:block; font-size: 1.5rem; }
.about-tag-rule{ width:70px; height:3px; background: var(--red); margin: 10px 0 14px; }

/* ==========================================================================
   PRODUTOS
   ========================================================================== */
.products{
  padding: 110px 0;
  background: var(--black);
}
.products-grid{
  display:grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items:center;
}
.products-copy ul{ margin-top: 26px; display:flex; flex-direction:column; gap:14px; }
.products-copy li{
  display:flex; align-items:center; gap:12px;
  font-size: 1rem; color: #e2e0db; font-weight:400;
}
.products-copy li .dot{
  width: 26px; height:26px; border-radius:50%;
  background: var(--red);
  display:flex;align-items:center;justify-content:center;
  flex:none;
}
.products-copy li .dot svg{ width:14px; height:14px; color:#fff; }
.products-collage img{ border-radius: 10px; box-shadow: 0 30px 70px -30px rgba(0,0,0,.8); }

/* ==========================================================================
   SUPORTE AO FRANQUEADO
   ========================================================================== */
.support{
  padding: 110px 0;
  background: var(--black-soft);
}
.support-head{ text-align:center; max-width: 640px; margin: 0 auto 60px; }
.support-head .rule{ margin-left:auto; margin-right:auto; }
.support-cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.support-card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  overflow:hidden;
}
.support-card img{ width:100%; height: 220px; object-fit:cover; object-position: top; }
.support-card-body{ padding: 26px 26px 30px; }
.support-card-body h4{
  font-size: 1.15rem;
  font-weight:700;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
  display:inline-block;
}
.support-card-body ul{ display:flex; flex-direction:column; gap: 12px; }
.support-card-body li{
  position:relative;
  padding-left: 16px;
  font-size: .92rem;
  color: #cac7c1;
  font-weight:300;
}
.support-card-body li::before{
  content:'';
  position:absolute; left:0; top: 7px;
  width: 4px; height: 4px;
  background: var(--red);
}

/* ==========================================================================
   ARQUITETURA
   ========================================================================== */
.arch{
  padding: 110px 0;
  background: var(--black);
}
.arch-grid{
  display:grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 56px;
  align-items:center;
}
.arch-copy p{ color:#cecbc5; font-weight:300; margin-bottom: 14px; }
.arch-copy p b{ color:var(--white); font-weight:600; }
.arch-collage img{ border-radius: 10px; }

/* ==========================================================================
   MARKET (cream section)
   ========================================================================== */
.market{
  padding: 110px 0;
  background: var(--cream);
  color: var(--ink);
}
.market-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:center;
}
.market .section-title{ color: var(--ink); font-weight:300; }
.market-copy p{
  color:#4b473f;
  font-weight:300;
  font-size:1.02rem;
  margin-bottom:16px;
}
.market-copy p b{ color:var(--ink); font-weight:600; }
.market-cards{ display:flex; flex-direction:column; gap: 16px; }
.market-card{
  background: var(--ink);
  border-radius: 8px;
  overflow:hidden;
  display:flex;
}
.market-card .num{
  background: var(--red);
  color:#fff;
  font-family: var(--display);
  font-size: 1.5rem;
  padding: 18px 26px;
  display:flex; align-items:center;
  min-width: 130px;
  justify-content:center;
  text-align:center;
}
.market-card .info{ padding: 16px 22px; }
.market-card .info strong{ display:block; font-size: .95rem; color:#fff; margin-bottom:2px; }
.market-card .info span{ font-size: .76rem; color: #a19d95; }

/* ==========================================================================
   INVESTMENT MODELS
   ========================================================================== */
.invest{
  padding: 110px 0;
  background: var(--cream);
  color: var(--ink);
}
.invest-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items:center;
}
.invest-head{ margin-bottom: 34px; }
.invest-head .section-title{ color:var(--ink); }
.plans{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.plan-card h4{
  color: var(--red);
  font-weight:700;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.plan-row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  font-size: .86rem;
}
.plan-row span:first-child{ color:#6b675f; }
.plan-row span:last-child{ font-weight:700; color:var(--ink); text-align:right; }
.plan-card .dark-block{
  background: var(--ink);
  color:#fff;
  border-radius: 8px;
  padding: 4px 16px;
  margin: 14px 0;
}
.plan-card .dark-block .plan-row{ border-color: rgba(255,255,255,.1); }
.plan-card .dark-block .plan-row span:first-child{ color:#b3afa7; }
.plan-card .dark-block .plan-row span:last-child{ color:#fff; }
.plan-return{
  border-left: 3px solid var(--red);
  padding-left: 12px;
  margin-top: 14px;
  font-size: .88rem;
}
.plan-return b{ display:block; font-size:1rem; }
.royalties{
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0,0,0,.15);
}
.royalties h5{ color:var(--red); font-size:1rem; margin-bottom:8px; }
.royalties p{ font-size:.86rem; color:#5d594f; margin:2px 0; }
.invest-photo img{ border-radius: 10px; box-shadow: 0 30px 70px -28px rgba(0,0,0,.35); }
.invest-photo{ position: relative; }
.invest-photo .tag{
  position:absolute; bottom:-18px; left: 24px;
  background: var(--red);
  color:#fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight:700;
  font-size: .88rem;
  box-shadow: 0 14px 28px -10px rgba(212,0,0,.5);
}

/* ==========================================================================
   JORNADA / TIMELINE
   ========================================================================== */
.journey{
  padding: 110px 0 130px;
  background: var(--black);
  text-align:center;
}
.journey .rule{ margin-left:auto; margin-right:auto; }
.j-track{
  margin-top: 64px;
  position: relative;
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  padding-top: 34px;
}
/* connecting rail behind the nodes */
.j-track::before{
  content:'';
  position:absolute;
  top: 34px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(212,0,0,.25));
  z-index:0;
}
.j-step{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding: 0 10px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.j-step:hover{ border-color: rgba(212,0,0,.5); transform: translateY(-4px); }
.j-step.is-current{
  background: linear-gradient(180deg, rgba(212,0,0,.14), rgba(212,0,0,.03));
  border-color: rgba(212,0,0,.45);
}
.j-node{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #141414;
  border: 2px solid rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
  margin-top: -26px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.j-node svg{ width: 22px; height: 22px; color: #d8d6d1; }
.j-step:hover .j-node{ border-color: var(--red); }
.j-step.is-current .j-node{
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 6px rgba(212,0,0,.16), 0 10px 24px -8px rgba(212,0,0,.8);
}
.j-step.is-current .j-node svg{ color:#fff; }
.j-index{
  margin-top: 16px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #7d7a75;
}
.j-step.is-current .j-index{ color: var(--red); }
.j-title{
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.35;
  color: #e6e4e0;
}
.j-tag{
  margin-top: auto;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #cfcbc5;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 3px 9px;
}
.j-here{
  white-space: nowrap;
  font-size: .55rem;
  color: var(--red);
  border-color: rgba(212,0,0,.55);
  background: rgba(212,0,0,.1);
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.testi{
  padding: 110px 0;
  background: var(--cream);
  color: var(--ink);
  text-align:center;
}
.testi .rule{ margin-left:auto; margin-right:auto; }
.testi-grid{
  margin-top: 60px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align:left;
}
.testi-card{
  background: var(--ink);
  color: #e5e2db;
  border-radius: 10px;
  padding: 30px 26px;
  border-left: 4px solid var(--red);
  display:flex;
  flex-direction:column;
}
.testi-card p{ font-size: .94rem; font-weight:300; line-height:1.7; flex:1; }
.testi-card .who{ margin-top: 20px; }
.testi-card .who strong{ display:block; color:#fff; font-size:.95rem; }
.testi-card .who span{ font-size:.76rem; color: var(--red); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta{
  position: relative;
  padding: 130px 0;
  background-size: cover;
  background-position: center;
  overflow:hidden;
}
.final-cta::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.62) 55%, rgba(90,0,0,.45));
}
.final-inner{ position:relative; }
.final-center{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.testi .section-title{ color: var(--ink); }
.testi .section-title b{ color: var(--red); }
.final-grid{
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap: 50px;
  align-items:end;
}
.final-title{
  font-family: var(--display);
  text-transform:uppercase;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
}
.final-title .red{ color: var(--red); }
.final-bar{ width:4px; background: var(--red); }
.final-contact{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-top: 26px;
}
.final-contact .ic{
  width:40px; height:40px; border-radius:50%;
  background: var(--red);
  display:flex; align-items:center; justify-content:center;
  flex:none;
}
.final-contact .ic svg{ width:18px; height:18px; color:#fff; }
.final-contact strong{ display:block; font-size:.95rem; }
.final-contact a{ font-size:.85rem; color:#d8d6d1; }
.final-form-card{
  background: rgba(10,10,10,.86);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 50px 0 28px;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo{ font-family: var(--display); font-size:1.4rem; }
.footer-logo .mark{ color:var(--red); }
.footer-tag{ color: var(--gray); font-size:.85rem; margin-top:8px; max-width: 320px; }
.footer-links{ display:flex; gap:60px; flex-wrap:wrap; }
.footer-col h5{ font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color:#9d9a94; margin-bottom:14px; }
.footer-col a, .footer-col p{ display:block; font-size:.88rem; color:#cecbc5; margin-bottom:8px; }
.footer-bottom{
  padding-top: 24px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:.76rem;
  color: var(--gray-dark);
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-cta{
  position: fixed;
  bottom:0; left:0; right:0;
  z-index: 400;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 16px;
  display:none;
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal{
  opacity:0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in{ opacity:1; transform:none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px){
  .manifesto-grid, .why-grid, .about-grid, .products-grid,
  .arch-grid, .market-grid, .invest-grid, .final-grid{
    grid-template-columns: 1fr;
  }
  .manifesto{ padding: 80px 0; }
  .video-wrap{ max-width: 320px; }
  .support-cols{ grid-template-columns: 1fr; }
  .testi-grid{ grid-template-columns: 1fr; }
  .plans{ grid-template-columns: 1fr; }
  .j-track{ grid-template-columns: repeat(4, 1fr); row-gap: 44px; }
  .j-track::before{ display:none; }
  .final-grid{ align-items:start; }
  .about-photo img{ aspect-ratio: 16/10; }
  .lead-fields{ grid-template-columns: 1fr 1fr; }
  .lead-fields .field, .lead-fields .field:nth-child(4), .lead-fields .field-invest{ grid-column: span 1; }
}

/* Hero keeps text + article side-by-side down to tablet widths,
   just tightening proportions — it only stacks on true phone widths below. */
@media (max-width: 900px){
  .hero-top{
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
  }
  .hero-title{ font-size: clamp(1.7rem, 4.6vw, 2.6rem); }
  .hero-sub{ font-size: .95rem; }
  .hero-cta-row{ gap: 12px; }
  .hero-cta-row .btn{ padding: 13px 20px; font-size: .85rem; }
}

@media (max-width: 640px){
  .hero-top{ grid-template-columns: 1fr; gap: 40px; }
  .hero-title{ font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero-article-card{ max-width: 420px; margin: 0 auto; }
}

@media (max-width: 720px){
  .nav-toggle{ display:flex; }
  .header-cta .btn-outline{ display:none; }
  .hero{ padding: 110px 0 60px; }
  .hero-cta-row{ flex-direction:column; }
  .hero-cta-row .btn{ width:100%; }
  .lead-card{ padding: 28px 22px 26px; margin-top: 46px; }
  .lead-card::before{ left:22px; right:22px; }
  .lead-fields{ grid-template-columns: 1fr; }
  .lead-card .btn-block{ max-width: none; }
  .about-stats{ grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .support-card img{ height: 180px; }
  .market-card{ flex-direction:column; }
  .market-card .num{ min-width:0; padding: 12px; }
  .j-track{ grid-template-columns: repeat(2, 1fr); }
  .site-footer .footer-grid{ flex-direction:column; }
  .footer-links{ gap: 30px; }
  body{ padding-bottom: 78px; }
  .sticky-cta{ display:block; }
  .final-form-card{ padding: 22px; }
}

@media (max-width: 480px){
  .j-track{ grid-template-columns: 1fr; }
}
