/* =========================================================
   GUARANHAONE — IDENTIDADE VISUAL
   Paleta inspirada no logo: bordô profundo + branco + neutros warm
   ========================================================= */

:root {
  /* Brand */
  --brand: #7A1E2B;
  --brand-dark: #5C1620;
  --brand-darker: #3F0E16;
  --brand-light: #9B2D40;
  --brand-soft: #F5E8EA;

  /* Neutros */
  --bg: #FFFFFF;
  --bg-warm: #FAF7F2;
  --bg-cream: #F4EFE8;
  --ink: #15110F;
  --ink-2: #2A2422;
  --gray: #6B6560;
  --gray-2: #A8A39E;
  --gray-3: #E5E0DA;
  --line: #ECE7E0;

  /* Sistema */
  --success: #1F7A4D;
  --shadow-sm: 0 2px 8px rgba(20, 14, 12, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 14, 12, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 14, 12, 0.12);

  /* Tipografia */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ----------------- RESET ----------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ----------------- TIPOGRAFIA ----------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 1rem;
}
.lead { font-size: 1.125rem; color: var(--gray); max-width: 60ch; }

/* ----------------- LAYOUT ----------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid { display: grid; gap: 24px; }
.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin: 16px auto 0; }

/* ----------------- BUTTONS ----------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-icon { padding: 12px 18px; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; }

/* ----------------- HEADER ----------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.brand-logo .mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center;
  color: #fff;
  position: relative;
}
.brand-logo .mark svg { width: 22px; height: auto; }
.brand-logo .name span { color: var(--brand); font-weight: 700; }
.brand-logo .name small { display: block; font-family: var(--font-body); font-size: 0.62rem; color: var(--gray); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-top: -2px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.92rem; font-weight: 500; color: var(--ink-2);
  transition: all .2s ease;
}
.nav-menu a:hover { color: var(--brand); background: var(--brand-soft); }
.nav-menu a.active { color: var(--brand); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.9rem; }

.lang-switch { display: flex; align-items: center; gap: 2px; margin-right: 2px; }
.lang-switch a {
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 8px;
  font-size: 1.05rem; line-height: 1; opacity: .5;
  transition: all .2s ease;
}
.lang-switch a:hover { opacity: 1; background: var(--brand-soft); }
.lang-switch a.active { opacity: 1; background: var(--brand-soft); }

.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------- HERO ----------------- */
.hero {
  position: relative;
  padding: 96px 0 120px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(122, 30, 43, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(122, 30, 43, 0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero h1 .accent { color: var(--brand); font-style: italic; }
.hero .lead { font-size: 1.2rem; margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; color: var(--brand); font-weight: 700; }
.hero-stat .label { font-size: 0.85rem; color: var(--gray); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08), transparent 50%);
}
.hero-visual .floating-card {
  position: absolute; padding: 16px 20px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.floating-card.fc-1 { bottom: 32px; left: -24px; }
.floating-card.fc-2 { top: 32px; right: -16px; }
.floating-card .ico {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
}
.floating-card .ico svg { width: 20px; }
.floating-card .txt strong { display: block; font-size: 0.9rem; color: var(--ink); }
.floating-card .txt small { color: var(--gray); font-size: 0.78rem; }

.hero-mark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: .18;
}
.hero-mark svg { width: 70%; }

/* ----------------- PROBLEMAS ----------------- */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  padding: 36px 28px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .3s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-soft); }
.problem-card .ico { width: 52px; height: 52px; border-radius: 12px; background: var(--brand); color: #fff; display: grid; place-items: center; margin-bottom: 20px; }
.problem-card .ico svg { width: 24px; }
.problem-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.problem-card p { color: var(--gray); font-size: 0.95rem; }

/* ----------------- METODOLOGIA / 4 FASES ----------------- */
.method-section { background: var(--bg-warm); }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.method-step {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: all .3s ease;
}
.method-step:hover { border-color: var(--brand); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.method-step .step-num {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--brand); opacity: .2; font-weight: 700;
  line-height: 1; margin-bottom: 8px;
}
.method-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.method-step p { color: var(--gray); font-size: 0.92rem; }

/* ----------------- SERVIÇOS ----------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  position: relative; padding: 40px 32px;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .3s ease;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0%; background: var(--brand);
  transition: height .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::after { height: 100%; }
.service-card .tag {
  display: inline-block; padding: 4px 10px;
  background: var(--brand-soft); color: var(--brand);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  border-radius: 999px; margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gray); margin-bottom: 24px; }
.service-card .arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 600; font-size: 0.92rem; }

/* ----------------- DEPOIMENTOS ----------------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  padding: 32px 28px; background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.testimonial .stars { color: #E8B33D; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p { font-size: 1rem; color: var(--ink-2); margin-bottom: 24px; line-height: 1.6; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-darker));
  color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1rem;
}
.testimonial .info strong { display: block; color: var(--ink); font-size: 0.95rem; }
.testimonial .info small { color: var(--gray); font-size: 0.82rem; }

/* ----------------- CTA BANNER ----------------- */
.cta-banner {
  margin: 96px 24px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  color: #fff; border-radius: var(--radius-xl);
  padding: 80px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255,255,255,0.12), transparent 50%);
}
.cta-banner h2 { color: #fff; max-width: 620px; margin: 0 auto 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 32px; position: relative; }
.cta-banner .btn { position: relative; }

/* ----------------- NEWSLETTER ----------------- */
.newsletter {
  background: var(--ink); color: #fff;
  padding: 72px 0;
}
.newsletter h2 { color: #fff; margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 28px; }
.newsletter-form {
  display: flex; gap: 8px; max-width: 460px; margin: 0 auto;
  background: rgba(255,255,255,0.08); padding: 6px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}
.newsletter-form input {
  flex: 1; background: transparent; border: 0; color: #fff;
  padding: 12px 20px; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

/* ----------------- FOOTER ----------------- */
.footer { background: #0F0B0A; color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer .brand-logo { color: #fff; margin-bottom: 16px; }
.footer .brand-logo .name span { color: var(--brand-light); }
.footer p { font-size: 0.92rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.92rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: grid; place-items: center;
  transition: all .25s ease;
}
.footer-socials a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.footer-socials svg { width: 18px; }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }

/* ----------------- WHATSAPP FLOAT ----------------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; }

/* ----------------- PAGE HEADER (inner pages) ----------------- */
.page-header {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  text-align: center;
}
.page-header .breadcrumb {
  display: inline-flex; gap: 8px; font-size: 0.82rem; color: var(--gray);
  margin-bottom: 20px;
}
.page-header .breadcrumb a { color: var(--brand); }
.page-header .lead { margin: 16px auto 0; }

/* ----------------- PLANS ----------------- */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px; display: flex; flex-direction: column;
  transition: all .3s ease; position: relative;
}
.plan:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.plan.featured {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-darker) 100%);
  color: #fff; border-color: transparent;
  transform: scale(1.03);
}
.plan.featured h3, .plan.featured .price { color: #fff; }
.plan.featured .price small { color: rgba(255,255,255,0.7); }
.plan.featured .desc { color: rgba(255,255,255,0.8); }
.plan.featured ul li { color: rgba(255,255,255,0.92); }
.plan.featured ul li::before { color: #fff; }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 6px 14px;
  border-radius: 999px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
}
.plan h3 { font-size: 1.5rem; margin-bottom: 6px; }
.plan .desc { color: var(--gray); margin-bottom: 24px; font-size: 0.95rem; }
.plan .price { font-family: var(--font-display); font-size: 3rem; color: var(--ink); font-weight: 700; line-height: 1; }
.plan .price small { font-family: var(--font-body); font-size: 0.95rem; color: var(--gray); font-weight: 400; }
.plan ul { margin: 28px 0; flex: 1; }
.plan ul li { padding: 8px 0 8px 28px; position: relative; font-size: 0.95rem; }
.plan ul li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--brand); font-weight: 700;
}
.plan .btn { width: 100%; justify-content: center; }
.plan.featured .btn { background: #fff; color: var(--brand); }
.plan.featured .btn:hover { background: var(--bg-warm); }

/* ----------------- DASHBOARD MEMBER ----------------- */
.dash {
  display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 80px);
}
.dash-sidebar {
  background: var(--bg-warm); border-right: 1px solid var(--line); padding: 32px 20px;
}
.dash-sidebar .user-block {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line);
}
.dash-sidebar .user-block .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-darker));
  color: #fff; display: grid; place-items: center; font-weight: 700;
}
.dash-sidebar .user-block strong { font-size: 0.95rem; }
.dash-sidebar .user-block small { color: var(--gray); font-size: 0.8rem; }
.dash-sidebar nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 8px;
  font-size: 0.92rem; color: var(--ink-2);
  margin-bottom: 4px;
  transition: all .2s ease;
}
.dash-sidebar nav a:hover, .dash-sidebar nav a.active { background: #fff; color: var(--brand); }
.dash-sidebar nav a svg { width: 18px; }

.dash-main { padding: 40px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.dash-header h1 { font-size: 1.8rem; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.dash-stat { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.dash-stat .label { font-size: 0.82rem; color: var(--gray); }
.dash-stat .value { font-size: 1.8rem; font-family: var(--font-display); color: var(--brand); font-weight: 700; }
.dash-stat .trend { font-size: 0.78rem; color: var(--success); }

.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.content-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.content-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.program-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px; background: var(--bg-warm); border-radius: 10px; margin-bottom: 10px;
}
.program-item .thumb {
  width: 56px; height: 56px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-darker));
  color: #fff; display: grid; place-items: center;
}
.program-item .info { flex: 1; }
.program-item .info strong { display: block; font-size: 0.95rem; }
.program-item .info small { color: var(--gray); font-size: 0.82rem; }
.program-item .progress { width: 80px; height: 6px; background: var(--gray-3); border-radius: 3px; overflow: hidden; }
.program-item .progress span { display: block; height: 100%; background: var(--brand); }

/* ----------------- AUTH PAGES ----------------- */
.auth {
  min-height: calc(100vh - 80px);
  display: grid; grid-template-columns: 1fr 1fr;
}
.auth-form-side { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.auth-form-side .form-wrap { max-width: 400px; width: 100%; margin: 0 auto; }
.auth-form-side h1 { font-size: 2rem; margin-bottom: 8px; }
.auth-form-side .subtitle { color: var(--gray); margin-bottom: 36px; }
.auth-visual-side {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  color: #fff; padding: 64px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.auth-visual-side::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.12), transparent 50%);
}
.auth-visual-side .mark-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: .12; width: 80%;
}
.auth-visual-side .quote { position: relative; max-width: 420px; }
.auth-visual-side .quote p { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; margin-bottom: 16px; line-height: 1.4; }
.auth-visual-side .quote cite { font-style: normal; opacity: .8; font-size: 0.9rem; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--ink-2); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  outline: none; transition: all .2s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--brand); box-shadow: 0 0 0 4px rgba(122, 30, 43, 0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-link { color: var(--brand); font-size: 0.88rem; font-weight: 500; }
.form-link:hover { text-decoration: underline; }
.checkbox-row { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 0.88rem; color: var(--gray); }

.divider-or { display: flex; align-items: center; gap: 12px; margin: 24px 0; color: var(--gray); font-size: 0.82rem; }
.divider-or::before, .divider-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }

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

