/* Acesso Verde — Design System v3 (Ref: Blis) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  /* Brand greens */
  --primary-900: #0b2618;
  --primary-800: #134d30;
  --primary-700: #1a7347;
  --primary-600: #21995e;
  --primary-500: #28bf75;
  --primary-400: #4dd694;
  --primary-300: #7ae4b3;
  --primary-200: #a8f0ce;
  --primary-100: #d5f8e8;
  --primary-50: #edfdf5;

  /* Neutrals */
  --neutral-950: #0a0a0f;
  --neutral-900: #111118;
  --neutral-800: #1e1e28;
  --neutral-700: #2e2e3a;
  --neutral-600: #4a4a5a;
  --neutral-500: #6e6e80;
  --neutral-400: #9393a3;
  --neutral-300: #b8b8c5;
  --neutral-200: #dcdce5;
  --neutral-100: #efefF4;
  --neutral-50: #f8f8fb;

  /* Accent */
  --accent: #28bf75;
  --accent-hover: #21995e;
  --accent-light: #edfdf5;

  --white: #ffffff;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --max-width: 760px;
  --max-width-wide: 1140px;
  --max-width-full: 1280px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ===== 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(--neutral-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--neutral-500); }

/* ===== NAV ===== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--neutral-900);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

nav .logo img {
  height: 34px;
  width: 34px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--neutral-700);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease);
}

.nav-toggle:hover {
  background: var(--neutral-50);
}

.nav-links {
  display: flex;
  gap: 0.1rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: var(--neutral-600);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--neutral-900);
  background: var(--neutral-50);
}

.nav-links a.active {
  color: var(--primary-700);
  background: var(--primary-50);
  font-weight: 600;
}

/* Nav CTA */
.nav-links a[href*="orientacao"] {
  background: var(--primary-500);
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  margin-left: 0.3rem;
}

.nav-links a[href*="orientacao"]:hover {
  background: var(--primary-600);
  color: var(--white);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  background: var(--neutral-950);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(40,191,117,0.15);
  color: var(--primary-300);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(40,191,117,0.2);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
  color: var(--primary-400);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* CTA Buttons */
.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-500);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  border: 2px solid var(--primary-500);
}

.cta:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40,191,117,0.25);
}

.cta-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.cta-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--primary-600);
  border: 2px solid var(--primary-200);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.8rem;
  transition: all 0.25s var(--ease);
}

.cta-secondary:hover {
  background: var(--primary-500);
  border-color: var(--primary-500);
  color: var(--white);
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.social-proof-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.proof-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-100);
  transition: all 0.3s var(--ease);
}

.proof-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.proof-stat .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-600);
  letter-spacing: -1px;
  line-height: 1.1;
}

.proof-stat .label {
  font-size: 0.82rem;
  color: var(--neutral-500);
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-600);
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--neutral-900);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ===== FEATURES (How it works / Steps) ===== */
.features {
  padding: 5rem 2rem;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 2.5rem 1.8rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-50);
  color: var(--primary-600);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  border: 2px solid var(--primary-100);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
}

.feature h3 {
  font-family: var(--font-heading);
  color: var(--neutral-900);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.feature p {
  color: var(--neutral-500);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== GRID / CARDS (Guide listing) ===== */
.grid {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 5rem 2rem;
}

.grid h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  font-weight: 800;
}

.grid > p.grid-subtitle {
  color: var(--neutral-500);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.card {
  flex: 1 1 340px;
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: all 0.3s var(--ease);
  position: relative;
}

.card:hover {
  border-color: var(--primary-300);
  box-shadow: 0 4px 20px rgba(40,191,117,0.1);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card h3 a {
  color: var(--neutral-900);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: color 0.2s var(--ease);
}

.card h3 a:hover {
  color: var(--primary-600);
}

.card p {
  color: var(--neutral-500);
  font-size: 0.88rem;
  line-height: 1.6;
}

.card .card-arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-400);
  font-size: 1.1rem;
  opacity: 0;
  transition: all 0.3s var(--ease);
}

.card:hover .card-arrow {
  opacity: 1;
  right: 1.2rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--neutral-50);
  padding: 4rem 2rem;
  text-align: center;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--neutral-600);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  transition: all 0.3s var(--ease);
}

.trust-item:hover .trust-icon {
  transform: scale(1.1);
  background: var(--primary-100);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.8rem;
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-100);
  transition: all 0.3s var(--ease);
}

.benefit-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.benefit-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid var(--primary-100);
}

.benefit-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.3rem;
}

.benefit-text p {
  font-size: 0.88rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 5rem 2rem;
  background: var(--neutral-50);
}

.about-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text .section-tag {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--neutral-900);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--neutral-600);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,38,24,0.88) 0%, rgba(19,77,48,0.85) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--white);
}

.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
  color: var(--white);
}

.cta-banner-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-content .cta {
  background: var(--white);
  color: var(--primary-700);
  border-color: var(--white);
}

.cta-banner-content .cta:hover {
  background: var(--primary-50);
  border-color: var(--primary-50);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== ARTICLE HERO ===== */
.article-hero {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0.9) 70%, var(--white) 100%);
}

/* ===== MAIN ===== */
main {
  min-height: 60vh;
}

/* ===== ARTICLE ===== */
article {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}

