/* ==========================================================================
   Método Destrave Atendimento
   Paleta: azul-marinho escuro #0B2545 · vinho #C1121F · areia #E8A87C
   ========================================================================== */

:root {
  --navy: #0B2545;
  --navy-hover: #081A32;
  --wine: #C1121F;
  --wine-hover: #A10E19;
  --sand: #E8A87C;
  --ink: #111111;
  --body-text: #3A3A3A;
  --muted: #8A8A8A;
  --border: #E5E1DC;
  --bg-alt: #FAF7F4;
  --white: #FFFFFF;
  --max-width: 1240px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'IBM Plex Sans', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; margin: 0; }

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

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

ul { list-style: none; margin: 0; padding: 0; }

.serif { font-family: 'Fraunces', serif; }

/* ---------- Reusable pieces ---------- */

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin: 0 0 8px;
}
.eyebrow-light { color: var(--sand); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-head h2 { font-size: 34px; color: var(--ink); }

.btn {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--wine-hover); transform: translateY(-1px); }
.btn-primary { font-size: 16px; padding: 16px 36px; }

.feat { display: flex; flex-direction: column; gap: 12px; }
.feat li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; color: var(--body-text); }
.ic { font-weight: 700; line-height: 1.4; flex-shrink: 0; color: var(--navy); }
.ic-light { color: var(--sand); }
.feat-light li { color: #F2EFEA; }

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

.header {
  width: 100%;
  padding: 24px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy);
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.header-phone { font-size: 14px; color: #FAF3EF; opacity: 0.85; }

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

.hero {
  width: 100%;
  padding: 96px 64px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero h1 { font-size: 52px; line-height: 1.1; color: var(--white); max-width: 780px; }
.hero-text { font-size: 19px; line-height: 1.6; color: #D8E4E3; max-width: 620px; margin: 0; }

/* ---------- Bio ---------- */

.bio { width: 100%; padding: 88px 64px; background: var(--white); }
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.bio-photo {
  width: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 8px;
}
.bio-name { font-size: 36px; color: var(--ink); margin-bottom: 6px; }
.bio-role { font-size: 16px; font-weight: 600; color: var(--navy); margin: 0 0 22px; }
.bio-content .bio-text { font-size: 15px; line-height: 1.7; color: var(--body-text); max-width: 620px; margin: 0 0 16px; }
.bio-content .bio-text strong { color: var(--ink); }
.bio-subhead { font-size: 20px; color: var(--ink); margin: 16px 0 18px; }
.bio-content .feat { max-width: 660px; }
.bio-content .feat span:last-child { font-size: 14.5px; }

/* ---------- Plans ---------- */

.plans { width: 100%; padding: 96px 64px 112px; background: var(--bg-alt); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.plan-card .feat { flex-grow: 1; }

.plan-premium { border: 1.5px solid var(--wine); }

.plan-dark { background: var(--navy); border: none; }

.plan-head { display: flex; flex-direction: column; gap: 6px; }
.plan-head h3 { font-size: 24px; color: var(--ink); }
.plan-head h3.light { color: var(--white); }
.plan-desc { font-size: 14px; color: #5A5A5A; line-height: 1.5; margin: 0; }
.plan-desc-light { color: #D8E4E3; }

.plan-price { display: flex; flex-direction: column; gap: 2px; padding-bottom: 4px; border-bottom: 1px solid var(--border); }
.plan-price-light { border-bottom-color: rgba(255, 255, 255, 0.16); }
.price-main { font-size: 28px; font-weight: 700; color: var(--ink); }
.price-main.light { color: var(--white); }
.price-sub { font-size: 14px; color: var(--muted); }
.price-sub-light { color: #B9CBC9; }

/* ---------- Footer ---------- */

.footer {
  width: 100%;
  padding: 48px 64px;
  background: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-row {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-family: 'Fraunces', serif; font-size: 16px; color: var(--white); }
.footer-phone { font-size: 14px; color: #D8D8D8; }

/* ---------- Scroll-reveal ---------- */

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .bio-photo { max-width: 320px; }
}

@media (max-width: 640px) {
  .header, .hero, .bio, .plans, .footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 64px; padding-bottom: 64px; }
  .hero h1 { font-size: 34px; }
  .hero-text { font-size: 16px; }
  .bio { padding-top: 56px; padding-bottom: 56px; }
  .bio-name { font-size: 28px; }
  .plans { padding-top: 64px; padding-bottom: 72px; }
  .section-head h2 { font-size: 26px; }
  .footer-row { flex-direction: column; text-align: center; }
}
