@import url('https://fonts.googleapis.com/css2?family=Exo:wght@600;800&family=Roboto:wght@300;400;500;700&display=swap');

/* =========================================================
   01. TOKENS GERAIS | CORES, SOMBRAS E ESPAÇAMENTOS
   Uso: ambos, desktop e mobile
   ========================================================= */

:root{
  --navy:#04111d;
  --navy-soft:#061827;
  --panel:#091723;
  --panel-soft:#0d1f30;

  --text:#f3f6f4;
  --text-soft:rgba(243,246,244,.84);
  --text-muted:rgba(234,241,238,.64);

  --ink:#1f3d46;
  --muted:#516a70;
  --bg:#eef1d3;
  --white:#fff;

  --accent:#f0ad4e;
  --accent-hover:#e8992b;
  --lime:#c6d76b;
  --teal:#006165;
  --teal-soft:#0b7b78;

  --shadow:0 18px 45px rgba(0,35,55,.16);
  --shadow-dark:0 18px 48px rgba(0,0,0,.32);

  --radius:18px;
  --radius-lg:28px;
  --space:clamp(16px,2.5vw,30px);

  --green-900:var(--navy);
  --green-700:var(--teal);
  --green-950:var(--navy);
  --neutral:rgba(198,215,107,.16);
  --cta:var(--accent);
}


/* =========================================================
   02. RESET E BASE
   Uso: ambos, desktop e mobile
   ========================================================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:86px;
}

body{
  margin:0;
  font-family:'Roboto',system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  font-weight:400;
  color:var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(0,97,101,.20), transparent 26%),
    linear-gradient(180deg,var(--navy) 0%, #071b2b 56%, var(--bg) 56%, var(--bg) 100%);
  line-height:1.55;
}

img{
  max-width:100%;
  display:block;
}

img.social-icon{
  max-width:none;
}

a{
  color:inherit;
  text-decoration:none;
}

h1,
h2,
h3,
.brand,
.brand__name,
.btn,
.pill,
.kicker,
.badge,
.hero-panel-title,
.system-node b,
.profile-card b{
  font-family:'Exo','Roboto',system-ui,sans-serif;
}

h1,
h2,
h3{
  letter-spacing:-.035em;
}

h1,
h2{
  font-weight:800;
}

h3{
  font-weight:600;
}

b,
strong{
  font-family:'Exo','Roboto',system-ui,sans-serif;
  font-weight:600;
}

p,
li,
small,
.muted{
  font-weight:400;
}

.container{
  width:min(1160px,92%);
  margin:0 auto;
}


/* =========================================================
   03. UTILITÁRIOS DE LAYOUT
   Uso: ambos, desktop e mobile
   ========================================================= */

