/* =========================================
   APIÚNA ENERGIA – CSS Clone (index2.css)
   Cores corrigidas conforme o site original
   ========================================= */

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

:root {
  --orange:       #ED7D31;
  --orange-dark:  #c96520;
  --orange-light: rgba(237,125,49,0.12);
  --blue:         #4472C4;
  --dark:         #1a1a1a;
  --dark2:        #212121;
  --gray:         #555555;
  --gray-mid:     #bfbfbf;
  --gray-light:   #f8f9fa;
  --white:        #ffffff;
  --border:       #e2e8f0;
  --shadow:       0 4px 20px rgba(0,0,0,0.10);
  --transition:   all 0.3s ease;
  --radius:       10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-title.white         { color: var(--white); }
.section-title.white::after  { background: var(--white); }

.section-intro {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* =========================================
   HEADER  – laranja sólido, igual ao original
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link { display: flex; align-items: center; }
.logo-img  { height: 38px; width: auto; }

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 3px;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}



/* Lang Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,0.35); }
.lang-flag { width: 26px; height: 18px; border-radius: 3px; object-fit: cover; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ham-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================
   MOBILE DRAWER
   ========================================= */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.5);
}
.drawer-overlay.open { display: flex; }

.mobile-drawer {
  background: var(--white);
  width: 280px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: 4px 0 24px rgba(0,0,0,0.2);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
}
.drawer-header h3 { color: var(--dark); font-size: 1.1rem; font-weight: 700; }

.close-btn {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.close-btn:hover { color: var(--orange); background: var(--orange-light); }

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.drawer-link {
  display: block;
  padding: 11px 14px;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.drawer-link:hover {
  color: var(--orange);
  background: var(--orange-light);
  padding-left: 20px;
}

.drawer-footer-lang {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  margin-top: 68px;
}

.slider { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 9s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.55) 0%,
    rgba(20,20,20,0.35) 60%,
    rgba(20,20,20,0.55) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  z-index: 2;
}

.slide-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  animation: fadeUp 0.8s ease both;
}

.slide-desc {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active, .dot:hover {
  background: var(--orange);
  transform: scale(1.3);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slider-arrow.left  { left: 20px; }
.slider-arrow.right { right: 20px; }

/* =========================================
   QUEM SOMOS
   ========================================= */
.quem-somos { background: var(--gray-light); }

/* Cabeçalho */
.qs-header { text-align: center; margin-bottom: 44px; }

.qs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid rgba(237,125,49,0.25);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.qs-header .section-intro { margin-bottom: 0; }

/* Métricas */
.qs-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: 14px;
  padding: 28px 40px;
  margin-bottom: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.qs-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.qs-metric-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.qs-metric-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.qs-metric-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Cards de diferenciais */
.qs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.qs-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.qs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  border-color: rgba(237,125,49,0.3);
}

.qs-card-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.qs-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.45;
}

.qs-card-body p {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.65;
}

/* Destaques da Operação */
.qs-highlights {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.qs-highlights-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border);
}

.qs-highlights-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.qs-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.qs-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 10px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.qs-highlight-item:hover {
  border-color: rgba(237,125,49,0.3);
  background: rgba(237,125,49,0.04);
}

.qs-hi-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
}

.qs-highlight-item p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}



/* =========================================
   CONTATO
   ========================================= */
.contact { padding: 0 !important; }

/* =========================================
   PORTFÓLIO
   ========================================= */
.portfolio { background: var(--white); }

/* Cabeçalho da seção */
.portfolio-header {
  text-align: center;
  margin-bottom: 52px;
}

.portfolio-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid rgba(237,125,49,0.25);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.portfolio-header .section-title {
  margin-bottom: 16px;
}
.portfolio-header .section-title::after { margin-top: 10px; }

.portfolio-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Cabeçalho do mapa */
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 16px 22px;
  gap: 16px;
}

.map-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.map-header-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.map-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.map-subtitle {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}

.map-header-badge {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(237,125,49,0.35);
}