/* ----------------- BLOG ----------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  position: relative; overflow: hidden;
}
.blog-card .cover::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15), transparent 60%);
}
.blog-card .cover .icon-large { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.3); }
.blog-card .cover .icon-large svg { width: 70px; }
.blog-card .content { padding: 24px; }
.blog-card .meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 12px; }
.blog-card .meta .tag { color: var(--brand); }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.92rem; color: var(--gray); }

/* ----------------- CONTACT ----------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-list { margin-top: 28px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.contact-list .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-list strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.contact-list small { color: var(--gray); font-size: 0.88rem; }
.contact-list .socials { display: flex; gap: 8px; }
.contact-list .socials a { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-warm); display: grid; place-items: center; transition: all .2s ease; }
.contact-list .socials a:hover { background: var(--brand); color: #fff; }

.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }

/* ----------------- FAQ ----------------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq-q .plus { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--brand); transition: transform .3s ease;
}
.faq-q .plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 0 24px; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; }

/* ----------------- ALERTS ----------------- */
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 0.92rem; }
.alert.success { background: #E8F5EE; color: #1F7A4D; border: 1px solid #BFDFCE; }
.alert.error { background: #FAEDED; color: #B23A3A; border: 1px solid #ECC8C8; }

/* ----------------- TIMELINE (SOBRE) ----------------- */
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px; background: var(--line);
}
.timeline-item { position: relative; padding: 0 0 40px 64px; }
.timeline-item::before {
  content: ''; position: absolute; left: 16px; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand); border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--brand);
}
.timeline-item .year { font-family: var(--font-display); color: var(--brand); font-weight: 700; font-size: 1.1rem; }
.timeline-item h4 { margin: 4px 0 6px; font-size: 1.15rem; }
.timeline-item p { color: var(--gray); }