.grid{
  display:grid;
  gap:clamp(14px,2vw,22px);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.mt-14{
  margin-top:14px;
}

.mt-24{
  margin-top:24px;
}

.mt-27{
  margin-top:27px;
}

.section{
  padding:calc(var(--space)*2) 0;
}

.section--tight{
  padding:calc(var(--space)*1.5) 0;
}

.section-surface{
  padding:calc(var(--space)*2.2) 0;
}

.section-surface .container{
  background:rgba(248,249,238,.96);
  border:1px solid rgba(0,35,55,.08);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:clamp(26px,3vw,44px);
  position:relative;
  overflow:hidden;
}

.section--light{
  background:var(--bg);
}

.card{
  background:#fff;
  border:1px solid rgba(0,35,55,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:clamp(18px,2.2vw,24px);
}

.muted{
  color:var(--muted);
}

.kicker{
  color:var(--teal);
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:800;
  font-size:.82rem;
}

.divider{
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(198,215,107,.45),transparent);
  margin:var(--space) 0;
}


/* =========================================================
   04. BOTÕES E PILLS
   Uso: ambos, desktop e mobile
   ========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  padding:1rem 1.3rem;
  border-radius:16px;
  border:2px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition:.2s transform,.25s box-shadow,.25s background-color,.25s color,.25s border-color;
  min-height:52px;
}

.btn:focus-visible{
  outline:3px solid rgba(255,255,255,.25);
  outline-offset:3px;
}

.btn--cta{
  background:var(--accent);
  color:#1b1204;
  border-color:transparent;
  box-shadow:0 10px 24px rgba(0,0,0,.26),0 4px 14px rgba(240,173,78,.18);
}

.btn--cta:hover{
  background:var(--accent-hover);
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.32),0 4px 18px rgba(240,173,78,.26);
}

.btn--ghost{
  background:transparent;
  border-color:var(--teal);
  color:var(--teal);
}

.btn--ghost:hover{
  background:var(--teal);
  color:#fff;
  box-shadow:0 14px 30px rgba(0,97,101,.28);
  transform:translateY(-2px);
  border-color:var(--teal);
}

.btn--ghost-invert{
  background:var(--navy);
  border:1px solid var(--navy);
  color:#fff;
  box-shadow:0 14px 32px rgba(0,35,55,.22);
}

.btn--ghost-invert:hover{
  background:#fff;
  color:var(--navy);
  border-color:var(--navy);
  box-shadow:0 16px 34px rgba(0,35,55,.24);
  transform:translateY(-2px);
}

.btn--whats{
  background:#25d366;
  color:#05210f;
  box-shadow:0 10px 22px rgba(37,211,102,.35);
  border-radius:999px;
  padding:.9rem 1.2rem;
}

.btn--whats:hover{
  background:#1ebe5c;
  box-shadow:0 14px 30px rgba(37,211,102,.45);
  transform:translateY(-2px);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:rgba(255,255,255,.035);
  color:rgba(243,246,244,.78);
  padding:.45rem .9rem;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  font-weight:700;
  font-size:.82rem;
}


/* =========================================================
   05. NAVBAR
   Uso: ambos, desktop e mobile
   Observação: a navbar aparece após a primeira dobra via classe JS
   ========================================================= */

.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:60;
  background:rgba(248,249,238,.96);
  border-bottom:1px solid rgba(0,35,55,.10);
  box-shadow:0 10px 28px rgba(0,35,55,.16);
  backdrop-filter:blur(14px);
  opacity:0;
  transform:translateY(-100%);
  pointer-events:none;
  transition:.28s opacity,.28s transform,.28s box-shadow;
}

body.is-scrolled .nav,
.nav.is-scrolled{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.nav__bar{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.8rem 0;
}

.nav__left{
  display:flex;
  align-items:center;
  gap:.75rem;
}

.nav--landing .nav__actions{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-left:auto;
}

.brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  font-weight:800;
  color:#fff;
}

.brand--text{
  gap:.55rem;
}

.brand--logo{
  display:flex;
  align-items:center;
}

.brand__logo{
  display:block;
  height:68px;
  width:auto;
  max-width:none;
  object-fit:contain;
}

.brand__symbol{
  width:44px;
  height:44px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--teal),var(--lime));
  color:var(--navy);
  font-size:1.45rem;
  transform:rotate(-8deg);
  box-shadow:0 12px 28px rgba(0,0,0,.22);
}

.brand__name{
  font-size:1rem;
  line-height:1.1;
  max-width:190px;
  color:#fff;
  font-weight:800;
  letter-spacing:-.035em;
}

.nav__links{
  display:flex;
  align-items:center;
  gap:1rem;
}

.nav__links a{
  padding:.35rem 0;
  font-size:.95rem;
  line-height:1.2;
  border-radius:10px;
  color:rgba(243,246,244,.82);
}

.nav__links a:hover{
  color:#fff;
  background:rgba(255,255,255,.06);
}

.nav__toggle{
  display:none;
}


/* =========================================================
   06. ÍCONES SOCIAIS
   Uso: ambos, desktop e mobile
   ========================================================= */

.social-icon{
  height:22px;
  width:auto;
  aspect-ratio:1 / 1;
  display:block;
  opacity:.9;
  transition:.25s ease;
}

.social-icon--lg{
  height:28px;
}

