/* ============================================================
   ESSENCIAL CONTABILIDADE E GESTÃO
   Folha de Estilos Principal - v1.0
   Paleta 2026: Azul Royal #1a3a6b | Azul Claro #4a90d9
                Dourado #c9a84c | Laranja CTA #e07c3e
   Tipografia: Montserrat (títulos) + Open Sans (corpo)
   ============================================================ */

/* ---------- FONTES ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* ---------- VARIÁVEIS CSS ---------- */
:root {
  --primary: #1a3a6b;
  --primary-dark: #12284d;
  --secondary: #4a90d9;
  --accent: #4a90d9;
  --cta: #e07c3e;
  --gold: #c9a84c;
  --bg-light: #f5f7fa;
  --bg-alt: #eef2f7;
  --bg-white: #ffffff;
  --text: #4a5568;
  --text-dark: #2d3748;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-pill: 50px;
  --transition: 0.3s ease;
  --container: 1200px;
}

/* ---------- RESET E BASE ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Open Sans", sans-serif;
  background: var(--bg-light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
  line-height: 1.3;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.text-center { text-align: center; }

/* ---------- HELPERS DE GRADE ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1.2;
  text-align: center;
}
.btn i { font-size: 16px; }
.btn-grow {
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-grow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26,58,107,0.3);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74,144,217,0.3);
}

/* Botão do formulário (sobre fundo branco) - azul escuro ativo, azul claro no hover */
#contactForm .btn--accent {
  background: var(--primary);
}
#contactForm .btn--accent:hover {
  background: var(--accent);
  color: #fff;
  border: 2px solid transparent;
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #1eb85a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
}

.btn--cta {
  background: var(--cta);
  color: #fff;
}
.btn--cta:hover {
  background: #c96a31;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(224,124,62,0.35);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  height: 48px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__nav a:not(.btn) {
  position: relative;
  padding: 12px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}
.header__nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.header__nav a:not(.btn):hover,
.header__nav a:not(.btn).active {
  color: var(--primary);
}
.header__nav a:not(.btn):hover::after,
.header__nav a:not(.btn).active::after {
  width: calc(100% - 28px);
}
.header__cta {
  margin-left: 12px;
}
.header__cta .btn {
  padding: 10px 22px;
  font-size: 13px;
}

/* ---------- HAMBURGER (Mobile) ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,31,60,0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.show {
  display: block;
  opacity: 1;
}

/* ============================================================
   HERO (Página Inicial)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0d1f3c 100%);
  overflow: hidden;
  padding-top: 74px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74,144,217,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__text {
  color: #fff;
}
.hero__label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.hero h1 {
  font-size: 52px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
  font-family: "Montserrat", sans-serif;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-whatsapp-float {
  animation: heroFloat 4s ease-in-out infinite;
}

/* ----- HERO: Decorativos ----- */
.hero__decor--circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 1;
  pointer-events: none;
}
.hero__decor--circle-1 {
  width: 300px;
  height: 300px;
  top: 12%;
  left: -80px;
}
.hero__decor--circle-2 {
  width: 160px;
  height: 160px;
  bottom: 15%;
  right: 8%;
}
.hero__decor--star {
  position: absolute;
  top: 20%;
  right: 10%;
  color: var(--gold);
  font-size: 28px;
  z-index: 1;
  animation: heroStar 3.5s ease-in-out infinite;
  pointer-events: none;
}
.hero__decor--green-eclipse {
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 420px;
  height: 260px;
  background: rgba(74,144,217,0.35);
  border-radius: 50%;
  transform: rotate(-15deg);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

/* ----- HERO: Visual (foto + gráfico) ----- */
.hero__visual {
  position: relative;
  z-index: 2;
}
.hero-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card--image {
  aspect-ratio: 3 / 4;
  max-width: 380px;
  margin-left: auto;
}
.hero-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-chart {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}
.hero-chart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hero-chart__label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.hero-chart__value {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cta);
  background: rgba(224,124,62,0.12);
  padding: 4px 10px;
  border-radius: 20px;
}
.hero-chart svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero__decor {
  position: absolute;
  z-index: 4;
}
.hero__decor--1,
.hero__decor--2 {
  position: absolute;
  border-radius: 12px;
  z-index: 4;
}
.hero__decor--1 {
  top: -30px;
  right: 20px;
  width: 90px;
  height: 90px;
  background: rgba(74,144,217,0.25);
  animation: heroFloat 5s ease-in-out infinite;
}
.hero__decor--2 {
  bottom: 40px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.2);
  animation: heroFloat 4s ease-in-out infinite 0.5s;
}

