/* ─── DESIGN TOKENS ───────────────────────────────── */
:root {
  --navy:      #0A1628;
  --navy-80:   rgba(10,22,40,0.80);
  --orange:    #EA580C;
  --orange-h:  #C94C08;
  --white:     #FFFFFF;
  --off-white: #F1F5F9;
  --slate:     #334155;
  --slate-light: #64748B;
  --border:    #E2E8F0;
  --shadow:    0 4px 24px rgba(0,0,0,0.1);
}

/* ─── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #334155;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; transition: all 0.2s ease; }

/* ─── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--dark   { background: var(--navy); color: var(--white); }
.section--light  { background: var(--off-white); }

/* ─── TYPOGRAPHY ──────────────────────────────────── */
h2.section-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700; color: var(--navy); line-height: 1.2;
  margin-bottom: 20px;
}
.section--dark h2.section-title { color: var(--white); }
.section-sub {
  font-size: 18px; color: var(--slate-light);
  max-width: 620px; line-height: 1.7;
  margin-bottom: 32px;
}
.section--dark .section-sub { color: rgba(255,255,255,0.65); }

/* ─── COMPONENTS ──────────────────────────────────── */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 700;
  padding: 16px 32px; border-radius: 6px;
  cursor: pointer; border: none; transition: all 0.18s ease;
  text-decoration: none;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-h); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(234,88,12,0.35); }
.btn--outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--lg { font-size: 18px; padding: 20px 44px; }

/* Labels / Badges */
.label {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 4px;
}
.label--orange { background: rgba(234,88,12,0.12); color: var(--orange); }
.label--white  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.navbar--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.navbar__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.navbar__logo { display: flex; align-items: center; gap: 10px; }
.logo-wordmark { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: 0.08em; line-height: 1; }
.logo-wordmark em { font-style: normal; color: var(--orange); }
.logo-tagline { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-top: 2px; }

/* Hero */
#hero { background: var(--navy); padding: 160px 0 100px; position: relative; overflow: hidden; }
#hero::before {
  content: ''; position: absolute; top: 0; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(234,88,12,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
h1.hero__title { font-size: clamp(40px, 5vw, 66px); font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px; }
h1.hero__title em { font-style: normal; color: var(--orange); }
.hero__sub { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 40px; max-width: 520px; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__visual { display: flex; flex-direction: column; gap: 16px; }
.hero__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 24px 28px; display: flex; align-items: flex-start; gap: 16px; }
.hero__card-icon { width: 44px; height: 44px; border-radius: 8px; background: rgba(234,88,12,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.hero__card-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hero__card-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.hero__card--highlight { border-color: rgba(234,88,12,0.3); background: rgba(234,88,12,0.05); }
.hero__photo-wrap { aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; position: relative; border: 1px solid rgba(234,88,12,0.25); box-shadow: 0 0 60px rgba(234,88,12,0.12), 0 24px 64px rgba(0,0,0,0.4); }
.hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; transform: scale(1.15); transform-origin: top center; }
.hero__photo-badge { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; background: #fff; border-top: 1px solid rgba(234,88,12,0.15); z-index: 2; }
.hero__badge-label { font-size: 11px; font-weight: 700; color: var(--slate-light); text-align: center; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.hero__badge-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px; }
.hero__badge-logos img { height: 22px; width: auto; opacity: 0.95; }

/* Foto Institucional */
.section--foto { overflow: hidden; }
.foto__bg { position: relative; min-height: 480px; max-height: 540px; overflow: hidden; display: flex; align-items: center; }
.foto__img { position: absolute; inset: 0; width: 100%; height: 125%; object-fit: cover; object-position: center 5%; }
.foto__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.55) 55%, rgba(10,22,40,0.2) 100%),
    linear-gradient(0deg, rgba(10,22,40,1) 0%, transparent 22%);
}
.foto__content { position: relative; z-index: 1; padding: 80px 24px; max-width: 660px; }
.foto__label { margin-bottom: 20px; display: inline-block; }
.foto__quote { font-size: clamp(22px, 2.8vw, 34px); font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 24px; }
.foto__quote::before { content: '\201C'; color: var(--orange); }
.foto__quote::after  { content: '\201D'; color: var(--orange); }
.foto__empresas { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.foto__empresas span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); padding: 5px 14px; border-radius: 20px; }
.foto__autor { font-size: 13px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; }
@media (max-width: 600px) {
  .foto__bg { min-height: 420px; max-height: none; }
  .foto__img { height: 110%; }
  .foto__content { padding: 56px 24px; }
}


/* Dor */
.dor__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-top: 48px; }
.dor__item { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }

