:root {
  --dark-blue: #071c33;
  --blue: #0f2f52;
  --blue-mid: #16406e;
  --blue-light: #2f7cc4;
  --white: #ffffff;
  --gray-light: #f4f6f9;
  --gray-100: #eceff3;
  --gray-medium: #8a94a6;
  --gray-dark: #1c2430;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Background ambient orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}
.bg-orb--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -160px;
  background: radial-gradient(circle, rgba(47,124,196,0.5), transparent 70%);
}
.bg-orb--2 {
  width: 460px;
  height: 460px;
  bottom: 10%;
  left: -200px;
  background: radial-gradient(circle, rgba(15,47,82,0.4), transparent 70%);
}

h1, h2, h3 {
  color: var(--dark-blue);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 8px; }

p { color: var(--gray-medium); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.tag {
  display: inline-block;
  background: rgba(47, 124, 196, 0.1);
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(47,124,196,0.18);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
}

.btn--primary {
  background: var(--dark-blue);
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(7, 28, 51, 0.6);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -10px rgba(7, 28, 51, 0.7);
}

.btn--lg { padding: 18px 38px; font-size: 1rem; }

.btn--outline {
  border: 1.5px solid var(--dark-blue);
  color: var(--dark-blue);
  background: transparent;
}
.btn--outline:hover {
  background: var(--dark-blue);
  color: var(--white);
}

.link-arrow {
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow span { transition: transform 0.3s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  padding: 12px 20px;
  box-shadow: 0 8px 30px -12px rgba(7,28,51,0.15);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark-blue);
}
.logo span { color: var(--blue-light); font-weight: 400; }

.nav { display: flex; gap: 30px; }
.nav a {
  color: var(--gray-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue-light);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--dark-blue);
  border-radius: 2px;
}

/* HERO */
.hero {
  position: relative;
  padding: 190px 0 120px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero__title { margin-bottom: 22px; }
.line-mask { display: block; overflow: hidden; }
.line { display: block; }
.line--accent { color: var(--blue-light); font-style: italic; }

.hero__subtitle {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark-blue);
}
.stat span { font-size: 1.2rem; color: var(--blue-light); font-weight: 700; }
.stat p { font-size: 0.82rem; color: var(--gray-medium); margin-top: 2px; }

/* HERO VISUAL CARD */
.hero__visual { position: relative; }

.visual-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 30px 60px -20px rgba(7,28,51,0.25);
  position: relative;
  z-index: 2;
}

.visual-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.visual-card__badge {
  background: rgba(47,124,196,0.12);
  color: var(--blue-light);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visual-card__chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  margin-bottom: 20px;
}
.bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--blue-light), var(--dark-blue));
  border-radius: 6px 6px 2px 2px;
  transform: scaleY(0);
  transform-origin: bottom;
}

.visual-card__footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-medium);
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

.visual-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(47,124,196,0.25), transparent 70%);
  z-index: 1;
  filter: blur(30px);
}

/* SECTIONS */
.section { padding: 110px 0; position: relative; }
.section--gray { background: var(--gray-light); }
.section--dark { background: linear-gradient(160deg, var(--dark-blue), var(--blue)); }
.section--dark h2, .section--dark h3, .section--dark .tag { color: var(--white); }
.section--dark .tag { background: rgba(255,255,255,0.08); color: #a9c8e8; border-color: rgba(255,255,255,0.15); }
.section--dark p { color: #c3d0e0; }

.section__text { max-width: 560px; font-size: 1.03rem; margin-bottom: 16px; }
.section__text.center { max-width: 680px; }

.section-head { margin-bottom: 56px; }
.section-head .tag { display: block; width: fit-content; margin-left: auto; margin-right: auto; }

/* SPLIT LAYOUT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* QUOTE CARD (Dor section) */
.quote-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 44px;
  position: relative;
  backdrop-filter: blur(10px);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--blue-light);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.quote-card p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
}
.quote-line {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--blue-light);
  margin-top: 24px;
}

/* SOLUÇÃO CARD */
.solucao__card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 30px 60px -30px rgba(7,28,51,0.18);
}
.solucao__number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--blue-light);
  margin-bottom: 10px;
}
.solucao__divider {
  height: 1px;
  background: var(--gray-100);
  margin: 24px 0;
}

/* CARDS GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 34px 26px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -20px rgba(7,28,51,0.2);
}
.card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-light), var(--dark-blue));
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.card p { font-size: 0.92rem; }

/* STEPS / TIMELINE */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.steps__line {
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--gray-100);
  z-index: 0;
}
.steps__line-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--blue-light), var(--dark-blue));
  transform: scaleX(0);
  transform-origin: left;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--dark-blue);
  color: var(--dark-blue);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 18px;
}
.step p { font-size: 0.92rem; }

/* ESPECIALISTA */
.especialista__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5);
}
.photo-frame img {
  width: 100%;
  display: block;
  filter: grayscale(10%) contrast(1.05);
}
.photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.photo-badge strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark-blue);
}
.photo-badge span { font-size: 0.7rem; color: var(--gray-medium); text-transform: uppercase; letter-spacing: 0.04em; }

.especialista__role { color: #a9c8e8; font-weight: 600; margin-bottom: 16px; }
.especialista__content p { margin-bottom: 16px; }

.especialista__list { list-style: none; margin-top: 22px; }
.especialista__list li {
  color: var(--white);
  padding: 12px 0 12px 26px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.especialista__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue-light);
}

/* CONFIANÇA */
.confianca-section { background: var(--white); }
.confianca {
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}
.quote-mark--center {
  color: var(--blue-light);
  opacity: 0.3;
}

/* CTA FINAL */
.cta-final { padding: 60px 0 120px; }
.cta-final__card {
  background: linear-gradient(150deg, var(--dark-blue), var(--blue-mid));
  border-radius: 28px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 40px 80px -30px rgba(7,28,51,0.5);
}
.cta-final__card h2 { color: var(--white); max-width: 620px; margin: 0 auto 16px; }
.cta-final__card p { color: #c3d0e0; max-width: 480px; margin: 0 auto 34px; }

/* FOOTER */
.footer { background: var(--gray-dark); color: #cfd4da; padding: 50px 0 30px; }
.footer__inner { text-align: center; }
.footer .logo { justify-content: center; margin-bottom: 14px; color: var(--white); }
.footer p { font-size: 0.88rem; color: #a7aeb8; }
.footer__disclaimer { margin-top: 10px; font-size: 0.76rem; color: #7c828d; max-width: 600px; margin-left: auto; margin-right: auto; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero__inner,
  .split,
  .especialista__inner { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
  .steps__line { display: none; }
  .nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
  .cta-final__card { padding: 50px 24px; }
}