/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --azul-ancora: #1B3F6E;
  --azul-medio:  #3A6EA8;
  --azul-claro:  #EEF3FA;
  --dourado:     #D4A853;
  --off-white:   #F5F2EC;
  --grafite:     #2C2C2A;
  --white:       #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius:    12px;
  --shadow:    0 4px 24px rgba(27, 63, 110, 0.10);
  --shadow-lg: 0 8px 40px rgba(27, 63, 110, 0.16);

  --container:   1100px;
  --section-pad: 96px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--grafite);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 10px;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--azul-ancora);
  line-height: 1.2;
  margin-bottom: 40px;
}

h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--azul-ancora);
  margin-bottom: 8px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dourado);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(212, 168, 83, 0.38);
}
.btn-primary:hover {
  background: #c49640;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 83, 0.48);
}
.btn-light {
  background: var(--white);
  color: var(--azul-ancora);
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.2);
}
.btn-light:hover {
  background: var(--off-white);
  box-shadow: 0 6px 28px rgba(255, 255, 255, 0.3);
}

.btn-nav {
  display: inline-block;
  background: var(--azul-ancora);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover {
  background: var(--azul-medio);
  transform: translateY(-1px);
}

.btn-pacote {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid var(--azul-ancora);
  color: var(--azul-ancora);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  margin-top: auto;
}
.btn-pacote:hover {
  background: var(--azul-ancora);
  color: var(--white);
}
.pacote-destaque .btn-pacote {
  background: var(--azul-ancora);
  color: var(--white);
}
.pacote-destaque .btn-pacote:hover {
  background: var(--azul-medio);
  border-color: var(--azul-medio);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 236, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 63, 110, 0.08);
  transition: box-shadow 0.2s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--azul-ancora);
}
.brand-icon {
  width: 26px;
  height: 32px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--azul-ancora);
  letter-spacing: -0.01em;
}
.brand-light .brand-name,
.brand-light .brand-icon { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--grafite);
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.15s;
}
.nav-links a:not(.btn-nav):hover { color: var(--azul-ancora); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--azul-ancora);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ===== HERO ===== */
.hero {
  background: var(--azul-ancora);
  color: var(--white);
  padding: 108px 24px 124px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -80px;
  width: 560px; height: 560px;
  background: rgba(255,255,255,0.02);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-logo-wrap {
  margin: 0 auto 28px;
  width: 60px;
  color: var(--dourado);
}
.hero-logo-wrap svg { width: 100%; height: auto; }

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--dourado);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ===== PROBLEMA ===== */
.problema {
  padding: var(--section-pad);
  background: var(--white);
  text-align: center;
}
.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.problema-card {
  background: var(--azul-claro);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.problema-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--azul-ancora);
}
.problema-icon svg { width: 100%; height: 100%; }
.problema-card p {
  font-size: 0.92rem;
  color: var(--grafite);
  line-height: 1.55;
}
.problema-res {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
  color: var(--grafite);
  line-height: 1.65;
}

/* ===== COMO FUNCIONA ===== */
.como-funciona {
  padding: var(--section-pad);
  background: var(--off-white);
  text-align: center;
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 28px 20px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(27, 63, 110, 0.18);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-size: 1rem; margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: #5f5f5d; line-height: 1.6; }
.step-arrow {
  font-size: 1.6rem;
  color: var(--dourado);
  align-self: center;
  padding: 0 4px;
  margin-top: -16px;
  opacity: 0.7;
}

/* ===== PACOTES ===== */
.pacotes {
  padding: var(--section-pad);
  background: var(--azul-ancora);
  text-align: center;
}
.pacotes h2 { color: var(--white); }
.pacotes .section-label { color: rgba(255,255,255,0.55); }
.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
  align-items: start;
}
.pacote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pacote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pacote-destaque {
  border-color: var(--dourado);
  position: relative;
}
.pacote-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dourado);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
}
.pacote-header h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.preco-valor {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--azul-ancora);
}
.preco-periodo { font-size: 0.88rem; color: #999; margin-left: 2px; }
.pacote-para {
  font-size: 0.88rem;
  color: #777;
  font-style: italic;
  border-left: 3px solid var(--dourado);
  padding-left: 12px;
}
.pacote-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pacote-lista li {
  font-size: 0.88rem;
  color: var(--grafite);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.pacote-lista li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--azul-medio);
  font-weight: 500;
}
.pacote-entrega {
  font-size: 0.82rem;
  color: #666;
  background: var(--azul-claro);
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.45;
}