/* Ferramentas */
.tools__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.tools__item { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; border-top: 3px solid var(--border); transition: border-color 0.2s; }
.tools__item:hover { border-top-color: var(--orange); }
.tools__name { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em; }
.tools__desc { font-size: 14px; color: var(--slate-light); line-height: 1.7; }
.tools__callout { background: var(--navy); border-radius: 16px; padding: 36px 40px; border-left: 4px solid var(--orange); }
.tools__callout-text { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 12px; line-height: 1.5; }
.tools__callout-text strong { color: var(--orange); }
.tools__callout-stat { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.tools__callout-stat span { font-style: italic; }
@media (max-width: 900px) { .tools__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tools__grid { grid-template-columns: 1fr; } .tools__callout { padding: 28px 24px; } }

/* Nova Era */
.era__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.era__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 36px 28px; }
.era__num { font-size: 52px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em; }
.era__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.era__text { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; }
@media (max-width: 900px) { .era__grid { grid-template-columns: 1fr; } }

/* Solução */
.solucao__steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.step { background: var(--off-white); border-radius: 12px; padding: 36px 28px; }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--orange); font-size: 20px; font-weight: 900; margin-bottom: 20px; }
.step__title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }

/* Stats */
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin: 48px 0 64px; }
.stat { text-align: center; padding: 32px 16px; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; background: rgba(255,255,255,0.03); }
.stat__num { font-size: 48px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.stat__text { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* Especialistas */
.spec__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.spec__card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.spec__top { display: flex; align-items: center; gap: 24px; margin-bottom: 20px; }
.spec__avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; color: var(--orange); flex-shrink: 0; }
.spec__avatar--photo { padding: 0; overflow: hidden; }
.spec__avatar--photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
.spec__info { display: flex; flex-direction: column; gap: 4px; }
.spec__name { font-size: 20px; font-weight: 700; color: var(--navy); }
.spec__role { font-size: 12px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; }
.spec__bio { font-size: 15px; color: var(--slate-light); line-height: 1.7; }

/* Diferencial */
.section--diferencial { background: var(--navy); color: var(--white); border-top: 3px solid var(--orange); }
.section--diferencial .section-title { color: var(--white); }
.section--diferencial .section-title em { font-style: normal; color: var(--orange); }
.dif__header { max-width: 760px; margin-bottom: 56px; }
.dif__intro { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 16px; }
.dif__intro strong { color: var(--white); font-weight: 700; }
.dif__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.dif__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-top: 3px solid var(--orange); border-radius: 0 0 16px 16px; padding: 36px 28px; }
.dif__icon { font-size: 28px; margin-bottom: 16px; }
.dif__title { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.dif__text { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; }
@media (max-width: 900px) { .dif__grid { grid-template-columns: 1fr; } }

/* Cases */
.case__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 48px; }
.case__col { border-radius: 12px; padding: 32px; }
.case__col--before { background: #FEF2F2; border: 1px solid #FECACA; }
.case__col--action { background: var(--navy); color: #fff; }
.case__col--after  { background: #F0FDF4; border: 1px solid #BBF7D0; }
.case__col-title { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.case__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.case__list li { font-size: 15px; display: flex; gap: 10px; }

/* Comparativo */
.comp__table-wrapper { overflow-x: auto; margin-top: 48px; border-radius: 12px; box-shadow: var(--shadow); }
.comp__table { width: 100%; border-collapse: collapse; min-width: 600px; }
.comp__table thead tr { background: var(--navy); }
.comp__table thead th { padding: 20px; font-size: 14px; color: rgba(255,255,255,0.7); text-align: left; }
.comp__table tbody tr { background: #fff; border-bottom: 1px solid var(--border); }
.comp__table tbody td { padding: 18px 20px; font-size: 15px; }
.celere-col { font-weight: 700; color: var(--orange); background: rgba(234,88,12,0.02); }

/* FAQ */
.faq__list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #fff; }
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--navy);
}
.faq__q:hover { background: var(--off-white); }
.faq__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px; transition: transform 0.25s;
  color: var(--orange);
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; }
.faq__item.open .faq__a { max-height: 300px; }
.faq__a-inner { padding: 0 28px 24px; font-size: 15px; color: var(--slate); line-height: 1.75; }

/* Footer */
footer { background: #060D1A; padding: 64px 0; text-align: center; color: var(--white); }
.footer__logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.footer__text { font-size: 14px; color: rgba(255,255,255,0.25); line-height: 1.6; }
.footer__text a { color: rgba(255,255,255,0.4); }
.footer__text a:hover { color: var(--orange); }

/* CTA Final */
#cta-final { background: var(--navy); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
#cta-final::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(234,88,12,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-final__title { font-size: clamp(32px,4vw,52px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.cta-final__title em { font-style: normal; color: var(--orange); }

/* Animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .spec__grid { grid-template-columns: 1fr; }
  .case__grid { grid-template-columns: 1fr; }
  .solucao__steps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  h1.hero__title { font-size: 38px; }
  .btn--lg { font-size: 16px; padding: 16px 28px; }
  .stats__grid { grid-template-columns: 1fr; }
}