.nav__links .social-icon:hover,
.footer__social .social-icon:hover,
.nav__actions .social-icon:hover,
.nav__home-icon img:hover{
  opacity:1;
  transform:translateY(-3px);
}


/* =========================================================
   07. HERO
   Uso: ambos, desktop e mobile
   ========================================================= */

.hero{
  min-height:100vh;
  padding-top:clamp(34px,5vw,72px);
  padding-bottom:clamp(52px,6vw,88px);
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 27% 28%, rgba(0,97,101,.20), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(198,215,107,.10), transparent 32%),
    linear-gradient(180deg,#04111d 0%, #071b2b 100%);
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:84px;
  pointer-events:none;
  background:linear-gradient(to bottom, rgba(7,27,43,0) 0%, rgba(238,241,211,.10) 72%, rgba(238,241,211,.34) 100%);
}

.hero>.container{
  position:relative;
  z-index:2;
  width:min(1160px,92%);
}

.hero__wrap{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:clamp(32px,5vw,64px);
  align-items:center;
  transform:translateY(-6px);
}

.hero h1{
  font-weight:800;
  font-size:clamp(42px,5.35vw,76px);
  line-height:.94;
  letter-spacing:-.06em;
  margin:.6rem 0 1rem;
  color:var(--text);
  max-width:820px;
  text-shadow:0 4px 18px rgba(0,0,0,.16);
}

.hero h1 span{
  color:#e4eaa6;
}

.hero p{
  font-size:clamp(17px,1.25vw,19px);
  line-height:1.44;
}

.hero__lead{
  max-width:760px;
  color:var(--text-soft);
  margin-bottom:0;
}

.hero__lead b{
  color:#fff;
}

.hero__buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}

.hero__buttons .btn--cta{
  display:inline-flex;
  min-width:260px;
  min-height:60px;
  font-size:1.02rem;
}

.hero__buttons .btn--ghost{
  border-color:rgba(198,215,107,.50);
  color:var(--lime);
}

.hero__buttons .btn--ghost:hover{
  background:rgba(198,215,107,.12);
  border-color:var(--lime);
  color:#fff;
}

.hero .divider,
.hero .grid.grid-3{
  display:none;
}

.hero-watermark{
  position:absolute;
  right:-300px;
  bottom:-440px;
  width:min(80vw,2000px);
  height:auto;
  opacity:.075;
  pointer-events:none;
  user-select:none;
  z-index:1;
  transform:rotate(-18deg);
  filter:drop-shadow(0 20px 30px rgba(255,255,255,.04));
}


/* =========================================================
   08. HERO | PAINEL DIREITO
   Uso: ambos, desktop e mobile
   ========================================================= */

.hero .card{
  background:rgba(9,23,35,.72);
  border-color:rgba(255,255,255,.06);
  box-shadow:var(--shadow-dark);
  backdrop-filter:blur(10px);
}

.hero .card b{
  color:rgba(242,245,243,.88);
}

.hero .card .muted{
  color:var(--text-muted);
}

.hero__art{
  position:relative;
  opacity:.96;
}

.hero__panel{
  background:var(--panel);
  border:1px solid rgba(255,255,255,.05);
  border-radius:28px;
  padding:30px;
  box-shadow:0 14px 34px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.03),inset 0 -1px 0 rgba(255,255,255,.015);
  animation:float 7s ease-in-out infinite;
  will-change:transform;
}

.tick{
  display:flex;
  align-items:flex-start;
  gap:.85rem;
  padding:1.05rem;
  border-radius:18px;
  background:rgba(255,255,255,.028);
  border:1px solid rgba(255,255,255,.045);
  box-shadow:0 4px 14px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.015);
  transition:.22s ease;
}

.tick+.tick{
  margin-top:12px;
}

.tick:hover{
  background:rgba(255,255,255,.045);
  border-color:rgba(198,215,107,.10);
}

.tick i{
  width:30px;
  height:30px;
  min-width:30px;
  min-height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  border-radius:999px;
  background:#172536;
  border:1px solid rgba(240,173,78,.34);
  color:var(--accent);
  font-family:'Roboto',system-ui,sans-serif;
  font-size:1rem;
  font-weight:900;
  font-style:normal;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03),0 2px 6px rgba(0,0,0,.22);
}