.map-wrapper {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px;
  margin-bottom: 52px;
}
.map-img { width: 100%; max-height: 480px; object-fit: contain; margin: 0 auto; }

/* Dashboard Portfólio */
.pf-dashboard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 52px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

.pf-dash-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pf-dash-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.pf-dash-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.pf-dash-total-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.pf-dash-total-label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* Barra segmentada */
.pf-dash-bar {
  display: flex;
  height: 12px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}

.pf-dash-seg {
  height: 100%;
}

.pf-seg-orange { background: var(--orange); }
.pf-seg-gray   { background: var(--gray-mid); }

/* Linhas de legenda */
.pf-dash-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.pf-dash-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  transition: var(--transition);
}
.pf-dash-stat:hover { background: var(--gray-light); }

.pf-ds-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pf-ds-blue   { background: var(--blue); }
.pf-ds-orange { background: var(--orange); }
.pf-ds-gray   { background: var(--gray-mid); }
.pf-ds-dark   { background: var(--dark); }

.pf-ds-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.pf-ds-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pf-ds-label {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}

.pf-ds-pct {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray);
  background: var(--gray-light);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pf-dash-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}



.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.achievement-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
}
.achievement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.ach-icon { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.ach-info { display: flex; flex-direction: column; gap: 4px; }
.ach-value { font-size: 1.1rem; font-weight: 700; color: var(--orange); }
.ach-label { font-size: 0.82rem; color: var(--gray); }

/* =========================================
   INVESTIDORES
   ========================================= */
.investidores { background: var(--gray-light); }

.investidores .section-title       { color: var(--dark); }
.investidores .section-title::after{ background: var(--orange); }

.section-intro-inv {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 40px;
}

.docs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  gap: 16px;
}
.doc-item:last-child { border-bottom: none; }
.doc-item:hover      { background: var(--orange-light); }

.doc-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.doc-icon  { font-size: 1.3rem; flex-shrink: 0; }
.doc-name  { color: var(--dark); font-size: 0.93rem; font-weight: 500; line-height: 1.4; }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-download:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(237,125,49,0.35);
}

/* =========================================
   FALE CONOSCO – novo layout (sem foto)
   ========================================= */
.contact { padding: 0; }

/* Painel único full-width */
.contact-panel {
  position: relative;
  background: linear-gradient(145deg, #c96520 0%, #a84e10 40%, #1a1a1a 100%);
  padding: 80px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 380px;
}

.contact-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contact-panel-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-panel-left {
  flex: 1;
  min-width: 0;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.contact-panel-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.contact-panel-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 18px 20px;
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,0.17);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  transition: var(--transition);
}
a.contact-card-value:hover { color: rgba(255,255,255,0.75); }

/* Painel direito */
.contact-form-wrap {
  background: var(--white);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Painel direito: CTA */
.contact-cta-wrap {
  background: var(--white);
  padding: 64px 52px;
  display: flex;
  align-items: center;
}

.contact-cta-content { width: 100%; }

.contact-cta-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.contact-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-cta-desc {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

.btn-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  transition: var(--transition);
  margin-bottom: 20px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(237,125,49,0.28);
}
.btn-contact-email:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(237,125,49,0.38);
}

.contact-cta-address {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 44px;
}
.contact-cta-address svg { color: var(--orange); flex-shrink: 0; }

.contact-cta-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
  background: var(--gray-light);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.cta-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--orange);
}

.cta-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.cta-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.btn-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 13px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
  margin-top: 6px;
}
.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(237,125,49,0.35);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.04);
  padding: 16px 24px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links { display: flex; gap: 20px; }

.footer-link {
  background: none;
  border: none;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.footer-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: var(--transition);
}
.footer-link:hover { color: var(--orange); }
.footer-link:hover::after { width: 100%; }

