/* ════════════════════════════════════════════════════════════
   GRUPO PRÁTICO — styles.css
   Versão: 1.0 | Design System Premium
════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────
   1. RESET & BOX MODEL
────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ──────────────────────────────────────────────────────────
   2. VARIÁVEIS — DESIGN TOKENS
────────────────────────────────────────────────────────── */
:root {
  --blue-950:  #0D2247;
  --blue-900:  #1B3F7A;
  --blue-800:  #1E4D94;
  --blue-700:  #2260B0;
  --blue-600:  #2A7DB5;
  --blue-500:  #3B8FCC;
  --blue-400:  #5BA3D9;
  --blue-100:  #DCEEFA;
  --blue-50:   #F0F7FD;
  --teal-700:  #1A8A8A;
  --teal-500:  #2AADAD;
  --teal-100:  #D4F4F4;
  --green-600: #16A34A;
  --green-500: #22C55E;
  --green-100: #DCFCE7;
  --gray-950:  #0A0F1A;
  --gray-900:  #111827;
  --gray-800:  #1F2937;
  --gray-700:  #374151;
  --gray-600:  #4B5563;
  --gray-500:  #6B7280;
  --gray-400:  #9CA3AF;
  --gray-300:  #D1D5DB;
  --gray-200:  #E5E7EB;
  --gray-100:  #F3F4F6;
  --gray-50:   #F9FAFB;
  --white:     #FFFFFF;
  --bg:             var(--white);
  --bg-subtle:      var(--gray-50);
  --bg-muted:       var(--gray-100);
  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted:     var(--gray-400);
  --border:         var(--gray-200);
  --border-strong:  var(--gray-300);
  --brand-primary:   var(--blue-900);
  --brand-secondary: var(--blue-600);
  --brand-accent:    var(--green-600);
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;
  --radius-sm:   0.375rem;
  --radius-md:   0.625rem;
  --radius-lg:   1rem;
  --radius-xl:   1.25rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-brand: 0 8px 32px rgba(27,63,122,0.20);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --container-max: 1200px;
  --container-pad: var(--space-6);
  --nav-h: 72px;
  --section-py: var(--space-24);
}

