@import url('https://fonts.googleapis.com/css2?family=Fahkwang:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

:root {
  --navy: #184570;
  --navy-deep: #0C2338;
  --navy-soft: #466A8D;
  --terracotta: #D28167;
  --terracotta-deep: #9E614D;
  --slate: #434E51;
  --slate-deep: #323B3D;
  --cream: #F2EAE2;
  --cream-light: #F5F1EB;
  --white: #FFFFFF;

  --font-display: 'Fahkwang', serif;
  --font-body: 'Lato', sans-serif;

  --max-width: 1120px;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate-deep);
  background: var(--cream-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--navy-deep);
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

p { margin-bottom: 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow svg { flex-shrink: 0; }

.eyebrow-icon { height: 14px; width: auto; display: inline-block; flex-shrink: 0; }

.lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--slate);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { box-shadow: 0 8px 20px rgba(24,69,112,0.28); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-whatsapp {
  background: var(--terracotta);
  color: var(--white);
}
.btn-whatsapp:hover { box-shadow: 0 8px 20px rgba(210,129,103,0.35); }

.btn-dark {
  background: var(--navy-deep);
  color: var(--white);
}
.btn-dark:hover { box-shadow: 0 8px 20px rgba(12,35,56,0.35); }

.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,241,235,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(24,69,112,0.08);
}

.site-header .container {
  position: relative;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
}

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

.logo-img { height: 64px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--slate-deep);
}

.main-nav a:hover { color: var(--navy); }

.main-nav .nav-cta {
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 8px 22px;
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav .nav-cta:hover { background: var(--navy); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-light);
    padding: 4px 40px 20px;
    border-bottom: 1px solid rgba(24,69,112,0.1);
    box-shadow: 0 16px 24px rgba(12,35,56,0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .main-nav.open { max-height: 340px; opacity: 1; }

  .main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(24,69,112,0.08); }

  .main-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 1px solid var(--navy);
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 92vh;
  min-height: 620px;
  max-height: 920px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,35,56,0.92) 0%, rgba(12,35,56,0.68) 30%, rgba(12,35,56,0.2) 55%, rgba(12,35,56,0) 72%),
    linear-gradient(0deg, rgba(12,35,56,0.7) 0%, rgba(12,35,56,0.2) 30%, rgba(12,35,56,0.02) 55%, rgba(12,35,56,0.12) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  padding-left: max(24px, calc((100vw - 1120px) / 2 + 24px));
  padding-right: 24px;
}

.hero-copy-inner {
  max-width: min(500px, 40vw);
}

.hero-logo { height: 30px; width: auto; margin-bottom: 22px; }

.hero-copy .eyebrow { color: var(--terracotta); }

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-copy .lead {
  color: rgba(245,241,235,0.92);
  font-size: 16px;
  max-width: 460px;
  margin: 0 0 28px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }

@media (max-width: 860px) {
  .hero { height: 86vh; min-height: 560px; }
  .hero-copy { padding-bottom: 48px; }
  .hero-copy-inner { max-width: 100%; }
  .hero-copy .lead { max-width: 100%; }
}

/* ---------- Stat strip ---------- */

.stat-strip {
  background: var(--navy);
  padding: 40px 0;
}

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

.stat-item {
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 24px;
}

.stat-item:first-child { border-left: none; padding-left: 0; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(245,241,235,0.75);
}

@media (max-width: 760px) {
  .stat-grid { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .stat-item:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 460px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat-item { border-left: none; padding-left: 0; }
}

/* ---------- Marquee ticker ---------- */

.marquee {
  background: var(--navy-deep);
  color: var(--cream-light);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-track span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-track .dot {
  color: var(--terracotta);
  font-size: 12px;
}

.marquee.small { background: var(--navy-deep); padding: 10px 0; }
.marquee.small .marquee-track span { font-size: 12px; }
.marquee.small .marquee-track { animation-duration: 20s; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Fork ---------- */

.fork {
  padding-top: 72px;
  background: var(--cream);
}

.fork-intro { text-align: left; max-width: 760px; margin: 0 auto 40px; }

.fork-intro h2 { font-size: clamp(22px, 2.6vw, 28px); line-height: 1.2; margin-bottom: 0; }

.fork-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fork-block {
  padding: 64px 48px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  transition: opacity 0.15s ease;
}

.fork-block:hover { opacity: 0.92; }

.fork-block.pessoas { background: var(--navy); }
.fork-block.empresas { background: var(--terracotta-deep); }

.fork-tag {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.6;
}

.fork-block h3 {
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.1;
  margin-bottom: 0;
}

.fork-block p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  max-width: 340px;
  margin-bottom: 0;
}

.fork-block .fork-arrow {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 700px) {
  .fork-cards { grid-template-columns: 1fr; }
}

/* ---------- Audience sections ---------- */

.audience {
  padding: 96px 0;
}

.audience.pessoas { background: var(--white); padding-bottom: 96px; }
.audience.pessoas > .container:first-child { padding-bottom: 0; }
.audience.empresas { background: var(--navy-deep); color: var(--cream-light); }
.audience.empresas h2, .audience.empresas h3 { color: var(--white); }
.audience.empresas .lead { color: rgba(245,241,235,0.85); }

.audience-header { text-align: left; max-width: 760px; margin: 0 0 56px; }

.audience-header h2 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2; }

.audience-header .lead { max-width: 100%; white-space: nowrap; }

@media (max-width: 700px) {
  .audience-header .lead { white-space: normal; }
}

.offer-grid {
  display: grid;
  gap: 24px;
}

.offer-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
  .offer-grid.cols-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .offer-grid.cols-3 { grid-template-columns: 1fr; }
}