/* ===== PARA QUEM ===== */
.para-quem {
  padding: var(--section-pad);
  background: var(--white);
  text-align: center;
}
.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}
.para-quem-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border-top: 4px solid var(--azul-medio);
}
.pq-icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--azul-medio); }
.pq-icon svg { width: 100%; height: 100%; }
.para-quem-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.para-quem-card p { font-size: 0.88rem; color: #5f5f5d; line-height: 1.6; }

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: var(--section-pad);
  background: var(--azul-claro);
  text-align: center;
}
.diferenciais-tabela {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: 740px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.diferenciais-col { background: var(--white); }
.dif-header {
  padding: 18px 24px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}
.dif-ancora {
  background: var(--azul-ancora);
  color: var(--white);
}
.dif-outro {
  background: #e5e2dc;
  color: #999;
}
.diferenciais-col ul {
  list-style: none;
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diferenciais-col ul li { font-size: 0.88rem; line-height: 1.45; }
.diferenciais-col:first-child ul li { color: var(--grafite); }
.diferenciais-col:last-child ul li { color: #bbb; }

/* ===== QUEM SOMOS ===== */
.quem-somos {
  padding: var(--section-pad);
  background: var(--off-white);
}
.quem-intro {
  max-width: 580px;
  font-size: 1rem;
  color: #5f5f5d;
  margin-bottom: 48px;
  line-height: 1.7;
}
.team-grid { display: flex; flex-wrap: wrap; gap: 28px; }
.team-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 540px;
  box-shadow: var(--shadow);
}
.team-photo-placeholder {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: var(--azul-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-medio);
}
.team-photo-placeholder svg { width: 44px; height: 44px; }
.team-name { font-size: 1.05rem; margin-bottom: 4px; }
.team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 12px;
}
.team-bio { font-size: 0.88rem; color: #5f5f5d; line-height: 1.65; }

/* ===== CTA FINAL ===== */
.cta-final {
  padding: var(--section-pad);
  background: var(--azul-ancora);
  text-align: center;
}
.cta-box { max-width: 580px; margin: 0 auto; }
.cta-icon {
  width: 48px;
  display: block;
  margin: 0 auto 24px;
  color: var(--dourado);
}
.cta-final h2 { color: var(--white); margin-bottom: 16px; }
.cta-final > .cta-box > p {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 36px;
}
.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }
.cta-email {
  margin-top: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.cta-email a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  transition: color 0.15s;
}
.cta-email a:hover { color: var(--white); }

/* ===== FOOTER ===== */
.footer {
  background: #0f2540;
  padding: 44px 24px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-copy a:hover { color: var(--white); }

.footer-social { margin: 8px 0 4px; text-align: center; }
.footer-social-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-social-links { display: flex; gap: 12px; justify-content: center; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}
.social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; }
.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --section-pad: 64px 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--off-white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(27, 63, 110, 0.1);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(27, 63, 110, 0.06);
    font-size: 0.95rem;
  }
  .nav-links a:last-child { border-bottom: none; padding-top: 16px; }
  .btn-nav { display: block; text-align: center; padding: 14px; border-radius: 8px; }

  .nav-toggle { display: flex; }

  .step-arrow { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; padding: 20px 0; }

  .diferenciais-tabela { grid-template-columns: 1fr; }

  .team-card { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding: 72px 20px 88px; }
  .pacotes-grid { grid-template-columns: 1fr; }
  .para-quem-grid { grid-template-columns: 1fr; }
  .problema-grid { grid-template-columns: 1fr 1fr; }
}

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