/* ──────────────────────────────────────────────────────────
   3. UTILITÁRIOS BASE
────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding-block: var(--section-py); }

/* ──────────────────────────────────────────────────────────
   4. TIPOGRAFIA GLOBAL
────────────────────────────────────────────────────────── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}
.sec-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  max-width: 700px;
}
.sec-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--space-12);
}
.s-rota .sec-label, .s-rota .sec-title, .s-rota .sec-sub,
.s-como .sec-label, .s-como .sec-title, .s-como .sec-sub,
.s-dif .sec-label,  .s-dif .sec-title,  .s-dif .sec-sub,
.s-parc .sec-label, .s-parc .sec-title, .s-parc .sec-sub,
.s-dep .sec-label,  .s-dep .sec-title,  .s-dep .sec-sub,
.s-sol .sec-label,  .s-sol .sec-title,  .s-sol .sec-sub,
.s-faq .sec-label,  .s-faq .sec-title,  .s-faq .sec-sub,
.s-cta .sec-label,  .s-cta .sec-title,  .s-cta .sec-sub {
  text-align: center;
  margin-inline: auto;
}

/* ──────────────────────────────────────────────────────────
   5. BOTÕES
────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--duration-base) var(--ease);
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--duration-fast);
}
.btn:hover::after  { background: rgba(255,255,255,0.08); }
.btn:active::after { background: rgba(255,255,255,0.15); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-600) 100%);
  color: var(--white);
  box-shadow: var(--shadow-brand);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27,63,122,0.30);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--blue-900);
  border: 2px solid var(--blue-900);
  padding: calc(var(--space-3) - 2px) calc(var(--space-6) - 2px);
  font-size: var(--text-sm);
}
.btn-outline:hover { background: var(--blue-50); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.20); transform: translateY(-2px); }

.btn-sm  { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); border-radius: var(--radius-md); }
.btn-lg  { padding: var(--space-4) var(--space-8); font-size: var(--text-base); border-radius: var(--radius-xl); }

/* ──────────────────────────────────────────────────────────
   6. LOADING SCREEN
────────────────────────────────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}
.loading-logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: loadingPulse 1.5s ease-in-out infinite;
}
.loading-logo-wrap span {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.03em;
}
.loading-bar-wrap {
  width: 200px;
  height: 3px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-900), var(--blue-600));
  border-radius: var(--radius-full);
  animation: loadingBar 1.8s var(--ease) forwards;
}
@keyframes loadingPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
@keyframes loadingBar {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ──────────────────────────────────────────────────────────
   7. HEADER / NAV
────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--duration-base) var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: var(--space-8);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  transition: opacity var(--duration-fast);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-texts { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-left: auto;
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: var(--space-3);
  right: var(--space-3);
  height: 2px;
  background: var(--blue-600);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--duration-base) var(--ease);
}
.nav-link:hover        { color: var(--blue-900); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active       { color: var(--blue-900); }
.nav-link.active::after{ transform: scaleX(1); }
.nav-cta { margin-left: var(--space-4); flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--blue-900);
  border-radius: 1px;
  transition: all var(--duration-base) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: var(--space-6);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  opacity: 0;
  transition: all var(--duration-slow) var(--ease);
  z-index: 999;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu ul { display: flex; flex-direction: column; gap: var(--space-2); }
.mob-link {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
}
.mob-link:hover { color: var(--blue-900); background: var(--blue-50); }
.mob-cta { display: flex; justify-content: center; margin-top: var(--space-4); }

/* ──────────────────────────────────────────────────────────
   8. REVEAL ANIMATIONS
────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

.glass {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
}

/* ──────────────────────────────────────────────────────────
   9. HERO
────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #f0f7fd 0%, #ffffff 50%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,125,181,0.4) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,63,122,0.3) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,138,138,0.2) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation: orbFloat 12s ease-in-out infinite 2s;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,63,122,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,63,122,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: var(--space-20);
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--blue-700);
  background: rgba(27,63,122,0.07);
  border: 1px solid rgba(27,63,122,0.12);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero-title {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--gray-900);
  margin-bottom: var(--space-6);
}
.hero-highlight {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 500px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-10); }
.hero-stats { display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.hero-stat  { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-sep { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hcard {
  width: 100%; max-width: 380px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.6);
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hcard-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-5) var(--space-4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hcard-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  border-radius: var(--radius-md);
  color: var(--white);
  flex-shrink: 0;
}
.hcard-title { font-size: var(--text-sm); font-weight: 700; color: var(--gray-900); }
.hcard-sub   { font-size: var(--text-xs); color: var(--text-muted); }
.badge-green {
  margin-left: auto;
  font-size: 11px; font-weight: 600;
  color: var(--green-600); background: var(--green-100);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.hcard-body { padding: var(--space-4) var(--space-5); }
.hcard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--gray-100);
}
.hcard-row:last-child { border-bottom: none; }
.hcard-lbl { font-size: var(--text-sm); color: var(--text-secondary); }
.hcard-val {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.green { color: var(--green-600); background: var(--green-100); }
.blue  { color: var(--blue-600);  background: var(--blue-50); }
.hcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  background: var(--gray-50);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
}
.avatars { display: flex; }
.av {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
  margin-left: -6px;
}
.av:first-child { margin-left: 0; }
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.fc1 { top: 10%; right: -60px; animation: floatCard1 5s ease-in-out infinite; }
.fc2 { bottom: 15%; left: -60px; animation: floatCard2 7s ease-in-out infinite 1s; }
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-8px) rotate(2deg); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-8px) rotate(-2deg); }
}
.fc-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.fc-blue  { background: var(--blue-50);   color: var(--blue-700); }
.fc-green { background: var(--green-100); color: var(--green-600); }
.fc-title { font-size: var(--text-xs); font-weight: 700; color: var(--gray-900); }
.fc-sub   { font-size: 11px; color: var(--text-muted); }
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-arrow { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ──────────────────────────────────────────────────────────
   10. TERCEIRA ROTA
────────────────────────────────────────────────────────── */
.s-rota { background: var(--white); overflow: hidden; }
.rota-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-6);
  align-items: start;
  margin-top: var(--space-4);
}
.rota-side {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--duration-base);
}
.rota-side:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.rota-side-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--gray-400);
  margin-bottom: var(--space-5);
}
.rota-side h3 { font-size: var(--text-xl); font-weight: 700; color: var(--gray-700); margin-bottom: var(--space-5); }
.rota-list { display: flex; flex-direction: column; gap: var(--space-3); }
.rota-list li {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--gray-500); line-height: 1.5;
}
.rdot { width: 6px; height: 6px; background: var(--gray-300); border-radius: 50%; flex-shrink: 0; }
.rota-center {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-600) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-4);
  box-shadow: var(--shadow-brand);
  position: relative; z-index: 1;
  min-width: 280px;
}
.rota-orb {
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -50px; right: -50px;
  pointer-events: none;
}
.rota-center-badge {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.2);
}
.rota-center-title { font-size: var(--text-xl); font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.rota-center-label {
  font-size: var(--text-xs); font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: calc(-1 * var(--space-2));
}
.rota-center-list { display: flex; flex-direction: column; gap: var(--space-3); width: 100%; text-align: left; }
.rota-center-list li {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); font-weight: 500; color: rgba(255,255,255,0.9);
}
.rota-center-list svg { color: #86EFAC; flex-shrink: 0; }
.rota-center .btn-primary {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  margin-top: var(--space-2);
}
.rota-center .btn-primary:hover { background: rgba(255,255,255,0.25); }
.rota-footer-note {
  display: flex; align-items: flex-start; gap: var(--space-3);
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-6);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm); color: var(--blue-700); line-height: 1.6;
}
.rota-footer-note svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-600); }

