/* =========================
   TOKENS / VARIÁVEIS
========================= */
:root {
  --neutral-light: #E2DFD9;

  --blue-primary: #1E4262;
  --blue-secondary: #556F86;
  --green-accent: #93A84A;

  --bg-light: #f8fafc;
  --white: #ffffff;
  --text-main: #0f172a;
  --text-soft: #475569;
  --border: #dbe5f0;

  --shadow: 0 18px 45px rgba(11, 37, 69, 0.12);
  --radius: 20px;
}

/* =========================
   RESET / BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Bricolage Grotesque', sans-serif;
  scroll-behavior: smooth;
}

body {
  color: var(--text-main);
  background: var(--white);
  line-height: 1.35;
}

body::selection {
  background: var(--neutral-light);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

svg {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
}

/* =========================
   UTILITÁRIOS
========================= */
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.full {
  width: 100%;
}

/* =========================
   TIPOGRAFIA / TAGS
========================= */
.tag,
.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-secondary);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.12);
  color: #dbeafe;
}

.card-label,
.small-title,
.price-label {
  color: var(--blue-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================
   HEADER / NAVEGAÇÃO
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 14px;
  z-index: 100;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-secondary) 100%);
}

.nav {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green-accent);
}

.logo span {
  color: var(--white);
}

.menu {
  display: flex;
  align-items: center;
  color: var(--white);
  font-weight: 500;
}

.footer-links a,
.menu a {
  padding: 7px 12px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.menu a:hover,
.footer-links a:hover {
  background-color: rgba(255,255,255,0.1);
}

/* =========================
   BOTÕES
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn svg {
  margin: 0;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue-secondary);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(18, 60, 115, 0.22);
}

.btn-green {
  background: var(--green-accent);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(18, 60, 115, 0.22);
}

.btn-secondary,
.btn-outline {
  background: var(--white);
  color: var(--blue-secondary);
  border-color: var(--border);
}

.light-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0 72px;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-secondary) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  min-height: 70vh;
}

.hero h1 {
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 40px 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span,
.audience-list span {
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-soft);
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.audience-list span:hover {
  background: var(--text-soft);
  color: var(--white);
}

.hero .hero-points span {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #dbeafe;
  font-size: 0.75rem;
}

.hero .hero-points span:hover {
  background: #dbeafe;
  color: var(--blue-primary);
}

/* =========================
   CARDS BASE
========================= */
.dashboard-card,
.info-card,
.service-card,
.timeline-card,
.plan-card,
.audience-box,
.cta-box,
.faq-list details,
.card-small,
.price-box {
  background: var(--white);
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =========================
   HERO CARDS
========================= */
.hero-card {
  position: relative;
  min-height: 470px;
}

.card-main {
  position: absolute;
  inset: 30px 40px 30px 0;
  padding: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.card-main h3 {
  margin: 10px 0 24px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.metric-box {
  padding: 18px;
  border-radius: 16px;
  background: var(--bg-light);
}

.metric-box span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.metric-box strong {
  font-size: 1.2rem;
}

.progress-area {
  padding: 18px;
  border-radius: 16px;
  background: var(--bg-light);
}

.progress-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce8f3;
}

.progress-bar span {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-secondary);
}

.card-small {
  position: absolute;
  max-width: 250px;
  padding: 18px;
}

.card-small strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.1rem;
}

.card-small p {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.top-card {
  top: 0;
  right: 0;
}

.bottom-card {
  right: 12px;
  bottom: 0;
}

/* =========================
   SECTION HEADINGS
========================= */
.section-heading {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-heading.center {
  margin-inline: auto;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading h2,
.benefits-section h2,
.audience-box h2,
.plan-text h2,
.cta-box h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.1;
}

.section-heading p,
.plan-text p,
.cta-box p,
.audience-box p {
  color: var(--text-soft);
}

/* =========================
   GRIDS
========================= */
.cards-grid {
  display: grid;
  gap: 22px;
}

.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* =========================
   CARDS DE CONTEÚDO
========================= */
.info-card,
.service-card,
.timeline-card {
  padding: 28px;
}

.info-card,
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(11, 37, 69, 0.16);
}

.info-card h3,
.service-card h3,
.timeline-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.info-card p,
.service-card p,
.timeline-card p,
.plan-text li,
.faq-list p {
  color: var(--text-soft);
}

.service-card.featured {
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
  border-color: #c8d9ec;
}

/* =========================
   BENEFÍCIOS / CTA SECTION
========================= */
.benefits-section,
.cta-section {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
  color: var(--white);
}

.benefits-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 88px 0;
}

.benefits-section p,
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
}

