/* =============================================================================
   EcoLuz Cooperativa de Energia — Official Landing Page Design System
   ============================================================================= */

:root {
  --primary-teal: #0d5c4b;
  --primary-teal-dark: #083c31;
  --primary-teal-light: #12826a;
  --accent-green: #16a34a;
  --accent-green-dark: #15803d;
  --accent-green-light: #22c55e;
  
  --bg-dark: #091714;
  --bg-card-dark: #102621;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-white: #ffffff;
  
  --border-light: #e2e8f0;
  --border-card: #e5e7eb;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.btn-white-hero {
  background-color: #ffffff;
  color: #0f172a;
  padding: 12px 36px;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  font-size: 16px;
}

.btn-white-hero:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-teal-primary {
  background-color: #005a4e;
  color: #ffffff;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 16px;
}

.btn-teal-primary:hover {
  background-color: #00453b;
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.btn-text-link {
  color: #005a4e;
  font-size: 13px;
  font-weight: 600;
}

.btn-text-link:hover {
  text-decoration: underline;
}

/* =============================================================================
   1. SITE HEADER & NAVIGATION
   ============================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-top-bar {
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 120px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #475569;
  transition: var(--transition);
}

.social-icon-btn:hover {
  color: var(--accent-green);
  background-color: #f0fdf4;
}

.header-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.brand-logo-small {
  height: 48px;
  width: auto;
}

.header-menu-btn-wrap {
  width: 120px;
  display: flex;
  justify-content: flex-end;
}

.header-menu-pill-btn {
  background-color: #4b8b50;
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.header-menu-pill-btn:hover {
  background-color: #3b7440;
}

.header-subnav-bar {
  padding: 10px 0;
  background-color: #ffffff;
}

.header-subnav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  padding: 4px 0;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #2e7d32;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2e7d32;
  border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 2000;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
  padding: 24px;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.close-drawer-btn {
  font-size: 32px;
  color: #64748b;
  line-height: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  padding: 8px 0;
  border-bottom: 1px solid #f8fafc;
}

.mobile-nav-link:hover {
  color: #2e7d32;
}

/* =============================================================================
   2. HERO SECTION
   ============================================================================= */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 80px 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 860px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.hero-badge-note {
  font-size: 15px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* =============================================================================
   3. A ESSÊNCIA DA ECOLUZ
   ============================================================================= */
.section-essencia {
  padding: 90px 0;
  background-color: #ffffff;
}

.section-title-green {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: #38a169;
  margin-bottom: 60px;
}

.essencia-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.essencia-row:last-child {
  margin-bottom: 0;
}

.essencia-img-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.essencia-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.essencia-img-frame:hover .essencia-photo {
  transform: scale(1.03);
}

.essencia-block-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
}

.essencia-block-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

.essencia-values-list p {
  margin-bottom: 8px;
}

.essencia-values-list p:last-child {
  margin-bottom: 0;
}

/* =============================================================================
   4. ESCOLHA O SEU MODELO
   ============================================================================= */
.section-modelos {
  padding: 80px 0 100px;
  background-color: #ffffff;
}

.modelos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.modelo-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.modelo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.modelo-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.modelo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.modelo-card:hover .modelo-card-img {
  transform: scale(1.05);
}

.modelo-card-body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.modelo-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 12px;
}

.modelo-card-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.4;
}

.modelo-card-text {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
}

/* =============================================================================
   5. CALCULE SUA ECONOMIA (WIZARD 2 PASSOS)
   ============================================================================= */
.section-calculator {
  padding: 90px 0;
  background-color: #ffffff;
}

.calculator-layout-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.calc-left-col {
  padding-right: 20px;
}

.calc-brand-icon-wrap {
  margin-bottom: 24px;
}

.calc-brand-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.calc-headline {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 16px;
}

.calc-subhead {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

/* Card Container */
.calc-card-wrap {
  display: flex;
  justify-content: center;
}

.calc-card {
  width: 100%;
  max-width: 480px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  padding: 28px;
}

/* Step Bar Tabs */
.wizard-steps-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.wizard-step-tab {
  cursor: pointer;
}

.wizard-step-bar {
  height: 3px;
  background-color: #e5e7eb;
  border-radius: 2px;
  margin-bottom: 8px;
  transition: var(--transition);
}

.wizard-step-tab.active .wizard-step-bar {
  background-color: #005a4e;
}

.wizard-step-label-top {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}

.wizard-step-tab.active .wizard-step-label-top {
  color: #005a4e;
}

.wizard-step-label-sub {
  font-size: 12px;
  color: #9ca3af;
}

.wizard-step-tab.active .wizard-step-label-sub {
  color: #374151;
  font-weight: 500;
}

/* Step Panes */
.wizard-step-pane {
  display: none;
}

.wizard-step-pane.active {
  display: block;
}

.calc-field-group {
  margin-bottom: 20px;
}

.calc-input-label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.calc-currency-box {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 8px 14px;
  background-color: #ffffff;
  transition: border-color 0.2s;
}

.calc-currency-box:focus-within {
  border-color: #005a4e;
  box-shadow: 0 0 0 2px rgba(0, 90, 78, 0.15);
}

.calc-curr-prefix {
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  margin-right: 8px;
}

.calc-number-input {
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  width: 100%;
}

/* Slider */
.calc-slider-group {
  margin-bottom: 28px;
}

.calc-range-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #005a4e;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 90, 78, 0.3);
}

.calc-range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #005a4e;
  cursor: pointer;
}

.calc-slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
}