.footer-copy { color: #aaa; font-size: 0.75rem; }

/* =========================================
   MODALS
   ========================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  max-width: 620px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(18px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--orange);
}
.modal-header h2 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.modal-header .close-btn { color: rgba(255,255,255,0.8); }
.modal-header .close-btn:hover { color: var(--white); background: rgba(255,255,255,0.15); }

.modal-body { padding: 22px; overflow-y: auto; flex: 1; }
.modal-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin: 18px 0 6px; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p  { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE — 900px (tablet)
   ========================================= */
@media (max-width: 900px) {

  /* Nav */
  .desktop-nav { display: none; }
  .hamburger   { display: flex; }

  /* Hero */
  .hero-stats  { flex-wrap: wrap; gap: 24px; }

  /* Quem Somos */
  .qs-cards           { grid-template-columns: 1fr; }
  .qs-highlights-grid { grid-template-columns: 1fr; }
  .qs-metrics         { flex-wrap: wrap; gap: 20px; padding: 24px 20px; }
  .qs-metric-divider  { display: none; }
  .qs-highlights      { padding: 24px 20px; }

  /* Portfólio */
  .portfolio-header .section-title { font-size: clamp(1.5rem, 4vw, 2rem); }
  .map-header        { flex-wrap: wrap; gap: 12px; padding: 14px 16px; }
  .pf-dashboard      { padding: 24px 20px; }
  .pf-dash-stats     { flex-direction: column; gap: 0; }
  .pf-dash-divider   { width: 100%; height: 1px; }
  .pf-dash-stat      { padding: 12px 8px; }

  /* Fale Conosco */
  .contact-panel         { padding: 52px 32px; }
  .contact-panel-content { flex-direction: column; gap: 32px; }
  .contact-cards         { gap: 12px; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* =========================================
   RESPONSIVE — 600px (mobile)
   ========================================= */
@media (max-width: 600px) {

  /* Global */
  .section       { padding: 44px 0; }
  .container     { padding: 0 16px; }

  /* Header */
  .logo-text     { font-size: 1.1rem; }
  .header-inner  { padding: 0 16px; }

  /* Hero — ajuste de margem e altura no mobile */
  .hero          { margin-top: 60px; min-height: calc(100svh - 60px); height: calc(100svh - 60px); }
  .hero-title    { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-stats    { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { display: none; }

  /* Slider */
  .slider-arrow  { display: none; }
  .slide-content { padding: 32px 20px; }
  .slide-title   { font-size: clamp(1.2rem, 5vw, 1.6rem); }

  /* Quem Somos */
  .qs-header     { margin-bottom: 28px; }
  .qs-metrics    { padding: 20px 16px; gap: 16px; }
  .qs-metric-val { font-size: 1.3rem; }
  .qs-card       { padding: 18px 16px; }
  .qs-highlights { padding: 20px 16px; }
  .qs-hi-num     { font-size: 1rem; }

  /* Portfólio */
  .portfolio-header  { margin-bottom: 32px; }
  .portfolio-eyebrow { font-size: 0.68rem; }
  .portfolio-subtitle{ font-size: 0.88rem; }
  .map-header        { padding: 12px 14px; }
  .map-header-badge  { font-size: 0.65rem; padding: 4px 10px; }
  .map-wrapper       { padding: 14px; }
  .pf-dashboard      { padding: 20px 16px; }
  .pf-dash-total-val { font-size: 1.2rem; }
  .pf-ds-val         { font-size: 0.95rem; }

  /* Portfolio achievements */
  .achievements-grid { grid-template-columns: 1fr; }

  /* Investidores */
  .doc-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .btn-download { width: 100%; justify-content: center; }

  /* Fale Conosco */
  .contact-panel         { padding: 44px 20px; min-height: unset; }
  .contact-panel-content { gap: 24px; }
  .contact-panel-title   { font-size: clamp(1.5rem, 6vw, 2rem); }
  .contact-card          { padding: 14px 16px; }

  /* Footer */
  .footer { padding: 16px; }
  .footer-inner  { padding: 0; }
  .footer-bottom { padding: 0; flex-direction: column; gap: 8px; justify-content: center; text-align: center; }
  .footer-links  { flex-direction: column; gap: 6px; align-items: center; margin-bottom: 4px; }
}