.benefits-list {
  display: grid;
  gap: 16px;
}

.benefit-item {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.benefit-item span {
  font-size: 0.9rem;
}

.benefit-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

/* =========================
   TIMELINE
========================= */
.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green-accent);
  color: var(--white);
  font-weight: 800;
}

/* =========================
   AUDIENCE / PLANO / PREÇO
========================= */
.audience-box,
.plan-card,
.cta-box {
  padding: 34px;
}

.audience-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.plan-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.benefits-grid ul,
.plan-text ul {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 5px;
}

.benefits-grid li,
.plan-text li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--text-soft);
  line-height: 1.5;
  background: #f8fafc;
  padding: 12px 14px;
  border-radius: 12px;
}

.benefits-grid li {
  background: var(--blue-primary);
  color: var(--white);
}

.benefits-grid li:before,
.plan-text li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.plan-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.price-box {
  padding: 24px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.price-box strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--blue-primary);
  font-size: 2rem;
}

/* =========================
   FAQ
========================= */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  position: relative;
  padding-right: 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--blue-secondary);
  font-size: 1.3rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin-top: 12px;
}

/* =========================
   CTA BOX
========================= */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 30px 0;
  background: var(--blue-primary);
  color: rgba(255, 255, 255, 0.8);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  color: var(--green-accent);
}

.footer-logo span {
  color: var(--white);
}

.footer-links {
  display: flex;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float svg {
  margin: 0;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }

  .container {
    width: min(1120px, calc(100% - 32px));
  }

  .hero {
    min-height: auto;
    padding: 120px 0 64px;
  }

  .hero-grid,
  .benefits-grid,
  .audience-box,
  .plan-card,
  .cta-box,
  .cards-grid.four,
  .cards-grid.three,
  .timeline-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 36px;
  }

  .hero-card {
    min-height: 440px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .info-card,
  .service-card,
  .timeline-card {
    padding: 24px;
  }

  .audience-box,
  .plan-card,
  .cta-box {
    padding: 28px;
  }

  .benefit-item,
  .faq-list details,
  .price-box {
    padding: 20px;
  }

  .menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 48px;
  }

  .benefits-section {
    min-height: auto;
    padding: 56px 0;
  }

  .hero-grid,
  .benefits-grid,
  .audience-box,
  .plan-card,
  .cta-box,
  .cards-grid.four,
  .cards-grid.three,
  .timeline-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
  }

  .hero h1 {
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin: 28px 0;
  }

  .hero-points {
    gap: 8px;
  }

  .hero .hero-points span,
  .audience-list span {
    padding: 8px 12px;
  }

  .section-heading,
  .section-heading.center {
    margin-bottom: 28px;
  }

  .info-card,
  .service-card,
  .timeline-card,
  .benefit-item,
  .faq-list details {
    padding: 20px;
  }

  .audience-box,
  .plan-card,
  .cta-box,
  .card-main,
  .price-box {
    padding: 22px;
  }

  .benefits-grid ul,
  .plan-text ul {
    gap: 10px;
  }

  .benefits-grid li,
  .plan-text li {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    font-size: 0.95rem;
  }

  .cta-actions,
  .hero-actions {
    flex-direction: column;
  }

  .nav {
    min-height: 50px;
  }

  .nav .btn-outline {
    display: none;
  }

  .card-main,
  .card-small {
    position: static;
    max-width: 100%;
  }

  .hero-card {
    display: none;
  }

  .footer-content,
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .hero {
    padding: 96px 0 40px;
  }

  .benefits-section {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .section-heading h2,
  .benefits-section h2,
  .audience-box h2,
  .plan-text h2,
  .cta-box h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .info-card,
  .service-card,
  .timeline-card,
  .benefit-item,
  .faq-list details,
  .audience-box,
  .plan-card,
  .cta-box,
  .price-box {
    padding: 18px;
  }
}