/* ===========================================================
   W.DRAPER — Marketing Digital · Proposta
   Tokens: ink #0B0E0D · paper #F5F6F2 · teal #09B0AD
           teal-deep #06302E · gold #F3B94D
   Type: Montserrat (display/body) + Space Mono (eyebrows/dados)
   Signature: o corte diagonal (do triângulo da marca)
   =========================================================== */

:root{
  --ink:#0B0E0D;
  --paper:#F5F6F2;
  --paper-2:#ECEEE9;
  --teal:#09B0AD;
  --teal-deep:#06302E;
  --teal-deeper:#041F1E;
  --gold:#F3B94D;
  --white:#FFFFFF;
  --line: rgba(11,14,13,.12);
  --line-on-dark: rgba(245,246,242,.16);
  --shadow: 0 20px 50px -20px rgba(6,48,46,.35);
  --cut: 3.5vw;
  --ff-display: 'Montserrat', sans-serif;
  --ff-mono: 'Space Mono', monospace;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--ff-display);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--ff-display); }
p{ margin:0; }
.container{ max-width:1180px; margin:0 auto; padding:0 24px; }

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

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

.eyebrow{
  font-family:var(--ff-mono);
  font-size:12.5px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--teal);
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--teal);
  display:inline-block;
}
.eyebrow.on-dark{ color:var(--gold); }
.eyebrow.on-dark::before{ background:var(--gold); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--ff-display);
  font-weight:700;
  font-size:15px;
  padding:16px 26px;
  border-radius:2px;
  border:2px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:var(--teal);
  color:var(--white);
  box-shadow:0 14px 30px -12px rgba(9,176,173,.55);
}
.btn-primary:hover{ background:#0bc4c0; }
.btn-dark{
  background:var(--ink);
  color:var(--paper);
}
.btn-dark:hover{ background:#000; }
.btn-ghost{
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}
.btn-ghost:hover{ background:var(--ink); color:var(--paper); }
.btn-ghost.on-dark{ border-color:var(--line-on-dark); color:var(--paper); }
.btn-ghost.on-dark:hover{ background:var(--paper); color:var(--teal-deep); }
.btn-gold{
  background:var(--gold);
  color:var(--teal-deeper);
  box-shadow:0 14px 30px -14px rgba(243,185,77,.6);
}
.btn-gold:hover{ background:#f7c765; }
.btn svg{ width:16px; height:16px; flex:none; }
.btn-block{ width:100%; justify-content:center; }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(245,246,242,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:14px; padding-bottom:14px;
}
.brand img{ height:34px; width:auto; }
.main-nav{ display:flex; align-items:center; gap:34px; }
.main-nav a{
  font-size:13.5px; font-weight:600; letter-spacing:.02em;
  color:var(--ink); opacity:.75; position:relative;
}
.main-nav a:hover{ opacity:1; }
.header-cta{ display:flex; align-items:center; gap:18px; }
.nav-toggle{ display:none; }

/* ---------- hero ---------- */
.hero{
  position:relative;
  background:var(--teal-deep);
  color:var(--paper);
  overflow:hidden;
  padding-top:76px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  min-height:640px;
  gap:40px;
}
.hero-copy{ position:relative; z-index:3; padding:56px 0 64px; }
.hero-copy .eyebrow{ margin-bottom:22px; }
.hero h1{
  font-size:clamp(38px,5.2vw,64px);
  line-height:1.02;
  font-weight:800;
  letter-spacing:-.01em;
  margin-bottom:22px;
}
.hero h1 em{
  font-style:normal;
  color:var(--gold);
}
.hero-sub{
  font-size:17px;
  line-height:1.6;
  color:rgba(245,246,242,.78);
  max-width:480px;
  margin-bottom:34px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:46px; }
.hero-meta{
  display:flex; gap:32px; flex-wrap:wrap;
  font-family:var(--ff-mono); font-size:12px; letter-spacing:.04em;
  color:rgba(245,246,242,.6);
}
.hero-meta strong{ color:var(--paper); display:block; font-family:var(--ff-display); font-size:20px; font-weight:800; margin-bottom:2px; }

.hero-visual{
  position:relative; z-index:2;
  height:100%;
  display:flex; align-items:center; justify-content:center;
}
.hero-panel{
  position:relative;
  width:100%;
  aspect-ratio:1/1.02;
  max-width:440px;
  background:linear-gradient(155deg,#0c3f3c,#082826);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
}
.result-card{
  background:var(--paper);
  color:var(--ink);
  width:78%;
  padding:26px 24px 22px;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.5);
}
.result-card .rc-top{
  display:flex; justify-content:space-between; align-items:center;
  font-family:var(--ff-mono); font-size:11px; letter-spacing:.08em;
  color:#6b756f; margin-bottom:18px; text-transform:uppercase;
}
.rc-dot{ width:8px; height:8px; border-radius:50%; background:var(--teal); display:inline-block; margin-right:6px; }
.rc-bars{ display:flex; align-items:flex-end; gap:8px; height:110px; margin-bottom:14px; }
.rc-bars span{
  flex:1;
  background:linear-gradient(180deg,var(--teal),#067875);
  border-radius:2px 2px 0 0;
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) both;
}
.rc-bars span:nth-child(1){ height:34%; animation-delay:.05s; }
.rc-bars span:nth-child(2){ height:52%; animation-delay:.15s; }
.rc-bars span:nth-child(3){ height:40%; animation-delay:.25s; }
.rc-bars span:nth-child(4){ height:68%; animation-delay:.35s; }
.rc-bars span:nth-child(5){ height:58%; animation-delay:.45s; background:linear-gradient(180deg,var(--gold),#c99527); }
.rc-bars span:nth-child(6){ height:86%; animation-delay:.55s; background:linear-gradient(180deg,var(--gold),#c99527); }
@keyframes rise{ from{ transform:scaleY(0); transform-origin:bottom; } to{ transform:scaleY(1); transform-origin:bottom; } }
.rc-foot{ display:flex; justify-content:space-between; font-family:var(--ff-mono); font-size:11px; color:#6b756f; }
.rc-foot b{ color:var(--ink); font-family:var(--ff-display); font-size:13px; }

.hero-cut-line{
  position:absolute; inset:0; z-index:1; pointer-events:none;
}

/* trust strip */
.trust-strip{
  background:var(--teal-deeper);
  border-top:1px solid rgba(245,246,242,.08);
  position:relative; z-index:3;
}
.trust-strip .container{
  display:flex; align-items:center; gap:36px;
  padding-top:20px; padding-bottom:20px;
  overflow-x:auto;
}
.trust-strip .ts-label{
  font-family:var(--ff-mono); font-size:11px; letter-spacing:.08em;
  color:rgba(245,246,242,.5); white-space:nowrap; text-transform:uppercase;
}
.trust-strip img{
  height:26px; width:auto; flex:none;
  filter:grayscale(1) brightness(0) invert(1); opacity:.55;
  transition:opacity .2s ease;
}
.trust-strip img:hover{ opacity:.95; }

/* ---------- section basics ---------- */
section{ padding:104px 0; position:relative; }
.section-head{
  max-width:640px; margin-bottom:56px;
}
.section-head h2{
  font-size:clamp(28px,3.4vw,42px);
  font-weight:800;
  letter-spacing:-.01em;
  line-height:1.1;
  margin-top:18px;
}
.section-head p{
  margin-top:16px;
  font-size:16px;
  line-height:1.65;
  color:#4b544e;
  max-width:560px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center p{ margin-left:auto; margin-right:auto; }

.diag-divider{
  height:64px;
  background:var(--paper);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.diag-divider.flip{ clip-path: polygon(0 0, 100% 100%, 0 100%); }
.diag-divider.to-dark{ background:var(--teal-deep); }
.diag-divider.to-paper{ background:var(--paper); }
.diag-divider.to-paper2{ background:var(--paper-2); }

/* ---------- services ---------- */
.services{ background:var(--paper); }
.service-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:2px;
  background:var(--line); border:1px solid var(--line);
  margin-bottom:20px;
}
.service-card{
  background:var(--paper);
  padding:34px 26px;
  display:flex; flex-direction:column; gap:16px;
  min-height:250px;
  transition: background .2s ease, color .2s ease;
  position:relative;
}
.service-card .sc-num{
  font-family:var(--ff-mono); font-size:12px; color:var(--teal); letter-spacing:.06em;
}
.service-card h3{ font-size:19px; font-weight:800; line-height:1.25; }
.service-card p{ font-size:14px; line-height:1.55; color:#565f59; flex:1; }
.service-card .sc-go{
  font-family:var(--ff-mono); font-size:11.5px; letter-spacing:.06em;
  text-transform:uppercase; display:flex; align-items:center; gap:8px;
  color:var(--ink); font-weight:700;
}
.service-card .sc-go svg{ width:14px; height:14px; transition:transform .2s ease; }
.service-card:hover{ background:var(--ink); color:var(--paper); }
.service-card:hover p{ color:rgba(245,246,242,.72); }
.service-card:hover .sc-go{ color:var(--gold); }
.service-card:hover .sc-go svg{ transform:translateX(4px); }
.service-card:hover .sc-num{ color:var(--gold); }

.chip-row{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  font-family:var(--ff-mono); font-size:12.5px; letter-spacing:.03em;
  padding:10px 16px; border:1px solid var(--line); color:#3c453f;
  background:var(--white);
}

/* ---------- process ---------- */
.process{ background:var(--paper-2); }
.process-list{
  display:grid; grid-template-columns:repeat(4,1fr); gap:28px;
}
.process-item{ position:relative; padding-top:20px; border-top:2px solid var(--ink); }
.process-item .pi-index{ font-family:var(--ff-mono); font-size:13px; color:var(--teal); font-weight:700; }
.process-item h3{ font-size:17px; font-weight:800; margin:14px 0 10px; }
.process-item p{ font-size:14px; line-height:1.6; color:#4b544e; }

/* ---------- offer ---------- */
.offer{ background:var(--ink); color:var(--paper); }
.offer .section-head p{ color:rgba(245,246,242,.68); }
.offer .section-head h2{ color:var(--paper); }

.offer-paths{
  display:grid; grid-template-columns:1fr 1.5fr; gap:2px;
  background:var(--line-on-dark);
  border:1px solid var(--line-on-dark);
  margin-bottom:64px;
}
.offer-path{ background:var(--teal-deeper); padding:40px; }
.offer-path.wide{ background:#101413; }
.op-tag{
  display:inline-block; font-family:var(--ff-mono); font-size:11px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--gold); border:1px solid rgba(243,185,77,.4);
  padding:5px 10px; margin-bottom:20px;
}
.offer-path h3{ font-size:24px; font-weight:800; margin-bottom:14px; }
.offer-path ul{ margin:20px 0 28px; display:flex; flex-direction:column; gap:12px; }
.offer-path li{
  font-size:14.5px; line-height:1.5; color:rgba(245,246,242,.82);
  padding-left:22px; position:relative;
}
.offer-path li::before{
  content:""; position:absolute; left:0; top:7px; width:10px; height:10px;
  background:var(--teal); clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.offer-price{ font-family:var(--ff-mono); }
.offer-price .from{ font-size:11px; letter-spacing:.06em; color:rgba(245,246,242,.5); text-transform:uppercase; }
.offer-price .num{ font-size:34px; font-weight:700; color:var(--paper); }

.phase-timeline{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin:26px 0 30px; }
.phase{ border-left:2px solid var(--teal); padding-left:18px; }
.phase .ph-label{ font-family:var(--ff-mono); font-size:11px; color:var(--gold); letter-spacing:.06em; text-transform:uppercase; }
.phase h4{ font-size:15px; font-weight:800; margin:8px 0 6px; }
.phase p{ font-size:13.5px; line-height:1.55; color:rgba(245,246,242,.72); }
.contract-note{
  font-family:var(--ff-mono); font-size:12px; color:rgba(245,246,242,.55);
  border-top:1px solid var(--line-on-dark); padding-top:16px; margin-top:6px;
}

.plan-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line-on-dark); border:1px solid var(--line-on-dark); }
.plan-card{ background:#101413; padding:32px 28px; position:relative; display:flex; flex-direction:column; }
.plan-card.ideal{ background:var(--teal-deep); }
.plan-badge{
  position:absolute; top:0; right:0; background:var(--gold); color:var(--teal-deeper);
  font-family:var(--ff-mono); font-size:10.5px; font-weight:700; letter-spacing:.06em;
  padding:6px 12px; text-transform:uppercase;
}
.plan-card .pc-tag{ font-family:var(--ff-mono); font-size:11px; letter-spacing:.08em; color:var(--teal); text-transform:uppercase; margin-bottom:10px; }
.plan-card.ideal .pc-tag{ color:var(--gold); }
.plan-card h3{ font-size:21px; font-weight:800; margin-bottom:4px; }
.plan-card .pc-channels{ font-size:13px; color:rgba(245,246,242,.6); margin-bottom:22px; }
.plan-card .pc-price{ margin-bottom:6px; }
.plan-card .pc-price .num{ font-family:var(--ff-mono); font-size:30px; font-weight:700; }
.plan-card .pc-from{ font-family:var(--ff-mono); font-size:12px; color:rgba(245,246,242,.55); margin-bottom:24px; }
.plan-card .btn{ margin-top:auto; }

/* ---------- proof ---------- */
.proof{ background:var(--paper); }
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line); border:1px solid var(--line); margin-bottom:24px; }
.testi{ background:var(--white); padding:32px 28px; display:flex; flex-direction:column; gap:18px; }
.testi-stars{ color:var(--gold); font-size:15px; letter-spacing:2px; }
.testi p{ font-size:15px; line-height:1.6; color:#333c36; flex:1; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-who img{ width:42px; height:42px; border-radius:50%; object-fit:cover; }
.testi-who .tw-name{ font-size:14px; font-weight:800; }
.testi-who .tw-src{ font-family:var(--ff-mono); font-size:11px; color:#7a8380; }

/* ---------- faq ---------- */
.faq{ background:var(--paper-2); }
.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; text-align:left; background:none; border:0; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:26px 4px; font-family:var(--ff-display); font-size:17px; font-weight:700; color:var(--ink);
}
.faq-q .fq-plus{
  font-family:var(--ff-mono); font-size:20px; color:var(--teal); flex:none;
  transition:transform .25s ease;
}
.faq-item[open] .fq-plus{ transform:rotate(45deg); }
.faq-a{ padding:0 4px 26px; font-size:14.5px; line-height:1.65; color:#4b544e; max-width:640px; }
.faq-item summary{ list-style:none; }
.faq-item summary::-webkit-details-marker{ display:none; }

/* ---------- final cta ---------- */
.final-cta{
  background:var(--teal-deep);
  color:var(--paper);
  padding:100px 0;
  position:relative;
  overflow:hidden;
}
.final-cta::before{
  content:"";
  position:absolute; right:-6%; top:50%; transform:translateY(-50%) rotate(20deg);
  width:340px; height:340px;
  background:var(--teal);
  opacity:.14;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.fc-inner{ position:relative; z-index:2; max-width:640px; }
.final-cta h2{ font-size:clamp(28px,4vw,44px); font-weight:800; line-height:1.08; margin:18px 0 18px; }
.final-cta p{ font-size:16px; color:rgba(245,246,242,.75); margin-bottom:34px; line-height:1.6; }
.fc-actions{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }
.fc-note{ font-family:var(--ff-mono); font-size:12px; color:rgba(245,246,242,.55); margin-top:22px; }

/* ---------- footer ---------- */
.site-footer{ background:var(--ink); color:var(--paper); padding:56px 0 30px; }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:40px; flex-wrap:wrap; padding-bottom:40px; border-bottom:1px solid rgba(245,246,242,.12); margin-bottom:24px; }
.footer-brand img{ height:30px; margin-bottom:14px; filter:brightness(0) invert(1); }
.footer-brand p{ font-size:13.5px; color:rgba(245,246,242,.6); max-width:280px; line-height:1.6; }
.footer-cols{ display:flex; gap:64px; flex-wrap:wrap; }
.footer-col h4{ font-family:var(--ff-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:13.5px; color:rgba(245,246,242,.75); }
.footer-col a:hover{ color:var(--white); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-family:var(--ff-mono); font-size:11.5px; color:rgba(245,246,242,.45); }

/* ---------- floating whatsapp ---------- */
.float-wa{
  position:fixed; right:22px; bottom:22px; z-index:80;
  width:58px; height:58px; border-radius:50%;
  background:var(--teal); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 16px 32px -10px rgba(9,176,173,.6);
  transition:transform .2s ease;
}
.float-wa:hover{ transform:scale(1.08); }
.float-wa svg{ width:28px; height:28px; }

/* ---------- responsive ---------- */
@media (max-width:1020px){
  .hero-grid{ grid-template-columns:1fr; min-height:auto; }
  .hero-visual{ padding-bottom:50px; }
  .hero-panel{ max-width:360px; }
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .process-list{ grid-template-columns:repeat(2,1fr); }
  .offer-paths{ grid-template-columns:1fr; }
  .plan-grid{ grid-template-columns:1fr; }
  .testi-grid{ grid-template-columns:1fr; }
  .phase-timeline{ grid-template-columns:1fr; }
}
@media (max-width:760px){
  .main-nav{ display:none; }
  section{ padding:72px 0; }
  .hero-copy{ padding:40px 0 44px; }
  .service-grid{ grid-template-columns:1fr; }
  .footer-top{ flex-direction:column; }
  .footer-cols{ gap:36px; }
  .header-cta .btn span{ display:none; }
  .header-cta .btn{ padding:14px; }
}