.hero__panel .tick b{
  color:rgba(242,245,243,.84);
  font-size:.98rem;
  font-weight:600;
  line-height:1.34;
  letter-spacing:-.01em;
}

.hero__panel .tick small{
  color:var(--text-muted);
  line-height:1.52;
  font-size:.95rem;
}


/* =========================================================
   09. SEÇÕES PRINCIPAIS
   Uso: ambos, desktop e mobile
   ========================================================= */

#dores{
  background:var(--bg);
}

#dores h2,
#resultados h2,
#jornadas h2{
  color:var(--navy);
}

#resultados{
  background:var(--bg);
}

#resultados .muted{
  color:var(--muted);
}

#solucoes h2{
  color:var(--text);
}

#solucoes > .container > p.muted{
  color:rgba(243,246,244,.78);
}

#solucoes .card .muted{
  color:var(--muted);
}

#dores>.container>.pill,
#solucoes .pill,
#resultados .pill,
#jornadas .pill{
  background:rgba(0,97,101,.08);
  color:var(--teal);
  border-color:rgba(0,97,101,.16);
}

.pain-card{
  border-top:5px solid var(--accent);
}

.pain-card h3,
.case-card h3,
.journey-card h3{
  color:var(--navy);
  margin:.35rem 0 .7rem;
}


/* =========================================================
   10. SISTEMA | FLUXO DE PROBLEMAS
   Uso: ambos, desktop e mobile
   ========================================================= */

#sistema,
#metodo,
#jornadas{
  background:var(--bg);
}

.system-flow{
  display:grid;
  grid-template-columns:1fr 80px 1fr 80px 1fr;
  align-items:center;
  gap:10px;
}

.system-node{
  background:#fff;
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:22px;
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(0,35,55,.08);
}

.system-node span{
  width:34px;
  height:34px;
  border-radius:999px;
  background:var(--navy);
  color:var(--lime);
  display:inline-grid;
  place-items:center;
  font-weight:900;
}

.system-node b{
  font-size:1.15rem;
  color:var(--navy);
}

.system-node small{
  color:var(--muted);
  line-height:1.45;
}

.system-line{
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--teal),var(--lime));
  position:relative;
}

.system-line::after{
  content:"";
  position:absolute;
  right:-1px;
  top:50%;
  width:12px;
  height:12px;
  border-top:4px solid var(--lime);
  border-right:4px solid var(--lime);
  transform:translateY(-50%) rotate(45deg);
}


/* =========================================================
   11. SOLUÇÕES | CARDS E RAIL
   Uso: ambos, desktop e mobile
   ========================================================= */

.solutions-rail-wrapper{
  position:relative;
  overflow-x:auto;
  overflow-y:visible;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  margin-bottom:4px;
  scrollbar-width:none;
}

.solutions-rail-wrapper::-webkit-scrollbar{
  display:none;
}

.solutions__rail{
  display:inline-flex;
  gap:16px;
  padding-bottom:4px;
  min-width:max-content;
}

.solutions__card{
  flex:0 0 260px;
  max-width:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:#fff;
  border:1px solid rgba(0,35,55,.08);
}

.solutions__card h3{
  margin:.2rem 0 .5rem;
  color:var(--navy);
}

.solutions__card p{
  margin:0;
}

.solutions__actions{
  margin-top:12px;
}

.solutions__actions .btn{
  width:100%;
  justify-content:center;
  text-align:center;
  white-space:normal;
}

.solutions__controls{
  display:flex;
  justify-content:flex-end;
  gap:8px;
  margin-top:8px;
}

.solutions__control{
  min-width:44px;
  padding:6px 14px;
  border-radius:999px;
  border:1px solid rgba(0,97,101,.18);
  background:#f8f9ee;
  color:var(--teal);
  font-size:.9rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s background,.2s box-shadow,.2s transform;
}

.solutions__control span{
  font-size:1.2rem;
  line-height:1;
}