/* ──────────────────────────────────────────────────────────
   11. ECOSSISTEMA
────────────────────────────────────────────────────────── */
.s-eco { background: var(--gray-50); }
.eco-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-6);
  align-items: center;
}
.eco-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--duration-base) var(--ease);
  display: flex; flex-direction: column; gap: var(--space-5);
}
.eco-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.eco-card:focus { outline: 2px solid var(--blue-600); outline-offset: 2px; }
.eco-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  padding: var(--space-2); /* Adiciona um padding interno para a logo não colar nas bordas */
  background: var(--white);
  border: 1px solid var(--border);
  width: 160px; /* Define a largura da caixa */
  height: 72px; /* Define a altura da caixa */
}

.eco-logo-box img {
  width: 90px;
  height: 90px;
  object-fit: contain; /* Garante que a imagem se ajuste dentro da caixa sem cortar ou distorcer */
  display: block;
}
}
.eco-blue { background: linear-gradient(135deg, var(--blue-900), var(--blue-600)); }
.eco-teal { background: linear-gradient(135deg, var(--blue-900), var(--teal-700)); }
.eco-brand-name { font-size: var(--text-lg); font-weight: 800; color: var(--blue-900); letter-spacing: -0.02em; }
.eco-brand-type { font-size: var(--text-xs); color: var(--text-muted); font-weight: 500; }
.eco-desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; }
.eco-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.etag {
  font-size: 11px; font-weight: 600;
  color: var(--blue-700); background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 10px; border-radius: var(--radius-full);
}
.eco-link {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-size: var(--text-xs); font-weight: 600; color: var(--blue-600);
  transition: gap var(--duration-fast); margin-top: auto;
}
.eco-link:hover { gap: var(--space-2); }
.eco-connector { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); padding: var(--space-6); }
.eco-conn-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  border-radius: 50%; color: var(--white);
  box-shadow: var(--shadow-brand);
  animation: connPulse 3s ease-in-out infinite;
}
@keyframes connPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27,63,122,0.3), var(--shadow-brand); }
  50%       { box-shadow: 0 0 0 12px rgba(27,63,122,0), var(--shadow-brand); }
}
.eco-connector span {
  font-size: 11px; font-weight: 700; text-align: center;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.06em; line-height: 1.4;
}
.eco-insight {
  display: flex; align-items: flex-start; gap: var(--space-3);
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, var(--blue-50), rgba(26,138,138,0.04));
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm); color: var(--gray-700); line-height: 1.7;
}
.eco-insight svg    { flex-shrink: 0; margin-top: 2px; color: var(--blue-600); }
.eco-insight strong { color: var(--blue-900); }