/* Result Box */
.calc-result-display {
  text-align: center;
  margin: 24px 0;
}

.calc-result-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.calc-result-amount {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: #005a4e;
}

/* Wizard Step 2 Fields */
.wizard-form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}

.form-input {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: #005a4e;
  box-shadow: 0 0 0 2px rgba(0, 90, 78, 0.15);
}

.phone-input-combo {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
  background-color: #ffffff;
}

.phone-input-combo:focus-within {
  border-color: #005a4e;
}

.country-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #f9fafb;
  border-right: 1px solid #e5e7eb;
  padding: 8px 12px;
  font-size: 13px;
  color: #4b5563;
  font-weight: 500;
}

.form-input-phone {
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 14px;
  width: 100%;
}

.radio-group-inline {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4b5563;
  cursor: pointer;
}

/* Dropzone */
.dropzone-box {
  position: relative;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #f8fafc;
  cursor: pointer;
  transition: border-color 0.2s;
}

.dropzone-box:hover {
  border-color: #005a4e;
  background-color: #f0fdf4;
}

.dropzone-icon {
  color: #64748b;
}

.dropzone-text {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}

.file-hidden-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.terms-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #4b5563;
  margin: 6px 0 10px;
}

.checkbox-custom {
  margin-top: 2px;
}

.terms-link {
  color: #005a4e;
  text-decoration: underline;
}

/* Success alert card */
.cadastro-success-card {
  text-align: center;
  padding: 24px 16px;
}

.cadastro-success-card.hidden {
  display: none;
}

.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #dcfce7;
  color: #15803d;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.btn-outline-teal {
  border: 1px solid #005a4e;
  color: #005a4e;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 13px;
}

/* =============================================================================
   6. PERGUNTAS FREQUENTES (FAQ)
   ============================================================================= */
.section-faq {
  padding: 80px 0 100px;
  background-color: #ffffff;
}

.faq-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.faq-card-box {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-card-header {
  position: relative;
  background-color: #1e824c;
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.faq-arrow-down {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #1e824c;
}

.faq-card-body {
  padding: 24px 20px;
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  text-align: center;
  background-color: #ffffff;
}

/* =============================================================================
   7. VAGAS DE COOPERADOS & USINAS (GAUGES)
   ============================================================================= */
.section-vagas {
  padding: 80px 0 100px;
  background-color: #ffffff;
}

.vagas-subhead {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 50px;
}

.vagas-gauges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.gauge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gauge-svg-wrapper {
  width: 170px;
  height: 170px;
  margin-bottom: 16px;
}

.circular-chart {
  display: block;
  width: 100%;
  height: 100%;
}

.circle-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 2.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke: #16a34a;
  transition: stroke-dasharray 1s ease;
}

.gauge-text {
  fill: #16a34a;
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 700;
  text-anchor: middle;
}

.gauge-label {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
}

/* =============================================================================
   8. SEÇÕES OPCIONAIS (PREMIUM)
   ============================================================================= */
.optional-section {
  transition: opacity 0.3s ease;
}

.optional-section.is-hidden {
  display: none !important;
}

/* Stats */
.section-stats {
  padding: 60px 0;
  background-color: #064e3b;
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #34d399;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13.5px;
  color: #d1fae5;
}

/* Como funciona */
.section-how {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.pill-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 9999px;
  background-color: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 15px;
  color: #64748b;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

.step-number-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #005a4e;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Benefícios */
.section-benefits {
  padding: 80px 0;
  background-color: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: #f8fafc;
  transition: var(--transition);
}

.benefit-card:hover {
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
}

/* Depoimentos */
.section-testimonials {
  padding: 80px 0;
  background-color: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: #334155;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.testimonial-author span {
  font-size: 12px;
  color: #64748b;
}

/* CTA Final */
.section-cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, #005a4e 0%, #16a34a 100%);
  color: #ffffff;
}

.section-cta-final h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-cta-final p {
  font-size: 17px;
  opacity: 0.95;
  margin-bottom: 28px;
}

/* =============================================================================
   9. FOOTER
   ============================================================================= */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 50px 0 0;
}

.footer-nav-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}

.footer-nav-row a {
  font-size: 13.5px;
  color: #334155;
  font-weight: 500;
}

.footer-nav-row a:hover {
  color: #16a34a;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin-bottom: 32px;
}

.footer-cols-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.footer-text {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-links-list {
  margin-top: 10px;
}

.footer-contact-link {
  font-size: 13.5px;
  color: #005a4e;
  font-weight: 600;
}

.footer-contact-link:hover {
  text-decoration: underline;
}

.footer-bottom-bar {
  background-color: #e2e8f0;
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: #475569;
}

.footer-social-aside {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-title {
  font-size: 13px;
  color: #475569;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background-color: #16a34a;
  color: #ffffff;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background-color: #15803d;
}

/* =============================================================================
   10. SCROLL REVEAL & UTILITIES
   ============================================================================= */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================================
   11. RESPONSIVE MEDIA QUERIES
   ============================================================================= */
@media (max-width: 992px) {
  .hero-headline {
    font-size: 34px;
  }
  .essencia-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .essencia-row-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .text-right-md {
    text-align: left;
  }
  .modelos-grid {
    grid-template-columns: 1fr;
  }
  .calculator-layout-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .calc-left-col {
    padding-right: 0;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .faq-cards-grid {
    grid-template-columns: 1fr;
  }
  .vagas-gauges-row {
    flex-direction: column;
    gap: 40px;
  }
  .footer-cols-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: 26px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .header-subnav-links {
    display: none;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