.solutions__control:hover{
  background:rgba(198,215,107,.28);
  box-shadow:0 6px 12px rgba(0,35,55,.14);
  transform:translateY(-1px);
}


/* =========================================================
   12. MÉTODO | STEPS
   Uso: ambos, desktop e mobile
   ========================================================= */

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

.step{
  background:#fff;
  border:1px solid rgba(0,35,55,.08);
  border-radius:16px;
  box-shadow:0 10px 26px rgba(0,35,55,.06),inset 0 1px 0 rgba(255,255,255,.6);
  padding:18px;
  position:relative;
}

.step b{
  color:var(--navy);
}

.badge{
  position:absolute;
  top:-12px;
  left:18px;
  background:var(--teal);
  color:#fff;
  border-radius:12px;
  padding:.25rem .55rem;
  font-size:.85rem;
  font-weight:800;
}


/* =========================================================
   13. LOGOS MARQUEE
   Uso: ambos, desktop e mobile
   ========================================================= */

.logo-marquee{
  margin-top:10px;
  overflow:hidden;
  position:relative;
  padding:10px 0;
  border-radius:0;
  border:none;
  background:transparent;
}

.logo-marquee::before,
.logo-marquee::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:64px;
  pointer-events:none;
  z-index:2;
}

.logo-marquee::before{
  left:0;
  background:linear-gradient(to right,var(--bg) 0%,transparent 100%);
}

.logo-marquee::after{
  right:0;
  background:linear-gradient(to left,var(--bg) 0%,transparent 100%);
}

.logo-marquee__track{
  display:inline-flex;
  align-items:center;
  gap:40px;
  white-space:nowrap;
  animation:logo-scroll 40s linear infinite;
  padding-inline:40px;
  will-change:transform;
}

.logo-marquee:hover .logo-marquee__track{
  animation-play-state:paused;
}

.logos-marquee__item{
  flex:0 0 auto;
  width:180px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.logos-marquee__item img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  opacity:1;
  transform:translateY(0);
  transition:transform .25s ease;
}

.logos-marquee__item:hover img{
  transform:translateY(-2px);
}


/* =========================================================
   14. JORNADAS
   Uso: ambos, desktop e mobile
   ========================================================= */

.journey-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.journey-card{
  background:#fff;
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:24px;
  border:1px solid rgba(0,35,55,.08);
}

.journey-card ol{
  margin:.75rem 0 0;
  padding-left:1.25rem;
  color:var(--muted);
  line-height:1.55;
}

.journey-card li+li{
  margin-top:.65rem;
}


/* =========================================================
   15. SOBRE | ESPECIALISTA
   Uso: ambos, desktop e mobile
   ========================================================= */

.section-about{
  padding:56px 0;
  background:var(--bg);
}

.section-about__grid{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);
  gap:32px;
  align-items:center;
}

.section-about__content{
  max-width:760px;
}

.section-about__kicker{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
  color:var(--teal);
  margin-bottom:8px;
}

.section-about__title{
  font-size:24px;
  line-height:1.2;
  font-weight:800;
  color:var(--navy);
  margin:0 0 12px;
}

.section-about__subtitle{
  font-size:14px;
  color:var(--muted);
  max-width:620px;
  margin-bottom:20px;
}

.section-about__text{
  font-size:15px;
  color:#24363b;
  max-width:760px;
}

.section-about__text p{
  margin:0 0 10px;
}

.section-about__logo{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.section-about__logo img{
  max-width:260px;
  height:auto;
}

.section-about__cta-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:600;
  color:var(--teal);
  text-decoration:none;
  padding-bottom:2px;
  border-bottom:1px solid rgba(0,97,101,.35);
  transition:.2s ease;
}

.section-about__cta-link:hover{
  color:var(--navy);
  border-bottom-color:var(--navy);
  transform:translateY(-1px);
}

.section-about__visual{
  display:flex;
  justify-content:center;
  align-items:center;
}

.about-photo-wrap{
  position:relative;
  width:100%;
  max-width:420px;
}