/* ----------------- CERTIFICATIONS GRID ----------------- */
.certs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cert {
  padding: 24px 20px; background: var(--bg-warm); border-radius: var(--radius);
  border: 1px solid var(--line); text-align: center;
  transition: all .25s ease;
}
.cert:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cert .badge { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; }
.cert .badge svg { width: 22px; }
.cert strong { display: block; font-size: 0.95rem; }
.cert small { color: var(--gray); font-size: 0.82rem; }

/* ----------------- RESPONSIVE ----------------- */
@media (max-width: 968px) {
  .section { padding: 72px 0; }
  .hero-grid, .contact-grid, .auth { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .problems-grid, .services-grid, .testimonials-grid, .plans-grid, .blog-grid { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dash { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .auth-visual-side { display: none; }
  .auth-form-side { padding: 48px 24px; }
  .certs { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { display: none; position: fixed; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 24px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: 14px 16px; }
  .menu-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .lang-switch a { width: 26px; height: 26px; font-size: 0.95rem; }
  .cta-banner { padding: 56px 28px; margin: 64px 16px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .plan.featured { transform: none; }
}
@media (max-width: 560px) {
  h1 { font-size: 2.1rem; }
  .floating-card.fc-1 { left: 0; right: 0; bottom: 16px; margin: 0 auto; width: fit-content; }
  .floating-card.fc-2 { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; border-radius: 16px; }
  .method-steps { grid-template-columns: 1fr; }
}

/* ----------------- ANIMATIONS ----------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(20px); transition: all .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* utilitários */
.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: 4rem; }
.bg-warm { background: var(--bg-warm); }
.bg-cream { background: var(--bg-cream); }