.offer-card {
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pessoas .offer-card {
  background: var(--cream-light);
  border: 1px solid rgba(24,69,112,0.08);
}

.empresas .offer-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.offer-card .price {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 4px;
}

.empresas .offer-card .price { color: var(--terracotta); }

.offer-card .price-note {
  font-size: 13px;
  color: var(--slate);
}

.empresas .offer-card .price-note { color: rgba(245,241,235,0.7); }

.offer-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(24,69,112,0.1);
}

.empresas .offer-card-footer { border-top-color: rgba(255,255,255,0.14); }

.offer-card-footer .btn {
  min-width: 240px;
  justify-content: center;
}

.offer-card ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  font-size: 14px;
  color: var(--slate);
}

.empresas .offer-card ul { color: rgba(245,241,235,0.8); }

.offer-card ul li { padding-left: 20px; position: relative; margin-bottom: 4px; }
.offer-card ul li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  margin-bottom: 10px;
}


/* ---------- Mapa de Recolocação banner ---------- */

.mapa-banner {
  background: var(--terracotta-deep);
  color: var(--white);
  margin: 40px 0 64px;
}

.mapa-banner-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px 24px;
}

.mapa-banner h3 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}

.mapa-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 0;
}

.mapa-cta { text-align: center; }

.mapa-cta .price {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  margin-bottom: 4px;
}

.mapa-cta .price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

@media (max-width: 760px) {
  .mapa-banner-body { grid-template-columns: 1fr; text-align: left; }
  .mapa-cta { text-align: left; }
}

/* Sintomas checklist */

.sintomas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin: 32px 0 40px;
}

.sintomas-list label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  cursor: pointer;
  color: rgba(245,241,235,0.9);
}

.sintomas-list input { accent-color: var(--terracotta); margin-top: 3px; }

@media (max-width: 700px) {
  .sintomas-list { grid-template-columns: 1fr; }
}

.tese-quote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245,241,235,0.85);
  max-width: 620px;
  margin: 0 0 24px;
  text-align: left;
}

.radar-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0 40px;
}

.radar-tags span {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  text-align: center;
}

@media (max-width: 700px) {
  .radar-tags { grid-template-columns: 1fr 1fr; }
}

.fit-list {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.fit-list .eyebrow { color: var(--terracotta); }

.fit-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-top: 16px;
}

.fit-list li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: rgba(245,241,235,0.85);
}

.fit-list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
}

@media (max-width: 700px) {
  .fit-list ul { grid-template-columns: 1fr; }
}

/* ---------- Depoimentos ---------- */

.depoimentos { background: var(--cream-light); padding: 96px 0; }

.nps-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  text-align: left;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  font-size: 14px;
  color: var(--slate);
}

.testimonial-card .quote { margin-bottom: 16px; font-style: italic; }
.testimonial-card .author { font-weight: 700; color: var(--navy-deep); font-size: 13px; }
.testimonial-card .role { font-size: 12px; color: var(--slate); }

@media (max-width: 720px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */

.faq { background: var(--white); padding: 96px 0; }

.faq-item {
  border-bottom: 1px solid rgba(24,69,112,0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-deep);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon { font-size: 20px; color: var(--terracotta); transition: transform 0.2s ease; }

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 15px;
  color: var(--slate);
}

.faq-answer p { padding-bottom: 20px; }

/* ---------- Sobre a Carol (bloco final) ---------- */

.sobre-final {
  background: var(--navy-deep);
  padding: 96px 0;
  color: var(--cream-light);
}

.sobre-final-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

.sobre-final-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  object-fit: cover;
}

.sobre-final .eyebrow { justify-content: flex-start; color: var(--terracotta); }

.sobre-final h2 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 8px;
}

.sobre-tagline {
  font-style: italic;
  color: rgba(245,241,235,0.65);
  margin-bottom: 40px;
  font-size: 15px;
}

.sobre-final-text { text-align: left; }

.sobre-final-text p { color: rgba(245,241,235,0.85); font-size: 15.5px; }

.sobre-final-text strong { color: var(--terracotta); font-weight: 700; }

.sobre-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-start;
}

.pill {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
}

.sobre-final .pill {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

@media (max-width: 760px) {
  .sobre-final-inner { grid-template-columns: 1fr; }
  .sobre-final-photo { max-width: 260px; aspect-ratio: 4 / 5; margin: 0 auto; }
}

/* ---------- Footer / CTA final ---------- */

.footer-cta {
  background: var(--navy-deep);
  color: var(--cream-light);
  padding: 80px 0 40px;
}

.footer-top {
  text-align: center;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 40px;
}

.footer-top h2 { color: var(--white); }

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
}

.footer-links a { opacity: 0.85; }
.footer-links a:hover { opacity: 1; }

.footer-bottom {
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.6;
  text-align: center;
}