/* ============================================================
   PAGE BANNER (páginas internas)
   ============================================================ */
.page-banner {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0d1f3c 100%);
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,144,217,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.page-banner h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin: 16px 0 10px;
}
.page-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.section {
  padding: 80px 0;
}
.section--light {
  background: var(--bg-light);
}
.section--dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.section--dark .section-subtitle,
.section--dark .section-title {
  color: #fff;
}

/* ---------- LABEL / SUBTITLE ---------- */
.section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section--dark .section-label {
  color: var(--accent);
}
/* Badge de vidro - fundo escuro */
.section-label--badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 10px 26px;
  border-radius: 10px;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
/* Badge de vidro - fundo claro (azul claro) */
.section-label--badge-light {
  display: inline-block;
  background: rgba(74,144,217,0.12);
  color: var(--accent);
  padding: 10px 26px;
  border-radius: 10px;
  letter-spacing: 2px;
  border: 1px solid rgba(74,144,217,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(74,144,217,0.15);
}

/* ============================================================
   FEATURES (3 áreas / diferenciais)
   ============================================================ */
.features {
  padding: 60px 0 100px;
  margin-top: 0;
  position: relative;
  z-index: 10;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border-top: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}
.feature-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(74,144,217,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-card__icon i {
  font-size: 26px;
  color: var(--accent);
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   SPLIT (conteúdo + imagem)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split__content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}
.split__content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.split__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.split__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__image-overlay {
  position: relative;
}
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- CITAÇÃO (Quote) ---------- */
.quote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: rgba(201,168,76,0.08);
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}
.quote p {
  font-style: italic;
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 6px !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.quote cite {
  font-size: 14px;
  color: var(--text-light);
  font-style: normal;
}

/* ============================================================
   MVV (Missão / Visão / Valores)
   ============================================================ */
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.mvv-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--accent);
}
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.mvv-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(74,144,217,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.mvv-card__icon i {
  font-size: 26px;
  color: var(--accent);
}
.mvv-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.mvv-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

/* ============================================================
   EQUIPE
   ============================================================ */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-card:hover .team-card__photo img {
  transform: scale(1.05);
}
.team-card__info {
  padding: 20px 20px 24px;
  text-align: center;
}
.team-card__info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card__info span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.team-card__info p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   PLANOS
   ============================================================ */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}
.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plan-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
  text-align: center;
}
.plan-card__subtitle {
  color: var(--text-light);
  font-size: 14px;
  text-align: center;
  margin-bottom: 28px;
}
.plan-card ul {
  margin-bottom: 32px;
  flex-grow: 1;
}
.plan-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-light);
  line-height: 1.5;
}
.plan-card ul li:last-child {
  border-bottom: none;
}
.plan-card ul li i {
  color: var(--accent);
  font-size: 15px;
  margin-top: 3px;
}
.plan-card .btn {
  width: 100%;
}
/* Plano destacado */
.plan-card--featured {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(26,58,107,0.35);
  padding-top: 56px;
}
.plan-card--featured::before {
  content: 'RECOMENDADO';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: var(--gold);
  color: var(--primary-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-align: center;
  padding: 12px 0;
  white-space: nowrap;
}
.plan-card--featured:hover {
  transform: scale(1.04) translateY(-8px);
}
.plan-card--featured h3,
.plan-card--featured .plan-card__subtitle {
  color: #fff;
}
.plan-card--featured ul li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.15);
}
.plan-card--featured ul li i {
  color: var(--gold);
}

/* ============================================================
   SERVIÇOS DETALHADOS
   ============================================================ */
.service-detail {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}
.service-detail:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-detail__icon {
  width: 56px;
  height: 56px;
  background: rgba(74,144,217,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-detail__icon i {
  font-size: 24px;
  color: var(--accent);
}
.service-detail h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-detail p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- Bloco de política de privacidade ---------- */
.privacy-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
}
.privacy-block:last-child {
  border-bottom: none;
}
.privacy-block__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
  vertical-align: middle;
}
.privacy-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.privacy-block p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.privacy-block ul {
  margin: 12px 0 12px 0;
}
.privacy-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  padding: 6px 0;
}
.privacy-block ul li i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 14px;
}

/* ============================================================
   TRANSFERÊNCIA DE CONTABILIDADE
   ============================================================ */
