:root{
  --bg:#f6f3ee;
  --ink:#111111;
  --muted:#6f6a63;
  --line:#d7d1c9;
  --red:#ff3b30;
  --red-dark:#d92b23;
  --sand:#e9e1d6;
  --cream:#fffaf3;
  --black:#0b0b0b;
  --white:#ffffff;
  --max:1280px;
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--ink);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button,input,textarea,select{font:inherit}
img,svg{display:block;max-width:100%}
.container{width:min(var(--max),calc(100% - 40px));margin:auto}
.section{padding:120px 0}
.label{
  display:inline-flex;align-items:center;gap:10px;
  font-size:12px;font-weight:900;letter-spacing:.14em;text-transform:uppercase;
}
.label::before{content:"";width:24px;height:2px;background:var(--red)}
.reveal{opacity:0;transform:translateY(28px);transition:.7s cubic-bezier(.2,.7,.2,1)}
.reveal.show{opacity:1;transform:none}

#progress{
  position:fixed;top:0;left:0;height:3px;background:var(--red);
  width:0;z-index:1000;
}

nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  transition:.25s ease;
}
nav.scrolled{
  background:rgba(246,243,238,.92);
  backdrop-filter:blur(15px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.brand{
  display:flex;align-items:center;gap:12px;
  font-weight:900;letter-spacing:-.04em;font-size:19px;
}
.brand-symbol{
  width:42px;height:42px;border-radius:50%;
  background:var(--red);display:grid;place-items:center;color:white;font-weight:900;
}
.nav-links{display:flex;align-items:center;gap:30px;font-size:13px;font-weight:800}
.nav-cta{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0 20px;border-radius:999px;
  background:var(--ink);color:white;font-size:13px;font-weight:900;
}
.menu{
  display:none;width:44px;height:44px;border-radius:50%;border:0;background:var(--ink);color:white;
}

.hero{
  min-height:100vh;
  padding:140px 0 52px;
  display:flex;align-items:center;
}
.hero-grid{
  display:grid;grid-template-columns:1.12fr .88fr;gap:48px;align-items:center;
}
.hero-copy h1{
  margin:18px 0 24px;
  font-size:clamp(64px,9vw,138px);
  line-height:.79;
  letter-spacing:-.085em;
  font-weight:900;
}
.hero-copy h1 span{color:var(--red)}
.hero-copy p{
  font-size:20px;line-height:1.55;color:#4f4a45;max-width:680px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:34px}
.btn{
  min-height:52px;padding:0 22px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border:1px solid var(--ink);font-size:14px;font-weight:900;transition:.2s;
}
.btn:hover{transform:translateY(-2px)}
.btn-dark{background:var(--ink);color:white}
.btn-light{background:transparent}
.btn-red{background:var(--red);border-color:var(--red);color:white}
.hero-stats{
  display:flex;gap:16px;flex-wrap:wrap;margin-top:34px;padding-top:22px;border-top:1px solid var(--line);
}
.stat{
  min-width:140px;
}
.stat strong{display:block;font-size:24px;letter-spacing:-.04em}
.stat span{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.08em}

.hero-scene{
  min-height:660px;
  position:relative;
  display:grid;place-items:center;
}
.poster{
  position:absolute;inset:15px 0 0 50px;
  background:var(--red);
  border-radius:42px 42px 12px 42px;
  overflow:hidden;
  transform:rotate(4deg);
}
.poster::before{
  content:"ATLAS";
  position:absolute;left:-28px;bottom:-64px;
  font-size:200px;font-weight:900;color:rgba(255,255,255,.12);
  letter-spacing:-.08em;
}
.poster-lines{
  position:absolute;inset:0;
  background:
    repeating-linear-gradient(90deg,rgba(255,255,255,.09) 0 1px,transparent 1px 44px),
    repeating-linear-gradient(0deg,rgba(255,255,255,.09) 0 1px,transparent 1px 44px);
}
.orbit-a,.orbit-b{
  position:absolute;border:1px solid rgba(255,255,255,.32);border-radius:50%;
  left:50%;top:46%;transform:translate(-50%,-50%);
}
.orbit-a{width:470px;height:470px}
.orbit-b{width:340px;height:340px}
.poi{
  position:absolute;width:14px;height:14px;border-radius:50%;background:white;
  box-shadow:0 0 0 7px rgba(255,255,255,.12);
}
.p1{left:25%;top:24%}.p2{right:22%;top:33%}.p3{right:27%;bottom:22%}.p4{left:31%;bottom:25%}
.totem{
  position:relative;z-index:4;width:245px;height:500px;
  background:#151515;border-radius:28px 28px 16px 16px;padding:11px;
  box-shadow:0 45px 80px rgba(0,0,0,.30);
  transform:perspective(900px) rotateY(-8deg);
}
.screen{
  height:438px;border-radius:19px;background:var(--cream);color:var(--ink);
  padding:22px;display:flex;flex-direction:column;justify-content:space-between;
  overflow:hidden;position:relative;
}
.screen::after{
  content:"";position:absolute;left:-35%;top:-20%;width:25%;height:160%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent);
  transform:rotate(18deg);animation:shine 4.8s ease-in-out infinite;
}
.screen small{font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.14em}
.screen h3{
  margin:0;font-size:46px;line-height:.86;letter-spacing:-.07em;
}
.screen h3 span{color:var(--red)}
.screen-bottom{
  border-top:2px solid var(--ink);padding-top:12px;
  display:flex;justify-content:space-between;gap:10px;align-items:end;
}
.screen-bottom p{font-size:11px;line-height:1.35;margin:0;max-width:120px}
.screen-bottom b{
  width:40px;height:40px;border-radius:50%;background:var(--red);color:white;display:grid;place-items:center;
}
.base{width:66%;height:28px;background:#151515;border-radius:7px 7px 16px 16px;margin:10px auto 0}
.scene-note{
  position:absolute;z-index:5;background:var(--cream);border:1px solid rgba(0,0,0,.12);
  padding:14px 16px;border-radius:18px;box-shadow:0 15px 40px rgba(0,0,0,.16)
}
.scene-note small{display:block;font-size:9px;font-weight:900;letter-spacing:.13em;text-transform:uppercase;color:#7c756e}
.scene-note b{display:block;font-size:14px;margin-top:4px}
.note-a{left:0;top:130px}.note-b{right:-10px;bottom:95px}

.ticker{
  background:var(--ink);color:white;overflow:hidden;border-block:1px solid #000;
}
.ticker-track{
  display:flex;width:max-content;animation:ticker 24s linear infinite;
}
.ticker span{
  padding:18px 28px;border-right:1px solid rgba(255,255,255,.16);
  font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.1em;
}
.ticker span strong{color:var(--red)}

.editorial{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:start;
}
.editorial h2{
  font-size:clamp(48px,6.7vw,94px);line-height:.9;letter-spacing:-.07em;margin:18px 0 0;
}
.editorial-text{
  padding-left:38px;border-left:1px solid var(--line);
}
.editorial-text p{
  font-size:clamp(27px,3.4vw,48px);line-height:1.08;letter-spacing:-.04em;margin:0;
}
.editorial-text p span{color:var(--red)}
.editorial-text .small{
  margin-top:28px;font-size:16px;line-height:1.7;color:var(--muted);max-width:680px;
}

.black-section{
  background:var(--black);color:white;
}
.black-section .label::before{background:var(--red)}
.black-section .section-copy{color:#9f9a95}
.section-head{
  display:flex;justify-content:space-between;gap:40px;align-items:end;
}
.section-head h2{
  font-size:clamp(50px,6.6vw,92px);line-height:.88;letter-spacing:-.07em;margin:18px 0 0;
  max-width:870px;
}
.section-copy{max-width:580px;font-size:17px;line-height:1.65;color:var(--muted)}

.story-grid{
  margin-top:54px;display:grid;grid-template-columns:1.2fr .8fr;gap:16px;
}
.story-main,.story-side{
  border-radius:32px;overflow:hidden;position:relative;
}
.story-main{
  min-height:650px;background:var(--cream);color:var(--ink);padding:34px;
}
.story-main h3{
  font-size:clamp(50px,6vw,84px);line-height:.9;letter-spacing:-.065em;margin:0;max-width:700px;
}
.story-main p{font-size:16px;line-height:1.65;color:var(--muted);max-width:620px}
.story-main .visual{
  position:absolute;right:20px;bottom:0;width:54%;height:58%;
}
.city-line{
  position:absolute;left:0;right:0;bottom:0;height:42%;
  background:linear-gradient(to top,#d9d2c8,transparent);
  clip-path:polygon(0 100%,0 55%,7% 55%,7% 32%,15% 32%,15% 62%,22% 62%,22% 18%,32% 18%,32% 50%,39% 50%,39% 29%,48% 29%,48% 65%,57% 65%,57% 38%,67% 38%,67% 54%,76% 54%,76% 20%,84% 20%,84% 68%,92% 68%,92% 44%,100% 44%,100% 100%);
}
.billboard{
  position:absolute;right:11%;bottom:22%;width:170px;height:240px;background:#111;border-radius:18px;padding:8px;transform:rotate(-4deg);
}
.billboard div{height:100%;background:var(--red);border-radius:11px;padding:15px;color:white;display:flex;flex-direction:column;justify-content:space-between}
.billboard strong{font-size:26px;line-height:.9}
.billboard small{font-size:9px;text-transform:uppercase;letter-spacing:.12em}
.story-side{display:grid;gap:16px}
.story-card{
  min-height:317px;border-radius:32px;padding:28px;background:#1a1a1a;border:1px solid rgba(255,255,255,.12);
  display:flex;flex-direction:column;justify-content:space-between;
}
.story-card.red{background:var(--red);border-color:var(--red)}
.story-card small{font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:#aaa}
.story-card.red small{color:#ffd9d6}
.story-card h4{font-size:38px;line-height:.95;letter-spacing:-.045em;margin:0}
.story-card p{color:#9d9d9d;line-height:1.55;margin:10px 0 0;font-size:14px}
.story-card.red p{color:#ffe6e3}

/* =========================
   COMO FUNCIONA
========================= */

.how-it-works {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}


/* =========================
   CABEÇALHO
========================= */

.how-header {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.how-header h2 {
  margin: 18px 0 0;

  max-width: 850px;

  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 900;

  line-height: 0.9;
  letter-spacing: -0.07em;
}

.how-header h2 span {
  color: var(--red);
}

.how-header > p {
  max-width: 480px;

  margin: 0;

  font-size: 17px;
  line-height: 1.65;

  color: var(--muted);
}


/* =========================
   CONTAINER DOS CARDS
========================= */

.how-timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 14px;

  margin-top: 55px;
}


/* Linha que conecta os cards */

.how-timeline::before {
  content: "";

  position: absolute;

  top: 52px;
  left: 6%;
  right: 6%;

  height: 1px;

  background: var(--line);

  z-index: 0;
}


/* =========================
   CARD
========================= */

.how-step {
  position: relative;
  z-index: 1;

  min-height: 390px;

  padding: 28px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--line);

  border-radius: 30px;

  background: var(--cream);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}


.how-step:hover {
  transform: translateY(-7px);

  border-color: rgba(255, 59, 48, 0.4);

  box-shadow:
    0 22px 50px rgba(17, 17, 17, 0.08);
}


/* Efeito decorativo no canto */

.how-step::after {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  right: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: var(--red);

  opacity: 0;

  transform: scale(0.5);

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;

  pointer-events: none;
}


.how-step:hover::after {
  opacity: 0.06;

  transform: scale(1);
}


/* =========================
   NÚMERO
========================= */

.how-number {
  position: relative;
  z-index: 2;

  margin-bottom: 38px;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.15em;

  color: #555;
}


/* =========================
   ÍCONE
========================= */

.how-icon {
  position: relative;
  z-index: 2;

  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  margin-bottom: 38px;

  border-radius: 50%;

  background: var(--ink);

  color: white;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.how-icon svg {
  width: 25px;
  height: 25px;
}


.how-step:hover .how-icon {
  background: var(--red);

  transform:
    rotate(-5deg)
    scale(1.06);
}


/* =========================
   CONTEÚDO
========================= */

.how-content {
  position: relative;
  z-index: 2;

  margin-top: 0;
}


.how-content > span {
  display: block;

  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.13em;

  color: var(--red);
}


.how-content h3 {
  margin: 0 0 14px;

  max-width: 270px;

  font-size: 28px;
  font-weight: 800;

  line-height: 1.02;

  letter-spacing: -0.045em;

  color: var(--ink);
}


.how-content p {
  margin: 0;

  max-width: 280px;

  font-size: 14px;

  line-height: 1.55;

  color: var(--muted);
}


/* =========================
   PARTE INFERIOR
========================= */

.how-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 30px;

  padding-top: 26px;

  border-top: 1px solid var(--line);
}


.how-bottom p {
  margin: 0;

  max-width: 550px;

  font-size: 15px;

  line-height: 1.6;

  color: var(--muted);
}


.how-bottom strong {
  color: var(--ink);
}


/* =========================
   RESPONSIVO - TABLET
========================= */

@media (max-width: 1050px) {

  .how-header {
    grid-template-columns: 1fr;

    gap: 25px;
  }


  .how-header > p {
    max-width: 650px;
  }


  .how-timeline {
    grid-template-columns: repeat(2, 1fr);
  }


  .how-timeline::before {
    display: none;
  }


  .how-step {
    min-height: 370px;
  }

}


/* =========================
   RESPONSIVO - CELULAR
========================= */

@media (max-width: 650px) {

  .how-header h2 {
    font-size: 50px;

    line-height: 0.92;
  }


  .how-header > p {
    font-size: 16px;
  }


  .how-timeline {
    grid-template-columns: 1fr;

    gap: 12px;

    margin-top: 42px;
  }


  .how-step {
    min-height: auto;

    padding: 24px;

    border-radius: 24px;
  }


  .how-number {
    margin-bottom: 26px;
  }


  .how-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 28px;
  }


  .how-icon svg {
    width: 23px;
    height: 23px;
  }


  .how-content h3 {
    max-width: none;

    font-size: 29px;

    line-height: 1;
  }


  .how-content p {
    max-width: none;

    font-size: 14px;
  }


  .how-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }


  .how-bottom .btn {
    width: 100%;
  }

}

.audience{
  background:var(--sand);
}
.audience-grid{
  margin-top:48px;display:grid;grid-template-columns:1fr 1fr;gap:18px;
}
.audience-card{
  min-height:560px;border-radius:34px;padding:34px;display:flex;flex-direction:column;justify-content:space-between;position:relative;overflow:hidden;
}
.audience-card.light{background:var(--cream)}
.audience-card.red{background:var(--red);color:white}
.audience-card .tag{
  display:inline-flex;align-self:flex-start;padding:8px 12px;border-radius:999px;border:1px solid currentColor;
  font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;
}
.audience-card h3{font-size:clamp(46px,5.4vw,72px);line-height:.91;letter-spacing:-.06em;margin:0;max-width:560px}
.audience-card p{font-size:15px;line-height:1.6;max-width:520px}
.audience-card.light p{color:var(--muted)}
.audience-card.red p{color:#ffe4e1}
.list{display:grid;gap:0}
.list div{padding:13px 0;border-top:1px solid rgba(0,0,0,.14);font-size:13px;font-weight:800}
.red .list div{border-color:rgba(255,255,255,.27)}

.network{
  background:var(--cream);
}
.network-board{
  margin-top:48px;border:1px solid var(--line);border-radius:34px;overflow:hidden;background:white;
}
.network-top{
  padding:26px 30px;border-bottom:1px solid var(--line);display:flex;justify-content:space-between;gap:20px;align-items:center;
}
.network-top strong{font-size:20px}
.network-top span{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.1em}
.map{
  height:560px;position:relative;background:
  radial-gradient(circle at 50% 50%,rgba(255,59,48,.09),transparent 28%),
  repeating-linear-gradient(90deg,#ece9e4 0 1px,transparent 1px 50px),
  repeating-linear-gradient(0deg,#ece9e4 0 1px,transparent 1px 50px);
  overflow:hidden;
}
.map::before{
  content:"";position:absolute;inset:12%;border:1px solid rgba(255,59,48,.2);border-radius:50%;
}
.map::after{
  content:"";position:absolute;inset:27%;border:1px dashed rgba(255,59,48,.35);border-radius:50%;
}
.map-center{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:150px;height:150px;border-radius:50%;background:var(--ink);color:white;display:grid;place-items:center;text-align:center;z-index:3;
}
.map-center strong{font-size:24px}
.map-center small{display:block;color:#aaa;margin-top:4px}
.map-node{
  position:absolute;width:18px;height:18px;border-radius:50%;background:var(--red);
  box-shadow:0 0 0 8px rgba(255,59,48,.12);z-index:4;
}
.map-node::after{
  content:attr(data-label);position:absolute;left:26px;top:-3px;white-space:nowrap;font-size:11px;font-weight:900;
}
.n1{left:20%;top:26%}.n2{left:38%;top:18%}.n3{right:20%;top:28%}.n4{left:28%;bottom:20%}.n5{right:25%;bottom:18%}

.quote{
  background:var(--red);color:white;padding:100px 0;
}
.quote p{
  margin:0;font-size:clamp(48px,7vw,100px);line-height:.91;letter-spacing:-.065em;max-width:1100px;
}
.quote p span{color:#30100d}
.quote-foot{
  margin-top:40px;padding-top:18px;border-top:1px solid rgba(255,255,255,.35);
  display:flex;justify-content:space-between;gap:30px;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.1em;
}

.faq-grid{display:grid;grid-template-columns:.7fr 1.3fr;gap:70px}
.faq-title h2{font-size:clamp(48px,6vw,80px);line-height:.92;letter-spacing:-.06em;margin:18px 0 0}
.faq-item{border-top:1px solid var(--line)}
.faq-q{
  width:100%;padding:22px 0;border:0;background:none;display:flex;justify-content:space-between;text-align:left;
  font-size:18px;font-weight:900;color:var(--ink);
}
.faq-q b{font-size:25px;color:var(--red);transition:.2s}
.faq-a{max-height:0;overflow:hidden;transition:.25s}
.faq-a p{margin:0 0 22px;color:var(--muted);line-height:1.6}
.faq-item.open .faq-a{max-height:160px}
.faq-item.open .faq-q b{transform:rotate(45deg)}

/* =========================
   CONTATO
========================= */

.contact {
  position: relative;

  background: var(--ink);
  color: white;

  overflow: hidden;
}


/* detalhe decorativo */

.contact::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -180px;
  left: -180px;

  border-radius: 50%;

  border: 1px solid rgba(255, 59, 48, 0.18);

  pointer-events: none;
}


.contact::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  right: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: rgba(255, 59, 48, 0.07);

  pointer-events: none;
}


/* =========================
   GRID
========================= */

.contact-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 0.9fr;

  gap: 70px;

  align-items: center;
}


/* =========================
   TEXTO
========================= */

.contact .label {
  color: white;
}


.contact h2 {
  margin: 18px 0 24px;

  max-width: 720px;

  font-size: clamp(58px, 8vw, 110px);
  font-weight: 900;

  line-height: 0.82;
  letter-spacing: -0.075em;
}


.contact h2 span {
  color: var(--red);
}


.contact p {
  max-width: 600px;

  margin: 0;

  font-size: 17px;
  line-height: 1.65;

  color: #a8a8a8;
}


/* =========================
   FORMULÁRIO
========================= */

.form {
  position: relative;

  padding: 28px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 30px;

  background: #171717;

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.24);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}


.form:hover {
  border-color: rgba(255, 255, 255, 0.18);
}


/* =========================
   GRID DOS CAMPOS
========================= */

.form-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 14px;
}


.field {
  display: grid;

  gap: 8px;
}


.field.full {
  grid-column: 1 / -1;
}


/* =========================
   LABELS
========================= */

.form label {
  font-size: 10px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: #8d8d8d;
}


/* =========================
   INPUTS / SELECT / TEXTAREA
========================= */

.form input,
.form select,
.form textarea {
  width: 100%;

  min-height: 52px;

  padding: 0 14px;

  border: 1px solid #343434;

  border-radius: 14px;

  background: #0f0f0f;

  color: white;

  outline: none;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


/* foco */

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--red);

  background: #121212;

  box-shadow:
    0 0 0 3px rgba(255, 59, 48, 0.08);
}


/* placeholder */

.form input::placeholder,
.form textarea::placeholder {
  color: #626262;
}


/* =========================
   SELECT
========================= */

.form select {
  cursor: pointer;
}


/* =========================
   TEXTAREA FIXO
========================= */

.form textarea {
  height: 125px;

  min-height: 125px;
  max-height: 125px;

  padding: 14px;

  resize: none;

  overflow-y: auto;

  line-height: 1.55;
}


/* scrollbar textarea */

.form textarea::-webkit-scrollbar {
  width: 6px;
}


.form textarea::-webkit-scrollbar-track {
  background: transparent;
}


.form textarea::-webkit-scrollbar-thumb {
  background: #3b3b3b;

  border-radius: 10px;
}


.form textarea::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}


/* =========================
   BOTÃO
========================= */

.form .btn {
  width: 100%;

  min-height: 54px;

  margin-top: 16px;

  border-radius: 999px;

  font-weight: 900;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.form .btn-red {
  background: var(--red);

  border-color: var(--red);

  color: white;

  box-shadow:
    0 14px 35px rgba(255, 59, 48, 0.14);
}


.form .btn-red:hover {
  transform: translateY(-3px);

  background: var(--red-dark);

  border-color: var(--red-dark);

  box-shadow:
    0 18px 42px rgba(255, 59, 48, 0.22);
}


/* =========================
   TEXTO ABAIXO DO BOTÃO
========================= */

.form-note {
  margin-top: 12px;

  text-align: center;

  font-size: 10px;
  line-height: 1.5;

  color: #666;
}


/* =========================
   RESPONSIVO - TABLET
========================= */

@media (max-width: 980px) {

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .contact h2 {
    max-width: 800px;
  }


  .contact p {
    max-width: 700px;
  }

}


/* =========================
   RESPONSIVO - CELULAR
========================= */

@media (max-width: 650px) {

  .contact h2 {
    font-size: 62px;

    line-height: 0.86;
  }


  .contact p {
    font-size: 16px;
  }


  .form {
    padding: 20px;

    border-radius: 24px;
  }


  .form-grid {
    grid-template-columns: 1fr;

    gap: 13px;
  }


  .field.full {
    grid-column: auto;
  }


  .form input,
  .form select {
    min-height: 50px;
  }


  .form textarea {
    height: 120px;

    min-height: 120px;
    max-height: 120px;
  }


  .form .btn {
    min-height: 52px;
  }

}

footer{
  background:var(--ink);color:white;padding:36px 0;border-top:1px solid rgba(255,255,255,.11)
}
.footer-top{display:flex;justify-content:space-between;align-items:end;gap:30px}
.footer-links{display:flex;gap:22px;color:#888;font-size:12px;font-weight:800}
.footer-bottom{
  display:flex;justify-content:space-between;gap:20px;padding-top:18px;margin-top:28px;border-top:1px solid rgba(255,255,255,.1);
  font-size:10px;color:#5f5f5f;text-transform:uppercase;letter-spacing:.08em;
}

@keyframes ticker{to{transform:translateX(-50%)}}
@keyframes shine{
  0%,60%{left:-35%}
  100%{left:130%}
}

@media(max-width:980px){
  .nav-links{display:none}
  .nav-cta{display:none}
  .menu{display:grid;place-items:center}
  .nav-links.mobile{
    display:flex;position:absolute;left:20px;right:20px;top:74px;background:var(--bg);border:1px solid var(--line);
    border-radius:22px;padding:20px;flex-direction:column;align-items:flex-start;box-shadow:0 18px 45px rgba(0,0,0,.13)
  }
  .hero-grid,.editorial,.section-head,.story-grid,.contact-grid,.faq-grid{grid-template-columns:1fr}
  .section-head{align-items:start}
  .editorial-text{padding-left:0;border-left:0;border-top:1px solid var(--line);padding-top:30px}
  .hero-scene{min-height:590px}
  .steps{grid-template-columns:1fr 1fr}
  .step:nth-child(2){border-right:0}
  .step:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .audience-grid{grid-template-columns:1fr}
}
@media(max-width:680px){
  .container{width:min(var(--max),calc(100% - 24px))}
  .nav-inner{height:70px}
  .nav-links.mobile{top:66px;left:12px;right:12px}
  .hero{padding-top:105px}
  .hero-copy h1{font-size:clamp(58px,18vw,80px)}
  .hero-copy p{font-size:17px}
  .hero-actions .btn{width:100%}
  .hero-stats{flex-direction:column}
  .hero-scene{min-height:500px}
  .poster{left:20px;border-radius:30px 30px 8px 30px}
  .orbit-a{width:340px;height:340px}.orbit-b{width:250px;height:250px}
  .totem{width:190px;height:390px}
  .screen{height:338px}
  .screen h3{font-size:36px}
  .scene-note{display:none}
  .section{padding:84px 0}
  .editorial h2{font-size:52px}
  .editorial-text p{font-size:34px}
  .section-head h2{font-size:50px}
  .story-main{min-height:600px;padding:24px}
  .story-main h3{font-size:50px}
  .story-main .visual{width:88%;height:52%}
  .story-card h4{font-size:34px}
  .steps{grid-template-columns:1fr}
  .step{border-right:0;border-bottom:1px solid var(--line)!important}
  .step:last-child{border-bottom:0!important}
  .audience-card{min-height:500px;padding:24px}
  .audience-card h3{font-size:48px}
  .map{height:420px}
  .map-node::after{display:none}
  .quote{padding:75px 0}
  .quote p{font-size:46px}
  .quote-foot{flex-direction:column}
  .contact h2{font-size:62px}
  .form-grid{grid-template-columns:1fr}
  .field.full{grid-column:auto}
  .footer-top,.footer-bottom{flex-direction:column;align-items:flex-start}
  .footer-links{flex-wrap:wrap}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none}
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}