/* ──────────────────────────────────────────────────────────
   12. COMO TRABALHAMOS
────────────────────────────────────────────────────────── */
.s-como { background: var(--white); }
.steps-wrap { display: flex; align-items: flex-start; gap: 0; margin-top: var(--space-4); }
.step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: var(--space-4);
  padding: var(--space-6) var(--space-4);
  border-radius: var(--radius-xl);
  transition: all var(--duration-base);
  position: relative;
}
.step:hover { background: var(--gray-50); transform: translateY(-4px); }
.step-num {
  font-size: var(--text-xs); font-weight: 800;
  color: var(--blue-100); letter-spacing: 0.05em;
  position: absolute; top: var(--space-4); right: var(--space-4);
}
.step-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: 50%; color: var(--blue-700);
  transition: all var(--duration-base); flex-shrink: 0;
}
.step:hover .step-icon {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: var(--white); box-shadow: var(--shadow-brand);
}
.step-title { font-size: var(--text-base); font-weight: 700; color: var(--gray-900); }
.step-desc  { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }
.step-line {
  height: 1px; flex: 0 0 var(--space-8);
  background: linear-gradient(90deg, var(--border), var(--blue-100), var(--border));
  margin-top: 50px; flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   13. SOLUÇÕES / TABS
────────────────────────────────────────────────────────── */
.s-sol { background: var(--gray-50); }
.tabs {
  display: flex; gap: var(--space-2);
  background: var(--white); border: 1px solid var(--border);
  padding: var(--space-1); border-radius: var(--radius-lg);
  width: fit-content; margin-inline: auto; margin-bottom: var(--space-10);
}
.tab-btn {
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-sm); font-weight: 600; color: var(--text-muted);
  transition: all var(--duration-base);
}
.tab-btn:hover { color: var(--gray-700); }
.tab-btn.tab-active {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: var(--white); box-shadow: var(--shadow-brand);
}
.tab-panel        { display: none; }
.tab-panel.active { display: block; }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.sol-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: all var(--duration-base) var(--ease);
}
.sol-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(27,63,122,0.15); }
.sol-card:focus { outline: 2px solid var(--blue-600); outline-offset: 2px; }
.sol-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c, #1B3F7A) 10%, white);
  border-radius: var(--radius-lg); color: var(--c, #1B3F7A);
  transition: all var(--duration-base);
}
.sol-card:hover .sol-icon { background: var(--c, #1B3F7A); color: white; }
.sol-card h3 { font-size: var(--text-base); font-weight: 700; color: var(--gray-900); }
.sol-card p  { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; flex: 1; }
.sol-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--blue-700); background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 10px; border-radius: var(--radius-full);
  align-self: flex-start; margin-top: auto;
}

/* ──────────────────────────────────────────────────────────
   14. DIFERENCIAIS
────────────────────────────────────────────────────────── */
.s-dif { background: var(--white); }
.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.dif-card {
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl); border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--duration-base) var(--ease);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.dif-card:hover {
  background: linear-gradient(160deg, var(--blue-50) 0%, var(--white) 100%);
  border-color: var(--blue-100); transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.dif-card:focus { outline: 2px solid var(--blue-600); outline-offset: 2px; }
.dif-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); border-radius: var(--radius-lg);
  color: var(--blue-700); transition: all var(--duration-base);
}
.dif-card:hover .dif-icon {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: var(--white); box-shadow: var(--shadow-brand);
}
.dif-card h3 { font-size: var(--text-base); font-weight: 700; color: var(--gray-900); }
.dif-card p  { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; }

/* ──────────────────────────────────────────────────────────
   15. PARCEIROS
────────────────────────────────────────────────────────── */
.s-parc { background: var(--gray-50); overflow: hidden; }
.parc-cats { display: flex; flex-direction: column; gap: var(--space-8); }
.parc-cat-label {
  font-size: var(--text-xs); font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: var(--space-4);
}
.parc-logos { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.parc-logo-item {
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--space-3) var(--space-5);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm); font-weight: 600; color: var(--gray-600);
  transition: all var(--duration-base); white-space: nowrap;
}
.parc-logo-item:hover {
  border-color: #BFDBFE; color: var(--blue-700);
  background: var(--blue-50); transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.parc-total {
  margin-top: var(--space-10);
  padding: var(--space-6) var(--space-8);
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-600) 100%);
  border-radius: var(--radius-2xl);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-4);
}
.parc-total-text { font-size: var(--text-xl); font-weight: 700; color: var(--white); }
.parc-total-sub  { font-size: var(--text-sm); color: rgba(255,255,255,0.65); margin-top: var(--space-1); }

