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

/* ─── VARIÁVEIS GLOBAIS ──────────────────────────────── */
:root {
  --red:        #C0392B;
  --red-dark:   #a93226;
  --red-light:  #d4534a;
  --red-glow:   rgba(192,57,43,0.13);
  --text-dark:  #1a1a1a;
  --text-mid:   #444;
  --text-light: #6b7280;
  --bg-light:   #f8f8f8;
  --bg-cream:   #fdf6ec;
  --white:      #ffffff;
  --border:     #e5e7eb;
  --max:        1160px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-red: 0 8px 32px rgba(192,57,43,0.25);
  /* Espaçamento */
  --section-y:    6rem;
  --section-y-sm: 4rem;
  --grid-gap:     24px;
  --card-pad:     28px;
  --underline-gap:36px;
}

/* ─── BASE ────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── TIPOGRAFIA DE SEÇÃO ─────────────────────────────── */
.section-label {
  font-size: 11.5px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 8px; display: block;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 30px;
  color: var(--text-dark); letter-spacing: -0.3px;
  line-height: 1.2; margin-bottom: 12px;
}
.section-underline {
  height: 3px; background: var(--red);
  border-radius: 3px; margin-bottom: var(--underline-gap);
  width: 0; transition: width 0.5s ease 0.2s;
}
.section-underline.visible { width: 48px; }

/* ─── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-light);
}
.breadcrumb-inner a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--red); }
.breadcrumb-inner span { color: var(--text-dark); font-weight: 500; }

/* ─── PAGE HEADER (páginas internas) ─────────────────── */
.page-header {
  background: var(--red);
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 90% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 5% 90%, rgba(0,0,0,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.page-header::after {
  content: ''; position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%); width: 340px; height: 340px;
  border-radius: 50%; border: 50px solid rgba(255,255,255,0.04); pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92); font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
.page-header-dot {
  width: 6px; height: 6px; background: #fff; border-radius: 50%;
}
.page-header h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 38px;
  color: #fff; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 14px;
}
.page-header p { color: rgba(255,255,255,0.82); font-size: 15.5px; max-width: 480px; line-height: 1.7; }

/* ─── BOTÕES GLOBAIS ──────────────────────────────────── */
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; border: none;
  font-size: 14px; font-weight: 700; padding: 14px 28px;
  border-radius: 8px; font-family: 'Inter', sans-serif; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline-red {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--red); color: var(--red); background: transparent;
  font-size: 14px; font-weight: 700; padding: 13px 28px;
  border-radius: 8px; text-decoration: none; font-family: 'Inter', sans-serif; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }

/* ─── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