.transfer-section {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0d1f3c 100%);
  color: #fff;
  overflow: hidden;
}
.transfer-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.transfer-title {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  margin: 20px 0 12px;
}
.transfer-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 50px;
}
.transfer-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-bottom: 50px;
}
.transfer-step {
  text-align: center;
  position: relative;
}
.transfer-step__icon {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
}
.transfer-step__circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.transfer-step:hover .transfer-step__circle {
  border-color: var(--gold);
  background: rgba(201,168,76,0.15);
}
.transfer-step__circle i {
  font-size: 30px;
  color: #fff;
}
.transfer-step__number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}
.transfer-step__connector {
  position: absolute;
  top: 45px;
  left: calc(50% + 70px);
  width: calc(100% - 140px);
  height: 2px;
  background: linear-gradient(90deg, rgba(201,168,76,0.5), transparent);
}
.transfer-step:last-child .transfer-step__connector {
  display: none;
}
.transfer-step h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.transfer-step p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}
.transfer-btn {
  display: inline-flex;
}

/* ============================================================
   ESTATÍSTICAS / CONQUISTAS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stats__title {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 48px;
}
.stat {
  padding: 32px 16px;
  position: relative;
}
.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat:last-child::after {
  display: none;
}
.stat__number {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #3a76b8 100%);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26,58,107,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-section .btn--whatsapp {
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================================================
   CLIENTES (Swiper)
   ============================================================ */
.clients-swiper {
  position: relative;
  padding-top: 16px;
  padding-left: 56px;
  padding-right: 56px;
  padding-bottom: 40px !important;
  overflow: hidden;
}
.clients-swiper .swiper-wrapper {
  padding: 0;
}
.clients-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo {
  width: 100%;
  max-width: 160px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: all 0.3s ease;
  margin: 0 auto;
}
.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}
.clients-swiper .swiper-pagination-bullet {
  background: var(--accent);
  opacity: 0.4;
}
.clients-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.clients-swiper .swiper-button-prev,
.clients-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  top: 50%;
  margin-top: -28px;
}
.clients-swiper .swiper-button-prev {
  left: 4px;
}
.clients-swiper .swiper-button-next {
  right: 4px;
}
.clients-swiper .swiper-button-prev::after,
.clients-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}
.clients-swiper .swiper-button-prev:hover,
.clients-swiper .swiper-button-next:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.clients-swiper .swiper-button-prev.swiper-button-disabled,
.clients-swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: left;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 24px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: rgba(74,144,217,0.15);
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-card__text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--bg-light);
  padding-top: 20px;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}
.testimonial-card__role {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,144,217,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.newsletter__text {
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
.newsletter__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}
.newsletter__icon i {
  font-size: 26px;
  color: var(--accent);
}
.newsletter__heading h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.newsletter__heading p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}
.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter__form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  outline: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.newsletter__form input::placeholder {
  color: rgba(255,255,255,0.6);
}
.newsletter__form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.18);
}
.newsletter__form .btn {
  white-space: nowrap;
}