.about-photo{
  width:100%;
  border-radius:28px;
  object-fit:cover;
  box-shadow:0 18px 45px rgba(0,0,0,.28);
  border:6px solid rgba(255,255,255,.92);
}

.about-highlights{
  margin-top:18px;
  padding-left:20px;
  color:#24363b;
  line-height:1.7;
}

.about-highlights li + li{
  margin-top:6px;
}

.about-seal{
  position:absolute;
  width:220px;
  right:-55px;
  bottom:-55px;
  filter:
    drop-shadow(0 18px 28px rgba(0,0,0,.28))
    drop-shadow(0 6px 10px rgba(0,0,0,.18));
  z-index:3;
  pointer-events:none;
}

.profile-card{
  background:linear-gradient(150deg,var(--navy),var(--navy-soft) 58%,var(--teal));
  color:#fff;
  border-radius:24px;
  padding:32px;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  box-shadow:var(--shadow-dark);
  position:relative;
  overflow:hidden;
}

.profile-card::after{
  content:"";
  position:absolute;
  inset:auto -38px -38px auto;
  width:140px;
  height:140px;
  border:22px solid rgba(198,215,107,.35);
  border-radius:50%;
  pointer-events:none;
}

.profile-card span{
  font-size:3rem;
  font-weight:900;
  line-height:1;
}

.profile-card b{
  font-size:1.4rem;
  margin:.4rem 0;
  color:#fff;
}

.profile-card small{
  color:var(--text-soft);
  line-height:1.45;
}


/* =========================================================
   16. CTA FINAL
   Uso: ambos, desktop e mobile
   ========================================================= */

.final-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  background:linear-gradient(150deg,#fff,#f8f9ee);
}

.final-cta h3{
  margin:.2rem 0;
  color:var(--navy);
}

.final-cta p{
  margin:.35rem 0 0;
}


/* =========================================================
   17. FOOTER
   Uso: ambos, desktop e mobile
   ========================================================= */

footer{
  background:var(--navy);
  color:#f5fbf8;
  border-top:1px solid rgba(255,255,255,.10);
}

footer .muted{
  color:rgba(234,241,238,.68);
}

footer a{
  color:#f5fbf8;
  transition:.2s color,.2s opacity,.2s text-decoration;
}

footer a:hover{
  opacity:1;
  color:#fff;
  text-decoration:underline;
}

footer ul{
  list-style:none;
  padding:0;
  margin:.5rem 0 0;
}

.footer-grid{
  padding:22px 0;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:18px;
}

.footer__social{
  display:flex;
  gap:12px;
  margin-top:6px;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
}

.footer-brand__logo{
  width:220px;
  height:auto;
  object-fit:contain;
  opacity:.96;
}

.footer-brand__text b{
  display:block;
  color:#fff;
  margin-bottom:4px;
  font-size:1rem;
  line-height:1.2;
}

.footer-brand__text p{
  margin:0;
}


/* =========================================================
   18. ELEMENTOS FIXOS
   Uso: ambos, desktop e mobile
   ========================================================= */

.float-whats{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:80;
}

.float-whats a{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  position:relative;
  overflow:hidden;
}

.float-whats a::after{
  content:"";
  position:absolute;
  inset:-30%;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.45);
  opacity:0;
  animation:whats-pulse 2.6s ease-out infinite;
  pointer-events:none;
}

.to-top{
  position:fixed;
  right:18px;
  bottom:80px;
  background:#ffffffcc;
  border:1px solid #dfe9e6;
  color:var(--teal);
  padding:.6rem .7rem;
  border-radius:12px;
  box-shadow:var(--shadow);
  display:none;
}

.to-top.is-show{
  display:inline-flex;
}


/* =========================================================
   19. ANIMAÇÕES
   Uso: ambos, desktop e mobile
   ========================================================= */

.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:.6s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

@keyframes whats-pulse{
  0%{transform:scale(.5);opacity:.6}
  100%{transform:scale(1.2);opacity:0}
}

@keyframes logo-scroll{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}


/* =========================================================
   20. DESKTOP | MENU FLUTUANTE
   Uso: desktop
   ========================================================= */