article h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--neutral-900);
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

article .lead {
  font-size: 1.08rem;
  color: var(--neutral-500);
  border-left: 3px solid var(--primary-400);
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.5rem;
  background: var(--primary-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.7;
}

article .meta {
  color: var(--neutral-400);
  font-size: 0.82rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ===== CONTENT ===== */
.content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--neutral-900);
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--neutral-100);
  letter-spacing: -0.3px;
  font-weight: 800;
}

.content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--neutral-800);
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.content p {
  margin-bottom: 1.1rem;
  color: var(--neutral-700);
  line-height: 1.8;
}

.content ul, .content ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.content li {
  margin-bottom: 0.5rem;
  color: var(--neutral-700);
  line-height: 1.7;
}

.content li::marker {
  color: var(--primary-500);
}

.content blockquote {
  border-left: 3px solid var(--primary-400);
  background: var(--primary-50);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--neutral-700);
}

.content blockquote p {
  margin-bottom: 0;
  font-style: normal;
}

/* Tables */
.content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--neutral-100);
}

.content th {
  background: var(--neutral-900);
  color: var(--white);
  padding: 0.85rem 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content td {
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid var(--neutral-100);
  color: var(--neutral-700);
}

.content tr:last-child td { border-bottom: none; }
.content tr:hover td { background: var(--primary-50); }

/* Code */
.content code {
  background: var(--neutral-100);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--primary-700);
}

.content pre {
  background: var(--neutral-950);
  color: var(--primary-200);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid var(--neutral-800);
}

.content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: 0.88em;
}

/* Links */
.content a {
  color: var(--primary-600);
  text-decoration: underline;
  text-decoration-color: var(--primary-200);
  text-underline-offset: 3px;
  transition: all 0.2s var(--ease);
}

.content a:hover {
  color: var(--primary-700);
  text-decoration-color: var(--primary-600);
}

.content strong { color: var(--neutral-900); font-weight: 700; }

.content hr {
  border: none;
  border-top: 2px solid var(--neutral-100);
  margin: 3rem 0;
}

/* ===== RELATED ===== */
.related {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--neutral-100);
}

.related h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--neutral-800);
  margin-bottom: 1rem;
  font-weight: 700;
}

.related ul { list-style: none; padding: 0; }
.related li { margin-bottom: 0.3rem; }

.related a {
  color: var(--primary-600);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  display: inline-block;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.2s var(--ease);
}

.related a:hover {
  color: var(--primary-700);
  background: var(--primary-50);
}

/* ===== SECTION LIST ===== */
section {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 3rem 2rem;
}

section h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--neutral-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  font-weight: 800;
}

.summary {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--neutral-100);
  transition: all 0.2s var(--ease);
}

.summary:hover {
  padding-left: 1rem;
}

.summary h2 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.summary h2 a {
  color: var(--neutral-900);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: color 0.2s var(--ease);
}

.summary h2 a:hover { color: var(--primary-600); }

.summary p {
  color: var(--neutral-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 520px;
  margin: 2.5rem 0;
}

.contact-form .field { margin-bottom: 1.5rem; }

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--neutral-800);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.2s var(--ease);
  background: var(--neutral-50);
  color: var(--neutral-800);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(40,191,117,0.1);
  background: var(--white);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button {
  background: var(--primary-500);
  color: var(--white);
  border: none;
  padding: 0.9rem 2.4rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: var(--font-body);
}

.contact-form button:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40,191,117,0.25);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ===== FOOTER ===== */
footer {
  background: var(--neutral-950);
  color: var(--neutral-400);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--neutral-500);
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-links-col h4 {
  color: var(--neutral-300);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.footer-links-col a {
  display: block;
  color: var(--neutral-500);
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}

.footer-links-col a:hover { color: var(--primary-400); }

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--neutral-600);
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.footer-bottom strong {
  color: var(--primary-400);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .hero p { font-size: 1rem; }
  .hero { padding: 3.5rem 1.5rem 3rem; }

  nav { padding: 0.7rem 1rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 0.8rem;
    gap: 0.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; border-radius: var(--radius-md); }
  .nav-links a[href*="orientacao"] { margin-left: 0; margin-top: 0.3rem; text-align: center; }

  .features-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { max-height: 300px; }
  .hero { min-height: 480px; padding: 4rem 1.5rem 3.5rem; }
  .article-hero { height: 150px; }

  .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .proof-stat .number { font-size: 1.8rem; }

  article { padding: 2rem 1.2rem; }
  article h1 { font-size: 1.8rem; }

  section { padding: 2rem 1.2rem; }
  .section { padding: 3.5rem 1.2rem; }
  .section-header h2 { font-size: 1.7rem; }

  .grid { padding: 3rem 1.2rem; }
  .card { flex: 1 1 100%; }

  .content table { font-size: 0.82rem; }
  .content th, .content td { padding: 0.5rem 0.7rem; }

  .footer-top { flex-direction: column; }
  .footer-links { gap: 2rem; }

  .whatsapp-float {
    padding: 0.7rem;
    bottom: 1.2rem;
    right: 1.2rem;
  }
  .whatsapp-float span { display: none; }

  .cta-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .proof-stat { padding: 1rem 0.5rem; }
  .benefit-card { flex-direction: column; gap: 0.8rem; }
}