/* ──────────────────────────────────────────────────────────
   16. DEPOIMENTOS
────────────────────────────────────────────────────────── */
.s-dep { background: var(--white); }
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.dep-card {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--radius-2xl); padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-5);
  transition: all var(--duration-base);
}
.dep-card:hover { background: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.dep-stars { display: flex; gap: var(--space-1); color: #FBBF24; }
.dep-text {
  font-size: var(--text-base); color: var(--gray-700);
  line-height: 1.7; font-style: italic; flex: 1;
}
.dep-text::before { content: '"'; }
.dep-text::after  { content: '"'; }
.dep-author {
  display: flex; align-items: center; gap: var(--space-3);
  border-top: 1px solid var(--border); padding-top: var(--space-5);
}
.dep-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm); font-weight: 700; color: var(--white);
}
.dep-name { font-size: var(--text-sm); font-weight: 700; color: var(--gray-900); }
.dep-role { font-size: var(--text-xs); color: var(--text-muted); }

/* ──────────────────────────────────────────────────────────
   17. FAQ
────────────────────────────────────────────────────────── */
.s-faq { background: var(--gray-50); }
.faq-wrap {
  max-width: 720px; margin-inline: auto;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: border-color var(--duration-base), box-shadow var(--duration-base);
}
.faq-item.open { border-color: #BFDBFE; box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base); font-weight: 600; color: var(--gray-900);
  text-align: left; transition: color var(--duration-fast);
}
.faq-item.open .faq-question { color: var(--blue-900); }
.faq-chevron {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100); border-radius: 50%;
  color: var(--gray-500); flex-shrink: 0;
  transition: all var(--duration-base);
}
.faq-item.open .faq-chevron {
  background: var(--blue-100); color: var(--blue-700); transform: rotate(180deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────
   18. CTA FINAL
────────────────────────────────────────────────────────── */
.s-cta {
  background: linear-gradient(160deg, var(--blue-950) 0%, var(--blue-900) 50%, var(--blue-800) 100%);
  position: relative; overflow: hidden;
  padding-block: var(--space-32);
}
.s-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-orb1 {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,125,181,0.3) 0%, transparent 60%);
  top: -200px; right: -100px; pointer-events: none;
}
.cta-orb2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,138,138,0.2) 0%, transparent 60%);
  bottom: -100px; left: -100px; pointer-events: none;
}
.s-cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 680px; margin-inline: auto;
}
.s-cta .sec-label {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.s-cta .sec-title { color: var(--white); font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); }
.s-cta .sec-sub   { color: rgba(255,255,255,0.7); }
.cta-btns {
  display: flex; gap: var(--space-4);
  justify-content: center; flex-wrap: wrap;
  margin-top: var(--space-8);
}
.cta-trust {
  margin-top: var(--space-8);
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-6); flex-wrap: wrap;
}
.cta-trust-item {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); color: rgba(255,255,255,0.6); font-weight: 500;
}
.cta-trust-item svg { color: #86EFAC; flex-shrink: 0; }

/* ──────────────────────────────────────────────────────────
   19. RODAPÉ
────────────────────────────────────────────────────────── */
.footer { background: var(--gray-950); color: rgba(255,255,255,0.6); padding-top: var(--space-16); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name { font-size: var(--text-lg); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: var(--space-2); }
.footer-brand-desc { font-size: var(--text-sm); line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: var(--space-6); max-width: 280px; }
.footer-social { display: flex; gap: var(--space-3); }
.footer-social-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); color: rgba(255,255,255,0.6);
  transition: all var(--duration-base);
}
.footer-social-link:hover {
  background: var(--blue-700);
  border-color: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col-title { font-size: var(--text-sm); font-weight: 700; color: var(--white); margin-bottom: var(--space-5); letter-spacing: 0.02em; }
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-link { font-size: var(--text-sm); color: rgba(255,255,255,0.5); transition: color var(--duration-fast); line-height: 1.4; }
.footer-link:hover { color: var(--white); }
.footer-bottom { padding-block: var(--space-6); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); }
.footer-copy { font-size: var(--text-xs); color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: var(--space-6); }
.footer-legal a { font-size: var(--text-xs); color: rgba(255,255,255,0.35); transition: color var(--duration-fast); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ──────────────────────────────────────────────────────────
   20. NAV LINK ATIVO
────────────────────────────────────────────────────────── */
.nav-link.active { color: var(--blue-900); }
.nav-link.active::after { transform: scaleX(1); }

/* ──────────────────────────────────────────────────────────
   21. RESPONSIVIDADE — TABLET 1024px
────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-py: var(--space-20);
    --container-pad: var(--space-5);
  }
  .hero-container { grid-template-columns: 1fr; gap: var(--space-12); text-align: center; justify-items: center; }
  .hero-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; max-width: 420px; }
  .fc1 { right: -20px; }
  .fc2 { left: -20px; }
  .rota-wrap { grid-template-columns: 1fr; gap: var(--space-4); }
  .rota-center { order: -1; min-width: auto; }
  .eco-grid { grid-template-columns: 1fr; }
  .eco-connector { flex-direction: row; padding: var(--space-4); justify-content: center; }
  .steps-wrap { flex-wrap: wrap; gap: var(--space-4); justify-content: center; }
  .step { flex: 0 0 calc(50% - var(--space-4)); min-width: 180px; }
  .step-line { display: none; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

/* ──────────────────────────────────────────────────────────
   22. RESPONSIVIDADE — MOBILE 768px
────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-py: var(--space-16);
    --nav-h: 64px;
  }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(var(--text-3xl), 8vw, var(--text-4xl)); }
  .fc1, .fc2 { display: none; }
  .rota-side { padding: var(--space-6); }
  .rota-center { padding: var(--space-6) var(--space-5); }
  .step { flex: 0 0 100%; }
  .sol-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .tabs { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .faq-question { padding: var(--space-4) var(--space-5); font-size: var(--text-sm); }
  .faq-answer p { padding: 0 var(--space-5) var(--space-4); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-trust { flex-direction: column; gap: var(--space-3); }
  .parc-total { flex-direction: column; text-align: center; }
}

/* ──────────────────────────────────────────────────────────
   23. RESPONSIVIDADE — MOBILE PEQUENO 480px
────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --container-pad: var(--space-4); }
  .hero-stats { gap: var(--space-4); }
  .stat-sep { height: 24px; }
  .tabs { gap: var(--space-1); }
  .tab-btn { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }
  .hcard { max-width: 100%; }
  .eco-card { padding: var(--space-6); }
  .sec-title { font-size: clamp(var(--text-2xl), 7vw, var(--text-3xl)); }
}

/* ──────────────────────────────────────────────────────────
   24. PRINT
────────────────────────────────────────────────────────── */
@media print {
  .header, .loading-screen, .hero-bg,
  .hero-scroll-hint, .hamburger, .mobile-menu { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #1B3F7A; }
  .hero { min-height: auto; padding-top: 0; }
}
/* ──────────────────────────────────────────────────────────
   LOGOS REAIS
────────────────────────────────────────────────────────── */
.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

.eco-logo-box.eco-white {
  background: var(--white);
  border: 1px solid var(--border);
  width: 160px;
  height: 72px;
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eco-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* ──────────────────────────────────────────────────────────
   WHATSAPP FLUTUANTE
────────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 20px; /* Distância do fundo da página */
  right: 20px;  /* Distância da direita da página */
  width: 60px;  /* Largura do botão */
  height: 60px; /* Altura do botão */
  background-color: #25D366; /* Cor verde do WhatsApp */
  color: white;
  border-radius: 50%; /* Deixa o botão redondo */
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Sombra para destacar */
  z-index: 1000; /* Garante que fique acima de outros elementos */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease; /* Transição suave para efeitos de hover */
}

.whatsapp-float:hover {
  background-color: #1DA851; /* Cor um pouco mais escura no hover */
  transform: scale(1.05); /* Pequeno aumento de tamanho no hover */
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}