@media (min-width:981px){

  .nav--landing .nav__links{
    display:none;
    position:absolute;
    top:80px;
    right:16px;
    flex-direction:column;
    gap:.35rem;
    padding:.7rem .8rem;
    background:rgba(4,17,29,.98);
    border-radius:14px;
    box-shadow:var(--shadow-dark);
    border:1px solid rgba(255,255,255,.10);
    z-index:1000;
  }

  .nav--landing .nav__links a{
    padding:.35rem .4rem;
    font-size:.9rem;
    line-height:1.2;
    border-radius:8px;
  }

  .nav--landing .nav__links.is-open{
    display:flex;
  }

  .nav--landing .nav__toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:999px;
    border:1px solid rgba(0,35,55,.18);
    background:rgba(0,35,55,.04);
    color:var(--navy);
    cursor:pointer;
    margin-left:.75rem;
  }

  .nav--landing .nav__toggle:hover{
    background:rgba(198,215,107,.14);
    border-color:rgba(198,215,107,.38);
    transform:translateY(-2px);
    transition:.25s transform,.25s background-color,.25s border-color;
  }
}


/* =========================================================
   21. DESKTOP | TELAS LARGAS
   Uso: desktop
   ========================================================= */

@media (min-width:1200px){

  .blog-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

@media (min-width:768px) and (max-width:1199px){

  .blog-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


/* =========================================================
   22. MOBILE | TABLET E CELULAR
   Uso: mobile
   Regra: mantém cores do desktop e ajusta apenas estrutura/tamanho
   ========================================================= */

@media (max-width:980px){

  .hero{
    display:block;
    min-height:auto;
    padding-top:clamp(46px,8vw,70px);
  }

  .hero__wrap,
  .system-flow,
  .journey-grid,
  .section-about__grid{
    grid-template-columns:1fr;
  }

  .hero__wrap{
    transform:none;
  }

  .hero__panel{
    margin-top:20px;
  }

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

  .system-line{
    height:34px;
    width:4px;
    margin:auto;
  }

  .system-line::after{
    right:50%;
    top:auto;
    bottom:-1px;
    transform:translateX(50%) rotate(135deg);
  }

  .section-about__logo{
    display:none;
  }

  .grid-3,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .nav__cta{
    display:none;
  }

  .profile-card{
    min-height:200px;
  }

  .about-photo-wrap{
    max-width:320px;
    margin:auto;
  }

  .about-seal{
    width:140px;
    right:-18px;
    bottom:-18px;
  }

  .nav--landing .nav__toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:999px;
    border:1px solid rgba(0,35,55,.18);
    background:rgba(0,35,55,.04);
    color:var(--navy);
    cursor:pointer;
    margin-left:.75rem;
  }

  .nav__links{
    position:fixed;
    inset:78px 14px auto 14px;
    background:rgba(4,17,29,.98);
    border:1px solid rgba(255,255,255,.10);
    border-radius:14px;
    padding:10px;
    gap:.45rem;
    display:none;
    flex-direction:column;
  }

  .nav__links.is-open{
    display:flex;
  }

  .nav__links a{
    padding:.55rem;
  }

  .hero-watermark{
    display:none;
  }
}


/* =========================================================
   23. MOBILE | AJUSTES FINOS
   Uso: mobile
   ========================================================= */

@media (max-width:768px){

  .logos-marquee__item{
    width:150px;
    height:60px;
  }
}

@media (max-width:640px){

  .hero h1{
    font-size:clamp(38px,12vw,58px);
  }

  .hero__buttons .btn--cta,
  .btn{
    width:100%;
    min-width:0;
  }

  .steps,
  .blog-grid{
    grid-template-columns:1fr;
  }

  .float-whats{
    right:12px;
    bottom:12px;
  }

  .float-whats .btn{
    padding:.75rem 1rem;
  }

  .to-top{
  right:14px;
  bottom:72px;
  padding:.42rem .52rem;
  border-radius:10px;
  font-size:.85rem;
  }
  
}