/* ============================================================
   FORMULÁRIO DE CONTATO
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact__item-icon {
  width: 52px;
  height: 52px;
  background: rgba(74,144,217,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__item-icon i {
  font-size: 22px;
  color: var(--accent);
}
.contact__item-text strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact__item-text a {
  color: var(--text-light);
  font-size: 15px;
  transition: color 0.3s;
}
.contact__item-text a:hover {
  color: var(--accent);
}
.contact__social {
  display: flex;
  gap: 12px;
}
.contact__social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}
.contact__social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ---------- Formulário ---------- */
.form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form--underline {
  border-top: 4px solid var(--accent);
}
.form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form > p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 28px;
}
.form__group {
  margin-bottom: 20px;
}
.form__group label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  transition: all 0.3s ease;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74,144,217,0.15);
}
.form__group textarea {
  resize: vertical;
  min-height: 120px;
}
.form__status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}
.form__status--success {
  display: block;
  background: rgba(37,211,102,0.12);
  color: #1d9e4d;
  border: 1px solid rgba(37,211,102,0.3);
}
.form__status--error {
  display: block;
  background: rgba(224,124,62,0.12);
  color: #c96a31;
  border: 1px solid rgba(224,124,62,0.3);
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 70px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand .logo {
  width: 180px;
  margin-bottom: 16px;
}
.footer__brand img {
  max-height: 60px;
  margin-bottom: 16px;
}
.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}
.footer__social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.footer h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}
.footer__links li {
  margin-bottom: 12px;
}
.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.3s;
}
.footer__links a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer__contact i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 15px;
}
.footer__contact a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.footer__contact a:hover {
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
}
.whatsapp-float a {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
}
.whatsapp-float a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37,211,102,0.5);
}
.whatsapp-float a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsappPulse 2s ease-out infinite;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18,40,77,0.98);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px 0;
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.cookie-banner p {
  flex: 1;
  min-width: 260px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.cookie-banner__link {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s;
}
.cookie-banner__link:hover {
  color: #fff;
}
.cookie-banner .btn {
  padding: 10px 22px;
  font-size: 13px;
}
.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   BLOG (estrutura base; estilos específicos no PHP)
   ============================================================ */
.blog-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 140px 0 60px;
  text-align: center;
}
.post-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 140px 0 60px;
  text-align: center;
}

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left {
  transform: translateX(-40px);
}
.fade-in-right {
  transform: translateX(40px);
}
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes heroStar {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.15) rotate(15deg); opacity: 1; }
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 968px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 90px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    gap: 4px;
    z-index: 1050;
  }
  .header__nav.open {
    right: 0;
  }
  .header__nav a:not(.btn) {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    color: var(--text-dark);
  }
  .header__nav a:not(.btn)::after {
    display: none;
  }
  .header__cta {
    margin: 20px 0 0;
    width: 100%;
  }
  .header__cta .btn {
    width: 100%;
  }
  .hamburger {
    display: flex;
  }
  .nav-overlay.show {
    display: block;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    padding: 40px 0 80px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__buttons {
    justify-content: center;
  }
  .hero__visual {
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-card--image {
    margin: 0 auto;
  }
  .hero-chart {
    left: 50%;
    transform: translateX(-50%);
  }

  .features__grid {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mvv__grid {
    grid-template-columns: 1fr;
  }
  .plans__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-card--featured {
    transform: scale(1);
  }
  .plan-card--featured:hover {
    transform: translateY(-8px);
  }
  .transfer-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .transfer-step__connector {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stat::after {
    display: none;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .newsletter__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .newsletter__text {
    justify-content: center;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-title {
    font-size: 30px;
  }
  .stats__title {
    font-size: 28px;
  }
  .cta-section h2 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .clients-swiper {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .clients-swiper .swiper-wrapper {
    padding: 0;
  }
  .clients-swiper .swiper-button-prev {
    left: -6px;
  }
  .clients-swiper .swiper-button-next {
    right: -6px;
  }
  .clients-swiper .swiper-button-prev,
  .clients-swiper .swiper-button-next {
    width: 34px;
    height: 34px;
    margin-top: -22px;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .team__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 0;
  }
  .page-banner {
    padding: 120px 0 60px;
  }
  .page-banner h1 {
    font-size: 32px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-chart {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }
  .form {
    padding: 28px 20px;
  }
  .newsletter__form {
    flex-direction: column;
  }
  .newsletter__form input {
    width: 100%;
  }
  .transfer-steps {
    gap: 40px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float a {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

/* ============================================================
   PÁGINA DE ERRO (404 / 500)
   Layout isolado, não depende de .section/.container
   ============================================================ */
.error-page {
  min-height: calc(100vh - 340px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px;
  background: var(--bg-light, #f5f7fa);
  text-align: center;
}
.error-box {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.error-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary, #1a3a6b) 0%, var(--secondary, #4a90d9) 100%);
  color: #fff;
  font-size: 38px;
  margin-bottom: 30px;
  box-shadow: 0 12px 30px rgba(26, 58, 107, 0.25);
}
.error-box__code {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(88px, 14vw, 150px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin: 0 0 18px;
  background: linear-gradient(135deg, var(--primary, #1a3a6b) 0%, var(--accent, #e07c3e) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.error-box__kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent, #e07c3e);
  margin: 0 0 12px;
}
.error-box h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--text-dark, #1c2233);
  margin: 0 0 18px;
  line-height: 1.3;
}
.error-box__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text, #4a5568);
  max-width: 480px;
  margin: 0 auto 38px;
}
.error-box__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsivo da página de erro */
@media (max-width: 640px) {
  .error-page {
    min-height: auto;
    padding: 110px 20px;
  }
  .error-box__icon {
    width: 76px;
    height: 76px;
    font-size: 32px;
    margin-bottom: 24px;
  }
  .error-box__actions {
    flex-direction: column;
  }
  .error-box__actions .btn {
    width: 100%;
  }
}
