/* ================================================================
   HSC GLOBAL FDA - CINEMATIC PREMIUM REDESIGN v2.1
   Award-winning design with glassmorphism, animated gradients,
   3D effects, and premium typography
   ================================================================ */

/* ======================= CUSTOM PROPERTIES ======================= */
:root {
  /* Core palette - SIMPLIFIED PREMIUM (3 cores principais) */
  --primary: #001371; /* Navy - cor principal da marca */
  --accent: #4a6cf7; /* Electric - accent para CTAs */
  --white: #ffffff;
  --off-white: #f0f2ff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic tokens - Light mode (usando paleta simplificada) */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fc;
  --bg-tertiary: #f0f1f5;
  --bg-hero: linear-gradient(160deg, var(--primary) 0%, #050d3d 30%, #0a0e2a 60%, #030842 100%);
  --bg-section-alt: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  --text-primary: #0E1A3A;
  --text-secondary: #374151;
  --text-muted: #4B5563;
  --text-on-dark: #ffffff;
  --accent-primary: var(--primary);
  --accent-secondary: var(--accent);
  --accent-light: #E5E7F1;
  --accent-glow: rgba(74, 108, 247, 0.3);
  --border-color: rgba(0, 0, 0, 0.06);
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-bg-solid: #ffffff;
  --card-border: rgba(0, 0, 0, 0.06);
  --card-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 20px;
  --overlay-bg: rgba(0, 0, 0, 0.65);
  --tag-bg: rgba(74, 108, 247, 0.08);
  --tag-text: var(--primary);
  --tag-border: rgba(74, 108, 247, 0.15);
  --success: #10b981;
  --whatsapp: #25d366;

  /* Typography */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 2rem;
  --font-4xl: 2.75rem;
  --font-5xl: 3.5rem;
  --font-6xl: 4.5rem;
  --leading-tight: 1.15;
  --leading-normal: 1.6;

  /* Spacing - PREMIUM WHITE SPACE (+60%) */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 10rem;    /* Era 6.25rem - Agora 160px (padrão Figma/Linear) */
  --space-6xl: 12rem;    /* NOVO - 192px para hero sections */

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions - PREMIUM REFINEMENT (padrão Figma) */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* Figma-style easing */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Bounce suave, não exagerado */
  --transition-fast: 0.2s var(--ease-out);    /* 200ms - microinterações */
  --transition-medium: 0.4s var(--ease-out);  /* 400ms - elementos médios */
  --transition-slow: 0.5s var(--ease-out);    /* Era 0.7s - Agora 500ms MAX (padrão premium) */
}


/* ======================= CUSTOM FONT ======================= */
@font-face {
  font-family: "Blauer";
  src: url("assets/BlauerNue-Regular.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Blauer", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: var(--leading-normal);
  overflow-x: hidden;
  transition: background 0.5s var(--ease-out), color 0.5s var(--ease-out);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

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

/* ======================= ANIMATED GRADIENT BORDER UTILITY ======================= */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes gradient-spin {
  to { --gradient-angle: 360deg; }
}

/* ---- GSAP FALLBACK ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Aplicar animações para elementos com .animate-in quando GSAP não carregar */
.animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-in.visible {
  opacity: 1;
}

[data-animate].animate-in,
.fade-item.animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* ======================= PRELOADER ======================= */
/* ---- CINEMATIC PRELOADER (curtain reveal) ---- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: all;
}

.preloader-curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--primary);
  z-index: 2;
  will-change: transform;
}

.preloader-curtain-left { left: 0; }
.preloader-curtain-right { right: 0; }

.preloader-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader-logo-wrap {
  overflow: hidden;
}

.preloader-logo-img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translateY(20px);
}

.preloader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}


#preloader.done {
  pointer-events: none;
}

#preloader.done .preloader-center {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ======================= CUSTOM CURSOR ======================= */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-spring), height 0.4s var(--ease-spring),
              border-color 0.3s, opacity 0.3s;
  opacity: 0.5;
}

.cursor-dot.hover {
  transform: translate(-50%, -50%) scale(2.5);
  background: var(--accent);
}

.cursor-outline.hover {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
  opacity: 0.2;
}

/* ======================= HEADER / MENU ======================= */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
}

.menu.scrolled {
  padding: 10px 0;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Backdrop filter com fallback para navegadores que não suportam */
@supports (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px)) {
  .menu.scrolled {
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
  }
}

/* Fallback para navegadores sem backdrop-filter */
@supports not ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
  .menu.scrolled {
    background: rgba(255, 255, 255, 0.95);
  }
}

.container-menu {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-logo svg,
.menu-logo img {
  height: 24px;
  width: auto;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.menu-logo-mdsap {
  height: 28px !important;
  width: auto;
}

/* Logo on dark hero: HSC + globe = white, GLOBAL + separator = light gray, stripe = gray */
.menu:not(.scrolled) .logo-text-hsc,
.menu:not(.scrolled) .logo-icon-main { fill: #ffffff; }
.menu:not(.scrolled) .logo-text-global,
.menu:not(.scrolled) .logo-separator { fill: rgba(255,255,255,0.7); }
.menu:not(.scrolled) .logo-stripe { fill: #C0C0C0; }

/* Logo on scrolled light bg: original colors */
.menu.scrolled .logo-text-hsc,
.menu.scrolled .logo-icon-main { fill: #001371; }
.menu.scrolled .logo-text-global,
.menu.scrolled .logo-separator { fill: #818284; }
.menu.scrolled .logo-stripe { fill: #C0C0C0; }

/* Countdown in menu */
.menu-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
}

.countdown-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.75;
  white-space: nowrap;
}

.menu:not(.scrolled) .countdown-label { color: rgba(255,255,255,0.7); }
.menu.scrolled .countdown-label { color: var(--text-muted); }

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 2px;
}

.countdown-unit {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.countdown-unit span {
  font-size: 17px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.countdown-unit small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.6;
}

.countdown-sep {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.4;
  margin: 0 1px;
}

.menu:not(.scrolled) .countdown-unit span { color: #fff; }
.menu:not(.scrolled) .countdown-unit small { color: rgba(255,255,255,0.5); }
.menu:not(.scrolled) .countdown-sep { color: rgba(255,255,255,0.3); }

.menu.scrolled .countdown-unit span { color: var(--primary); }
.menu.scrolled .countdown-unit small { color: var(--text-muted); }
.menu.scrolled .countdown-sep { color: var(--gray-300); }

@media (max-width: 768px) {
  .menu-countdown { display: none; }
}

/* Menu Countdown */
.menu-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 19, 113, 0.08);
  border: 1px solid rgba(0, 19, 113, 0.12);
  border-radius: 100px;
  padding: 6px 16px;
  transition: all 0.4s ease;
}
.menu.scrolled .menu-countdown {
  background: rgba(0, 19, 113, 0.06);
  border-color: rgba(0, 19, 113, 0.1);
}
.menu:not(.scrolled) .menu-countdown {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}
.menu-countdown-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.menu:not(.scrolled) .menu-countdown-label { color: rgba(255,255,255,0.7); }
.menu.scrolled .menu-countdown-label { color: var(--text-muted, #666); }
.menu-countdown-timer {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}
.menu-countdown-num {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 1.1em;
  text-align: center;
}
.menu:not(.scrolled) .menu-countdown-num { color: #fff; }
.menu.scrolled .menu-countdown-num { color: var(--primary); }
.menu-countdown-timer small {
  font-size: 0.65rem;
  font-weight: 500;
}
.menu:not(.scrolled) .menu-countdown-timer small { color: rgba(255,255,255,0.5); }
.menu.scrolled .menu-countdown-timer small { color: var(--text-muted, #666); }
.menu-countdown-sep {
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0 1px;
}
.menu:not(.scrolled) .menu-countdown-sep { color: rgba(255,255,255,0.35); }
.menu.scrolled .menu-countdown-sep { color: rgba(0,0,0,0.2); }

.menu-bandeiras {
  display: flex;
  align-items: center;
  gap: 12px;
}


.flag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag:hover, .flag.active {
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
}
.whatsapp-fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2.5s ease-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
}
@keyframes whatsappPulse {
  0%   { opacity: .7; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.5); }
}
.whatsapp-fab-icon { display: block; }
.whatsapp-fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a2e;
  color: #fff;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  font-family: inherit;
}
.whatsapp-fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a2e;
}
.whatsapp-fab:hover .whatsapp-fab-tooltip { opacity: 1; }
@media (max-width: 768px) {
  .whatsapp-fab { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .whatsapp-fab-tooltip { display: none; }
}

/* ======================= HERO SECTION ======================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-4xl) 0; /* 96px - Hero spacing reduzido */
}

/* Animated gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(74, 108, 247, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Noise texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
}

#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  color: var(--text-on-dark);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(74, 108, 247, 0.15);
  border: 1px solid rgba(74, 108, 247, 0.25);
  font-size: var(--font-sm);
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-tag img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, var(--font-5xl));
  line-height: var(--leading-tight);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* Animated gradient text on h1 */
.hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #c8d5f9 40%, #1a4ac4 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-text-shimmer 6s ease-in-out infinite alternate;
}

@keyframes hero-text-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero p {
  font-size: var(--font-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

/* Hero Agency Tooltip */
.hero-agency {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  cursor: default;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  transition: all 0.25s var(--ease-out);
  padding-bottom: 1px;
}
.hero-agency:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}
.hero-agency-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 8px 14px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  z-index: 20;
}
.hero-agency-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.2);
}
.hero-agency:hover .hero-agency-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.hero-agency-tooltip img {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-agency-tooltip span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 20px 6px 6px;
  margin-bottom: 24px;
}
.hero-promo-badge {
  background: #1a4ac4;
  color: #fff;
  font-family: 'Blauer', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.hero-promo-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ======================= PREMIUM BUTTONS ======================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(74, 108, 247, 0.5);
}

.btn-primary img, .btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.btn-primary svg { width: 20px; height: 20px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.btn-secondary img { width: 20px; height: 20px; filter: brightness(0) invert(1); }

/* ======================= HERO IMAGE ======================= */
.hero-image-wrapper {
  position: relative;
  perspective: 800px;
}

.hero-image-border {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

/* Animated gradient border */
.hero-image-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: conic-gradient(from var(--gradient-angle), var(--accent), var(--accent), var(--accent), var(--accent));
  animation: gradient-spin 4s linear infinite;
  z-index: -1;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
}

/* Hero badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  animation: float-badge 3s ease-in-out infinite alternate;
}

.hero-badge img { width: 24px; height: 24px; }

.hero-badge-mdsap {
  top: -10px;
  right: -10px;
  padding: 8px;
}

.hero-badge-mdsap img { width: 48px; height: auto; }

.hero-badge-exemplar {
  bottom: 30%;
  left: -20px;
}

.hero-badge-exemplar img { width: 26px; height: auto; }
.hero-badge-exemplar span { font-size: 16px; color: #333; white-space: nowrap; }

.hero-badge-updated {
  bottom: -10px;
  right: 10%;
}

@keyframes float-badge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ======================= SECTION SHARED STYLES ======================= */
section {
  padding: 80px 0;
  position: relative;
}

/* Section tags - UNIFIED STYLE */
/* Light bg default: dark blue text + dark icon */
.tag-sessao2, .tag-sessao3, .tag-sessao4, .tag-mapa,
.tag-sessao7, .tag-sessao5, .tag-sessao6, .tag-v010 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(1, 17, 114, 0.06);
  border: 1px solid rgba(1, 17, 114, 0.12);
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.tag-sessao2 img, .tag-sessao3 img, .tag-sessao4 img, .tag-mapa img,
.tag-sessao7 img, .tag-sessao5 img, .tag-sessao6 img, .tag-v010 img {
  width: 18px;
  height: 18px;
  filter: none;
}

/* Section titles */
.titulo-sessao2, .titulo-sessao3, .titulo-sessao4, .titulo-mapa,
.titulo-sessao7, .titulo-sessao5, .titulo-sessao6, .titulo-v010 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.descricao-sessao3, .desc-mapa, .desc-v010 {
  font-size: var(--font-lg);
  color: var(--text-primary);
  opacity: 0.75;
  max-width: 600px;
  margin-bottom: 24px;
}

/* ======================= SECTION 2 - TRAINING ======================= */
.sessao-2 {
  background: var(--bg-section-alt);
  position: relative;
}

.sessao-2::before {
  display: none;
}

@keyframes shimmer-bar {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Center tag and title in sessao-2 */
.sessao-2 > .container {
  text-align: center;
}
.sessao-2 .tag-sessao2 {
  display: inline-flex;
  margin: 0 auto 16px;
}
.sessao-2 .s2-grid {
  text-align: left;
}
.sessao-2 .titulo-sessao2 {
  text-align: center;
  margin-bottom: 8px;
}

/* Training section title accent */
.titulo-sessao2 {
  position: relative;
  display: block;
}

.titulo-sessao2::after {
  display: none;
}

.s2-panel {
  margin-top: 32px;
}

/* INFO CARDS - Destaque de dados do curso (Desktop: grid 4col / Mobile: scroll horizontal) */
.s2-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.s2-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 24px;
  background: var(--card-bg-solid);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.s2-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(74, 108, 247, 0.18);
}

.s2-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.1), rgba(1, 16, 114, 0.06));
  margin-bottom: 14px;
  flex-shrink: 0;
}

.s2-info-icon img {
  width: 24px;
  height: 24px;
}

.s2-info-label {
  font-family: "Blauer", sans-serif;
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
}

.s2-info-value {
  font-family: "Blauer", sans-serif;
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--accent-primary);
  line-height: var(--leading-tight);
  margin-bottom: 6px;
}

.s2-info-detail {
  font-size: var(--font-xs);
  color: var(--text-muted);
  line-height: 1.4;
}

/* CTA inside the "O que vai aprender" card */
.s2-cta-inside {
  text-align: center;
  padding: 32px 0 12px;
  margin-top: 8px;
}

/* Module list - clean vertical layout */
.s2-modules-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  counter-reset: module;
}

.s2-module-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease-out);
  position: relative;
}

.s2-module-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.s2-module-item:hover {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.04), rgba(0, 212, 255, 0.02));
  padding-left: 20px;
}

.s2-module-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(1, 16, 114, 0.06), rgba(74, 108, 247, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
  transition: all 0.35s var(--ease-out);
}

.s2-module-item:hover .s2-module-num {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  -webkit-text-fill-color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(1, 16, 114, 0.2);
}

.s2-module-item h4 {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.s2-module-item:hover h4 {
  color: var(--primary);
}

.s2-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: stretch;
}

/* Cards */
.s2-left .card,
.s2-right .card {
  background: var(--card-bg-solid);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.s2-left .card::before {
  display: none;
}

.s2-left .card:hover,
.s2-right .card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

/* Instructor sidebar card - sticky */
.s2-right .card {
  position: sticky;
  top: 100px;
}

.card-title {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.mt-32 { margin-top: 32px; }

/* Info list (now inside left card only for detailed info) */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  background: rgba(74, 108, 247, 0.02);
}

.info-list li:hover {
  background: rgba(74, 108, 247, 0.05);
}

.info-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-list li strong {
  display: block;
  font-size: var(--font-base);
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.info-list li p {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Divider */
.divider {
  border: none;
  height: 1px;
  background: var(--border-color);
  margin: 32px 0;
}

.section-note {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA buttons in sections - matching Hero .btn-primary style */
.s2-cta, .v010-cta, .s3-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.4);
  position: relative;
  overflow: hidden;
}

.s2-cta::before, .v010-cta::before, .s3-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.s2-cta:hover::before, .v010-cta:hover::before, .s3-cta:hover::before {
  opacity: 1;
}

.s2-cta:hover, .v010-cta:hover, .s3-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(74, 108, 247, 0.5);
}

.s2-cta img, .v010-cta img, .s3-cta img { width: 20px; filter: brightness(0) invert(1); position: relative; z-index: 1; }
.s2-cta span, .v010-cta span, .s3-cta span { position: relative; z-index: 1; }

/* ======================= ACCORDION / MODULE SYSTEM ======================= */
.s2-left .card { counter-reset: module-counter; }

.module, .card-soft {
  background: var(--card-bg-solid);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.sessao-2 .module { counter-increment: module-counter; }

.module:hover, .card-soft:hover {
  border-color: var(--accent-glow);
  box-shadow: 0 4px 16px rgba(74, 108, 247, 0.08);
}

.module-head, .s3-module-head, .s4-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  gap: 16px;
}

.module-head h4, .s3-module-head h4, .s4-dropdown-head h4, .s4-dropdown-head h3 {
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.toggle, .s3-toggle, .s4-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-secondary);
  font-size: var(--font-sm);
  font-weight: 500;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.toggle:hover, .s3-toggle:hover, .s4-toggle:hover {
  color: var(--accent);
}

.caret, .s3-caret, .s4-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s var(--ease-out);
}

.module.open .caret,
.s3-module.open .s3-caret,
.s4-dropdown.open .s4-caret {
  transform: rotate(180deg);
}

.module-body, .s3-module-body, .s4-dropdown-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
  padding: 0 24px;
}

.module.open .module-body,
.s3-module.open .s3-module-body,
.s4-dropdown.open .s4-dropdown-body {
  max-height: 2000px;
  padding: 0 24px 24px;
}

/* Check lists */
.check-list, .s3-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li, .s3-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.check-list li img, .s3-list li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.module-subtitle {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--accent-secondary);
  margin: 20px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.module-subtitle:first-child { margin-top: 0; }

/* Instructor card */
.s2-right .card {
  height: 100%;
}

.s2-right .card::before {
  display: none;
}

.instrutora-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(74, 108, 247, 0.3);
  box-shadow: 0 0 20px rgba(74, 108, 247, 0.15);
  transition: all 0.3s ease;
}

.instrutora-photo:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
}

.instrutora-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.instrutora-nome {
  font-size: var(--font-lg);
  color: var(--text-primary);
}

.instrutora-desc {
  font-size: var(--font-sm);
  color: var(--accent-secondary);
}

.cert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cert-logo {
  width: 60px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.cert-logo:hover {
  opacity: 1;
}

.s2-instructor-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.s2-instructor-box img.foto-instrutora {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-secondary);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.s2-instructor-name { font-size: var(--font-lg); font-weight: 700; color: var(--text-primary); }
.s2-instructor-title { font-size: var(--font-sm); color: var(--accent-secondary); font-weight: 500; }
.s2-instructor-bio { font-size: var(--font-sm); color: var(--text-secondary); line-height: 1.6; margin-top: 8px; }

/* ======================= CURSO-SECTION (fullwidth cards) ======================= */
/* ======================= CURSO-SECTION (CAROUSEL) ======================= */
.cs-section {
  width: 100%;
  padding: 60px 0 80px;
  overflow: hidden;
  background: #f4f6fb;
  position: relative;
}

/* --- Header: tag + título (esquerda) + setas (direita) --- */
.cs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 32px;
}

.cs-header-left {
  flex: 1;
  max-width: 680px;
}

/* Tag — segue padrão unificado */
.tag-cs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(1, 17, 114, 0.06);
  border: 1px solid rgba(1, 17, 114, 0.12);
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.tag-cs img {
  width: 18px;
  height: 18px;
  filter: none;
}

.titulo-cs {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.18;
  margin-bottom: 14px;
}

.desc-cs {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Highlights — métricas abaixo da descrição */
.cs-highlights {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cs-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-highlight-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cs-highlight-icon {
  color: var(--accent-primary);
  flex-shrink: 0;
}

.cs-highlight-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.cs-highlight-divider {
  width: 1px;
  height: 36px;
  background: rgba(1, 17, 114, 0.12);
  flex-shrink: 0;
}

/* Setas desktop — lado direito do header */
.cs-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 6px;
}

.cs-nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-section-alt);
  border: 1px solid rgba(1, 17, 114, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary);
}

.cs-nav-arrow:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: scale(1.05);
}

.cs-nav-arrow.cs-nav-disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* --- Carousel wrapper --- */
.cs-carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.cs-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-right: 24px;
  /* padding-left definido por JS para alinhar com container */
}

/* Esconder scrollbar em todas plataformas */
.cs-cards::-webkit-scrollbar { display: none; }
.cs-cards { -ms-overflow-style: none; scrollbar-width: none; }

.cs-card {
  flex: none;
  align-self: stretch;
  width: calc((1200px - 48px) / 3);
  min-width: calc((1200px - 48px) / 3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  scroll-snap-align: start;
  border-radius: 16px;
}

/* --- Card image --- */
.cs-img-wrap {
  height: 520px;
  overflow: hidden;
  border-radius: 16px;
}

.cs-img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: transform 0.6s ease;
  position: relative;
}

.cs-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.20);
  pointer-events: none;
}

.cs-img-1 { background-image: url('assets/card-1.jpg'); background-position: 100%; filter: grayscale(100%); }
.cs-img-2 { background-image: url('assets/card-2.jpg'); background-position: 50%; }
.cs-img-3 { background-image: url('assets/card-3.jpg'); background-position: 100%; }
.cs-img-4 { background-image: url('assets/card-4.jpg'); background-position: center; }

/* Tag Liquid Glass — Treinamento para Empresas */
.cs-tag-empresa {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 20;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

/* Card 1 — Em Breve: textos e ícones em cinza/inativo */
.cs-card-1 .cs-heading { color: #888; }
.cs-card-1 .cs-subtitle { color: #777; }
.cs-card-1 .cs-duration,
.cs-card-1 .cs-audience { color: #777; }
.cs-card-1 .cs-duration svg,
.cs-card-1 .cs-audience svg { stroke: #777; opacity: 1; }
.cs-card-1 .cs-tag { color: #888; }
.cs-card-1 .cs-small { color: #666; }
.cs-card-1 .cs-dot { background-color: #666; }

/* Card 1 — Em Breve: desativar todos os efeitos de hover */
.cs-card-1 { cursor: default !important; }
.cs-card-1:hover .cs-img { transform: none !important; }
.cs-card-1:hover .cs-scroll-wrap { opacity: 0 !important; }



.cs-card:hover .cs-img {
  transform: scale(1.08);
}

/* --- Card inner overlay --- */
.cs-card-inner {
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.70) 100%);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 8%;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 16px;
}

.cs-card-details {
  width: 100%;
  padding: 0 8% 6%;
}

.cs-heading {
  color: #fff;
  text-transform: uppercase;
  max-width: 18ch;
  margin: 5px 0 0;
  font-family: "Blauer", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
}

.cs-subtitle {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-family: "Blauer", sans-serif;
  font-size: clamp(0.7rem, 1.5vw, 0.95rem);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.cs-duration,
.cs-audience {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Blauer", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cs-duration svg,
.cs-audience svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* --- Scrolling text ticker --- */
.cs-scroll-wrap {
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  width: 100%;
  overflow: hidden;
  align-items: center;
  min-height: 40px;
}

.cs-card:hover .cs-scroll-wrap {
  opacity: 1;
}

.cs-scroll-track {
  display: flex;
  align-items: center;
  animation: csScrollText 20s linear infinite;
}

.cs-scroll-row {
  display: flex;
  align-items: center;
  min-width: 600px;
  padding-right: 1vw;
}

.cs-dot {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 200px;
  width: 10px;
  height: 10px;
  margin: 0 12px;
  flex-shrink: 0;
}

.cs-tag {
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 12px;
  font-family: "Blauer", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.cs-small {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
}

@keyframes csScrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Mobile nav arrows (hidden on desktop, overlaps top of slides) --- */
.cs-mob-nav {
  display: none;
}

/* ======================= CURSO-SECTION: MOBILE ======================= */
@media screen and (max-width: 991px) {
  .cs-section {
    padding: 40px 0 40px;
  }

  /* Header: esconder setas desktop no mobile */
  .cs-header {
    margin-bottom: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cs-header-left {
    max-width: 100%;
  }

  .titulo-cs {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .titulo-cs br {
    display: none;
  }

  .desc-cs {
    margin-bottom: 20px;
  }

  .cs-highlights {
    gap: 16px;
  }

  .cs-highlight-number {
    font-size: 1.35rem;
  }

  .cs-highlight-label {
    font-size: 0.72rem;
  }

  .cs-highlight-divider {
    height: 28px;
  }

  .cs-header-right {
    display: none;
  }

  /* Mobile arrows: bloco entre header e slides */
  .cs-mob-nav {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 20;
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .cs-mob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(1, 17, 114, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .cs-mob-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
  }

  .cs-mob-btn.cs-nav-disabled {
    opacity: 0.25;
    pointer-events: none;
  }

  .cs-carousel-wrapper {
    position: relative;
  }

  .cs-cards {
    gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
    height: auto;
    min-height: unset;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    -webkit-overflow-scrolling: touch;
  }

  .cs-card, .cs-card-2, .cs-card-3, .cs-card-4 {
    flex: none;
    width: 80vw;
    min-width: 80vw;
    scroll-snap-align: start;
    border-radius: 16px;
  }

  .cs-img-wrap {
    height: 70vh;
    min-height: 420px;
    max-height: 550px;
    border-radius: 16px;
  }

  .cs-card-inner {
    opacity: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: unset;
    padding-bottom: 8%;
    border-radius: 16px;
  }

  .cs-scroll-wrap {
    opacity: 0;
    padding: 0 20px;
    transition: opacity 0.4s ease;
  }
  .cs-card.cs-card-active .cs-scroll-wrap {
    opacity: 1;
  }

  .cs-heading {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .cs-subtitle {
    font-size: 0.85em;
  }

}

@media screen and (max-width: 767px) {
  .cs-heading {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
  }
  .cs-subtitle {
    font-size: 0.75em;
  }
}

@media screen and (max-width: 479px) {
  .cs-small { font-size: 9px; }
  .cs-heading {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }
  .cs-subtitle {
    font-size: 0.7em;
  }
  .cs-img-2 { background-position: 50% 0; }

  .cs-highlights {
    gap: 12px;
  }
  .cs-highlight-number {
    font-size: 1.15rem;
  }
  .cs-highlight-label {
    font-size: 0.68rem;
  }
  .cs-highlight-divider {
    height: 24px;
  }
  .cs-highlight-icon {
    width: 18px;
    height: 18px;
  }
}

/* Tablet/small desktop — cards proportional */
@media screen and (min-width: 992px) and (max-width: 1300px) {
  .cs-card {
    width: calc((100vw - 80px) / 3);
    min-width: calc((100vw - 80px) / 3);
  }
}

/* ======================= v010 SECTION ======================= */
.sessao-v010 {
  background: var(--bg-section-alt);
}

/* 2-column layout: sticky left (tag+title+desc) + scrollable right (timeline) */
.v010-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.v010-col-left {
  position: sticky;
  top: 100px;
  text-align: left;
}

.v010-col-left .tag-v010 {
  margin: 0 0 16px;
}

.v010-col-left .titulo-v010 {
  text-align: left;
  margin-bottom: 16px;
}

.v010-col-left .desc-v010 {
  text-align: left;
  margin: 0 0 24px;
  max-width: 440px;
}

/* ===== MODULE OPEN CARDS GRID ===== */
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.modulo-card {
  background: var(--card-bg-solid);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg, 16px);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.modulo-card:hover {
  border-color: rgba(74, 108, 247, 0.2);
  box-shadow: 0 8px 24px rgba(1, 16, 114, 0.06);
}
.modulo-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modulo-badge {
  display: inline-block;
  width: fit-content;
  font-family: 'Blauer', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent, #4a6cf7);
  background: rgba(74, 108, 247, 0.08);
  border: 1px solid rgba(74, 108, 247, 0.15);
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.modulo-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.35;
}
.modulo-desc {
  font-size: 0.88rem;
  color: var(--text-muted, #555);
  line-height: 1.7;
  margin: 0;
}
.modulo-dominar {
  border-top: 1px solid var(--card-border);
  padding-top: 12px;
  margin-top: 4px;
}
.modulo-dominar-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent, #4a6cf7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.modulo-dominar p {
  font-size: 0.85rem;
  color: var(--text-muted, #555);
  line-height: 1.7;
  margin: 0;
}

/* Course info strip below modules */
.curso-info-strip {
  margin-top: 3rem;
  background: var(--card-bg-solid);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg, 16px);
  padding: 32px;
}
.curso-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.curso-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.curso-info-item img {
  opacity: 0.7;
}
.curso-info-label {
  font-size: 0.72rem;
  color: var(--text-muted, #888);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.curso-info-item strong {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 700;
}
.curso-info-pricing {
  text-align: center;
  margin-bottom: 24px;
}
.pricing-discount-tag {
  display: inline-block;
  background: #1a4ac4;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.pricing-values {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
}
.pricing-old {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
}
.pricing-new {
  font-family: 'Blauer', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}
.pricing-installments {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-top: 6px;
}
.pricing-deadline {
  display: block;
  font-size: 0.8rem;
  color: #1a4ac4;
  font-weight: 600;
  margin-top: 6px;
}
.curso-info-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .modulos-grid { grid-template-columns: 1fr; }
  .curso-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .curso-info-strip { padding: 24px 20px; }
  .curso-info-cta { flex-direction: column; align-items: stretch; }
  .curso-info-cta .btn-primary { justify-content: center; }
  .curso-info-cta .enrollment-whatsapp { justify-content: center; }
  .pricing-new { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .curso-info-strip { padding: 20px 16px; }
  .curso-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .curso-info-item {
    background: rgba(74, 108, 247, 0.04);
    border-radius: 10px;
    padding: 12px 10px;
    gap: 4px;
  }
  .curso-info-item img { width: 20px; height: 20px; }
  .curso-info-label { font-size: 0.62rem; }
  .curso-info-item strong { font-size: 0.78rem; }
  .pricing-new { font-size: 1.6rem; }
  .pricing-old { font-size: 0.95rem; }
  .pricing-installments { font-size: 0.8rem; }
  .pricing-discount-tag { font-size: 0.72rem; padding: 3px 12px; margin-bottom: 8px; }
  .curso-info-pricing { margin-bottom: 16px; }
}

/* ===== V010 DROPDOWN ACCORDION (legacy) ===== */
.v010-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v010-dd {
  background: var(--card-bg-solid);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.v010-dd:hover {
  border-color: rgba(74, 108, 247, 0.15);
  box-shadow: 0 4px 16px rgba(74, 108, 247, 0.06);
}

.v010-dd.open {
  border-color: rgba(74, 108, 247, 0.2);
  box-shadow: 0 8px 24px rgba(1, 16, 114, 0.06);
}

/* Dropdown head: icon + title + caret */
.v010-dd-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.v010-dd-head:hover {
  background: rgba(74, 108, 247, 0.02);
}

.v010-dd-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(1, 16, 114, 0.06), rgba(74, 108, 247, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.v010-dd.open .v010-dd-icon {
  background: linear-gradient(135deg, rgba(1, 16, 114, 0.1), rgba(74, 108, 247, 0.14));
}

.v010-dd-icon img {
  width: 20px;
  height: 20px;
}

.v010-dd-head h3 {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
  margin: 0;
  line-height: 1.3;
}

.v010-dd-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted);
  transition: transform 0.4s var(--ease-in-out);
  flex-shrink: 0;
}

.v010-dd.open .v010-dd-caret {
  transform: rotate(180deg);
}

/* Dropdown body */
.v010-dd-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-in-out), padding 0.45s var(--ease-in-out);
  padding: 0 20px;
}

.v010-dd.open .v010-dd-body {
  max-height: 400px;
  padding: 0 20px 20px;
}

/* Content blocks inside */
.v010-dd-block {
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease-out) 0.05s, transform 0.4s var(--ease-out) 0.05s;
}

.v010-dd.open .v010-dd-block {
  opacity: 1;
  transform: translateY(0);
}

.v010-dd.open .v010-dd-block:nth-child(2) {
  transition-delay: 0.15s;
}

.v010-dd-block:last-child {
  margin-bottom: 0;
}

.v010-dd-subtitle {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.v010-dd-before-label {
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.v010-dd-after-label {
  color: var(--accent);
  background: rgba(74, 108, 247, 0.06);
  border: 1px solid rgba(74, 108, 247, 0.12);
}

.v010-dd-block p {
  font-size: var(--font-xs);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* v010 responsive - tablet */
@media (max-width: 1024px) {
  .v010-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v010-col-left {
    position: static;
    text-align: center;
  }
  .v010-col-left .titulo-v010 { text-align: center; }
  .v010-col-left .desc-v010 { text-align: center; margin: 0 auto 24px; }
  .v010-col-left .v010-cta { margin: 0 auto; }
}

/* v010 responsive - mobile */
@media (max-width: 768px) {
  .v010-layout {
    gap: 24px;
  }
  .v010-dd-head {
    padding: 14px 16px;
    gap: 10px;
  }
  .v010-dd-icon {
    width: 32px;
    height: 32px;
  }
  .v010-dd-icon img {
    width: 16px;
    height: 16px;
  }
  .v010-dd-head h3 {
    font-size: var(--font-xs);
  }
  .v010-dd-body {
    padding: 0 16px;
  }
  .v010-dd.open .v010-dd-body {
    padding: 0 16px 16px;
  }
}

/* ======================= GLOBE / MAP SECTION ======================= */
.mapa-section {
  background: var(--bg-hero);
  color: var(--text-on-dark);
  overflow: hidden;
  position: relative;
}

.mapa-section .tag-mapa {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.mapa-section .tag-mapa img { filter: brightness(0) invert(1); }

.mapa-section .titulo-mapa {
  color: #fff;
  background: linear-gradient(135deg, #ffffff 0%, #c8d5f9 40%, var(--accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-text-shimmer 6s ease-in-out infinite alternate;
}

.mapa-section .desc-mapa {
  color: rgba(255, 255, 255, 0.7);
}

/* Globe 2-column layout */
.mapa-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: center;
  min-height: 70vh;
}

.mapa-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.mapa-text-col .desc-mapa {
  margin-bottom: 22px;
}

.mapa-text-col .globe-nav {
  margin-top: 16px;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.mapa-globe-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3D Globe container */
.globe-container {
  position: relative;
  width: 100%;
}

.globe-wrapper {
  position: relative;
  width: 100%;
  height: 650px;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.globe-wrapper canvas {
  cursor: grab;
  outline: none;
}

.globe-wrapper canvas:active {
  cursor: grabbing;
}

/* Globe HTML labels (rendered by Globe.gl) */
.globe-html-label {
  text-align: center;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.globe-html-label:hover {
  transform: translate(-50%, -50%);
}

.globe-html-flag {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.globe-html-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 auto 6px;
  box-shadow: 0 0 8px currentColor, 0 0 16px currentColor;
  position: relative;
}

.globe-html-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.4;
  animation: globe-html-pulse 2.5s ease-out infinite;
}

@keyframes globe-html-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.globe-html-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.5);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.globe-html-agency {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  white-space: nowrap;
  font-weight: 500;
}

/* Globe 3D tooltip */
.globe-tooltip-3d {
  position: absolute;
  z-index: 20;
  background: rgba(5, 13, 61, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(74, 108, 247, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -100%) translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 240px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(74, 108, 247, 0.15);
  white-space: nowrap;
}

.globe-tooltip-3d.visible {
  opacity: 1;
  transform: translate(-50%, -100%) translateY(-14px);
}

.gtt-country {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.gtt-agency {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.gtt-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  white-space: normal;
}

/* Globe nav buttons */
.globe-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.globe-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  font-family: inherit;
  width: auto;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.globe-nav-btn::before {
  display: none;
}

.globe-nav-info {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.globe-nav-country {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.globe-nav-agency {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.8;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.globe-nav-btn:hover .globe-nav-agency,
.globe-nav-btn.active .globe-nav-agency {
  opacity: 1;
}

.globe-nav-btn:hover,
.globe-nav-btn.active {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.25), rgba(0, 212, 255, 0.15));
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 108, 247, 0.15);
}

.globe-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.globe-nav-flag {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-nav-flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

/* ===== Globe Nav Item - Expandable ===== */
.globe-nav-item {
  transition: flex-basis 0.5s var(--ease-in-out);
}

.globe-nav-item.expanded {
  flex-basis: 100%;
}

.globe-nav-item .globe-nav-btn {
  width: 100%;
}

/* Chevron indicator */
.globe-nav-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: transform 0.4s var(--ease-in-out), opacity 0.3s;
  margin-left: auto;
}
.globe-nav-chevron svg {
  width: 12px;
  height: 12px;
}
.globe-nav-item.expanded .globe-nav-chevron {
  transform: rotate(180deg);
  opacity: 0.7;
}
.globe-nav-btn:hover .globe-nav-chevron {
  opacity: 0.6;
}

/* Detail panel inside nav item */
.globe-nav-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s var(--ease-in-out), opacity 0.4s var(--ease-in-out) 0.05s, padding 0.5s var(--ease-in-out);
  padding: 0 18px;
  border-radius: 0;
  background: none;
}

.globe-nav-item.expanded .globe-nav-detail {
  max-height: 320px;
  opacity: 1;
  padding: 10px 18px 16px;
}

.globe-nav-detail p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 12px;
}

.globe-nav-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.globe-nav-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
}

.globe-nav-detail-item small {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 500;
}

.globe-nav-detail-item strong {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* Globe responsive */
@media (max-width: 768px) {
  .mapa-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }
  .mapa-text-col {
    display: contents;
  }
  .mapa-section .titulo-mapa {
    font-size: calc(var(--font-2xl) + 8px);
    line-height: calc(var(--leading-tight) + 0.11);
    order: 1;
    text-align: center;
  }
  .mapa-section .desc-mapa {
    order: 1;
    text-align: center;
    font-size: calc(var(--font-lg) + 2px);
  }
  .mapa-globe-col {
    order: 2;
  }
  .globe-wrapper {
    height: 420px;
    width: 100%;
  }
  .mapa-text-col .globe-nav {
    order: 3;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
  }
  .globe-nav-btn {
    width: auto;
    padding: 12px 16px;
    font-size: 14px;
  }
  .globe-nav-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .globe-nav-detail p {
    font-size: 12px;
    text-align: left;
  }
  .globe-nav-item.expanded .globe-nav-detail {
    padding: 12px 18px 18px;
  }
  .globe-label-name {
    font-size: 11px;
  }
  .globe-label-agency {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .globe-wrapper {
    height: 370px;
    width: 100%;
  }
}

/* ======================= SECTION 3 - IN COMPANY ======================= */
.sessao-3 {
  background: var(--bg-section-alt);
}

/* Center tag and title in sessao-3 */
.sessao-3 > .container {
  text-align: center;
}
.sessao-3 .tag-sessao3 {
  display: inline-flex;
  margin: 0 auto 16px;
}
.sessao-3 .s3-grid {
  text-align: left;
}
.sessao-3 .titulo-sessao3 {
  text-align: center;
}
.sessao-3 .descricao-sessao3 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.s3-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.s3-card {
  background: var(--card-bg-solid);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

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

.s3-img-box {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.s3-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.s3-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(74, 108, 247, 0.9);
  color: #fff;
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.s3-title {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--text-primary);
  padding: 24px 24px 12px;
}

.s3-desc {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 24px 20px;
}

.s3-module {
  margin: 0 24px 12px;
}

.s3-cta {
  margin: 12px 24px 24px;
}

/* ======================= SECTION 4 - AUDITORIA & CONSULTORIA ======================= */
.sessao-4 {
  background: var(--bg-primary);
}

/* Tabs */
.tabs-s4 {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  padding: 4px;
  display: inline-flex;
}

.tab-s4 {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}

.tab-s4.active {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.tab-s4:not(.active):hover {
  color: var(--text-primary);
}

.tab-content-s4 { display: none; }
.tab-content-s4.active { display: block; }

.s4-dropdown-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.s4-dropdown-desc {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 48px;
  position: relative;
}

.s4-dropdown-desc::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 2px;
  opacity: 0.3;
}

/* ======================= SECTION 7 - DIFERENCIAS ======================= */
.sessao-7 {
  background: var(--bg-hero);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.sessao-7::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(74, 108, 247, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.sessao-7 .tag-sessao7 {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.sessao-7 .tag-sessao7 img { filter: brightness(0) invert(1); }

.sessao-7 .titulo-sessao7 {
  color: #fff;
}

/* Center tag and title in sessao-7 */
.sessao-7 > .container {
  text-align: center;
}
.sessao-7 > .container > .tag-sessao7 {
  display: inline-flex;
  margin: 0 auto 16px;
}
.sessao-7 .s7-grid {
  text-align: left;
}
.sessao-7 > .container > .titulo-sessao7 {
  text-align: center;
}

.s7-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
  margin-top: 48px;
}

.s7-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.s7-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), 0 0 30px rgba(74, 108, 247, 0.1);
}

.s7-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(74, 108, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.s7-icon img { width: 24px; height: 24px; filter: brightness(0) invert(1); }

.s7-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(74, 108, 247, 0.3);
  box-shadow: 0 0 20px rgba(74, 108, 247, 0.2);
  transition: all 0.4s var(--ease-out);
}

.s7-card:hover .s7-photo {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.s7-name {
  font-size: var(--font-lg);
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.s7-desc {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.s7-toggle {
  margin-top: auto;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: rgba(74, 108, 247, 0.15);
  border: 1px solid rgba(74, 108, 247, 0.25);
  color: #ffffff;
  font-size: var(--font-sm);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.s7-toggle:hover {
  background: rgba(74, 108, 247, 0.25);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74, 108, 247, 0.2);
}

.s7-card h3 {
  font-size: var(--font-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.s7-card p {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  flex: 1;
}

/* Team Modals */
.equipe-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.equipe-modal-overlay.show {
  display: flex;
}

.equipe-modal {
  background: var(--card-bg-solid);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--card-border);
}

.equipe-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  transition: all var(--transition-fast);
}

.equipe-modal-close:hover {
  background: var(--accent-secondary);
  color: #fff;
}

.equipe-modal img.foto-equipe-modal {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid var(--accent-secondary);
}

.equipe-modal h3 { font-size: var(--font-2xl); font-weight: 700; text-align: center; margin-bottom: 4px; }
.equipe-modal .modal-cargo { font-size: var(--font-sm); color: var(--accent-secondary); text-align: center; margin-bottom: 16px; }
.equipe-modal .modal-bio { font-size: var(--font-sm); color: var(--text-secondary); line-height: 1.7; }
.equipe-modal .modal-bio p { margin-bottom: 12px; }

/* ======================= SESSAO DIFERENCIAIS ======================= */
.sessao-diferenciais {
  background: var(--bg-hero);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.sessao-diferenciais::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(74, 108, 247, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.diferenciais-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sessao-diferenciais .tag-sessao6 {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  justify-content: center;
  margin: 0 auto 16px;
}

.sessao-diferenciais .tag-sessao6 img { filter: brightness(0) invert(1); }

.sessao-diferenciais .titulo-sessao6 {
  color: #fff;
  margin-bottom: 48px;
}

.tag-sessao6 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--tag-bg);
  border: 1px solid var(--tag-border);
  font-size: 0.85rem;
  color: var(--tag-text);
  font-weight: 500;
  margin-bottom: 16px;
}

.tag-sessao6 img { width: 18px; height: 18px; }

.titulo-sessao6 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Showcase layout - BENTO GRID */
.dif-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.dif-feature:nth-child(1) { grid-column: span 5; }
.dif-feature:nth-child(2) { grid-column: span 7; }
.dif-feature:nth-child(3) { grid-column: span 4; }
.dif-feature:nth-child(4) { grid-column: span 4; }
.dif-feature:nth-child(5) { grid-column: span 4; }

.dif-feature {
  position: relative;
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.dif-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 30%, rgba(74, 108, 247, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}

.dif-feature:hover::before { opacity: 1; }

.dif-feature-number {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(74, 108, 247, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0;
  position: absolute;
  top: 16px;
  right: 20px;
  transition: all 0.5s;
  pointer-events: none;
}

.dif-feature:hover .dif-feature-number {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(74, 108, 247, 0.25));
  -webkit-background-clip: text;
  background-clip: text;
}

.dif-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.2), rgba(0, 212, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dif-feature:hover .dif-feature-icon {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.35), rgba(0, 212, 255, 0.2));
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 24px rgba(74, 108, 247, 0.3), 0 0 48px rgba(0, 212, 255, 0.1);
}

.dif-feature-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.dif-feature-content { flex: 1; position: relative; z-index: 1; }

.dif-feature-content strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.dif-feature-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.dif-feature-glow { display: none; }

.dif-feature:hover {
  background: rgba(74, 108, 247, 0.06);
  border-color: rgba(74, 108, 247, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15), 0 0 60px rgba(74, 108, 247, 0.08);
}

.sessao-diferenciais .s6-cta { margin-top: 0; }

@media (max-width: 968px) {
  .dif-showcase { grid-template-columns: repeat(2, 1fr); }
  .dif-feature:nth-child(1),
  .dif-feature:nth-child(2),
  .dif-feature:nth-child(3),
  .dif-feature:nth-child(4),
  .dif-feature:nth-child(5) { grid-column: span 1; }
  .dif-feature:nth-child(5) { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .dif-showcase { grid-template-columns: 1fr; }
  .dif-feature { padding: 24px 20px; }
  .dif-feature-number { font-size: 56px; }
  .dif-feature:nth-child(5) { grid-column: auto; }
}

/* ======================= SESSAO FAQ ======================= */
.sessao-faq {
  background: #f4f6fb;
  position: relative;
  overflow: hidden;
}

.sessao-faq::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 108, 247, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.sessao-faq::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sessao-faq .tag-sessao6 {
  justify-content: center;
  margin: 0 auto 16px;
}

.sessao-faq .titulo-sessao6 {
  margin-bottom: 12px;
  position: relative;
  display: block;
}

.sessao-faq .titulo-sessao6::after {
  display: none;
}

.faq-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  counter-reset: faq-counter;
}

.faq-grid .s4-dropdown {
  counter-increment: faq-counter;
  position: relative;
}

.faq-grid .s4-dropdown-head::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  margin-right: 16px;
  min-width: 32px;
  transition: opacity 0.3s ease;
}

.faq-grid .s4-dropdown:hover .s4-dropdown-head::before,
.faq-grid .s4-dropdown.open .s4-dropdown-head::before {
  opacity: 1;
}

.faq-grid .s4-dropdown {
  transition: all 0.3s var(--ease-out);
  border-radius: var(--radius-md) !important;
}

.faq-grid .s4-dropdown:hover,
.faq-grid .s4-dropdown.open {
  box-shadow: 0 6px 28px rgba(74, 108, 247, 0.1);
  background: var(--card-bg-solid);
}

.faq-grid .s4-dropdown.open {
  border-color: rgba(74, 108, 247, 0.15);
}

/* ======================= FOOTER ======================= */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-logo {
  height: 30px;
  width: auto;
}

.footer-logo-mdsap {
  height: 60px;
  border-radius: var(--radius-sm);
}

.footer-slogan {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.footer-title {
  font-size: var(--font-base);
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--accent); }

.footer-link-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-link-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover { color: var(--accent); }

/* ======================= BACK TO TOP ======================= */
#back-to-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--accent-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s var(--ease-out);
}

#back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top-btn:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

#back-to-top-btn svg { width: 20px; height: 20px; }

@media (max-width: 991px) {
  #back-to-top-btn { display: none !important; }
}

/* ======================= PLOOMES MODAL ======================= */
#ploomes-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#ploomes-modal-overlay.show {
  display: flex;
}

.ploomes-modal {
  background: var(--card-bg-solid);
  border-radius: var(--radius-xl);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.ploomes-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  z-index: 2;
  transition: all var(--transition-fast);
}

.ploomes-close-btn:hover {
  background: var(--accent-secondary);
  color: #fff;
}

.ploomes-modal iframe {
  width: 100%;
  height: 70vh;
  border: none;
}

/* Team grid responsive */
@media (max-width: 768px) {
  .s7-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ======================= COOKIE BANNER (Minimalist) ======================= */
#cookieBanner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9998;
  max-width: 620px;
  width: calc(100% - 32px);
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

#cookieBanner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 12px;
  color: #0E1A3A;
  flex: 1;
  min-width: 180px;
  line-height: 1.4;
}

.cookie-banner-text a {
  color: var(--accent-primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn-ok,
.cookie-btn-no,
.cookie-btn-cfg {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cookie-btn-ok {
  background: var(--primary);
  color: #fff;
}
.cookie-btn-ok:hover { background: var(--accent); }

.cookie-btn-no {
  background: transparent;
  color: #0E1A3A;
  border: 1px solid rgba(1, 16, 114, 0.3);
}
.cookie-btn-no:hover { background: rgba(1, 16, 114, 0.06); color: var(--primary); }

.cookie-btn-cfg {
  background: transparent;
  color: #475569;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.cookie-btn-cfg:hover { color: var(--primary); border-color: rgba(1, 16, 114, 0.3); }

@media (max-width: 480px) {
  #cookieBanner { bottom: 12px; padding: 12px 16px; }
  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-banner-text { font-size: 15px; line-height: 1.5; }
  .cookie-banner-btns { justify-content: center; }
}

/* Cookie Modal */
#cookieModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#cookieModal.show { display: flex; }

.cookie-modal-content {
  background: var(--card-bg-solid);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 36px;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 { font-size: var(--font-xl); font-weight: 700; }

#cookieModalClose {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  color: var(--text-muted);
  font-size: 18px;
}

.cookie-modal-body {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child { border-bottom: none; }

.cookie-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-category-info h4 { font-size: var(--font-sm); font-weight: 600; color: var(--text-primary); }
.cookie-category-description { font-size: var(--font-xs); color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent-secondary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-btn-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.cookie-btn-secondary:hover { background: var(--bg-tertiary); }

/* ======================= SCROLL ANIMATIONS ======================= */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-item:nth-child(1) { transition-delay: 0s; }
.fade-item:nth-child(2) { transition-delay: 0.1s; }
.fade-item:nth-child(3) { transition-delay: 0.2s; }
.fade-item:nth-child(4) { transition-delay: 0.3s; }
.fade-item:nth-child(5) { transition-delay: 0.4s; }

/* ======================= RESPONSIVE ======================= */
@media (max-width: 1200px) {
  .hero-container { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 0; }
  .hero-image-wrapper { order: 1; max-width: 500px; margin: 0 auto; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-badge-exemplar { left: 10px; }
  .s2-grid { grid-template-columns: 1fr; }
  .s2-right .card { height: auto; }
  .s2-info-cards { grid-template-columns: repeat(2, 1fr); }
  .s7-grid { grid-template-columns: 1fr; }
  .mapa-wrapper { max-width: 500px; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .s7-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .hero-container {
    gap: 40px;
  }
  .container-menu {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  section { padding: var(--space-3xl) 0; }

  /* Menu mobile fix */
  .container-menu { padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
  .menu-logo { display: flex; align-items: center; flex-shrink: 0; line-height: 0; gap: 15px; }
  .menu-logo svg,
  .menu-logo img { height: 26px; width: auto; display: block; }
  .menu-countdown { display: none; }
  .menu-bandeiras { gap: 8px; display: flex; align-items: center; flex-shrink: 0; justify-content: flex-end; }
  .flag { width: 28px; height: 28px; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  /* H1 hero mobile: increase font-size by ~17px and line-height by 4px */
  .hero h1 {
    font-size: calc(var(--font-3xl) + 17px);
    line-height: calc(var(--leading-tight) + 0.04);
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Badges hero mobile: menores e reposicionados dentro da imagem */
  .hero-badge {
    padding: 6px 10px;
    gap: 5px;
    font-size: 11px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: none;
  }
  .hero-badge img { width: 18px; height: 18px; }
  .hero-badge-mdsap { top: -4px; right: -4px; padding: 5px; }
  .hero-badge-mdsap img { width: 32px; }
  .hero-badge-exemplar { bottom: 15%; left: -4px; }
  .hero-badge-exemplar img { width: 18px; }
  .hero-badge-exemplar span { font-size: 11px; }
  .hero-badge-updated { bottom: -4px; right: 4%; }
  .hero-badge-updated span { font-size: 11px; }
  /* Ajustar slider s5 em mobile */
  .s5-slider-container {
    overflow: hidden;
  }
  .s5-slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .titulo-sessao2, .titulo-sessao3, .titulo-sessao4, .titulo-mapa,
  .titulo-sessao7, .titulo-sessao5, .titulo-sessao6, .titulo-v010 {
    font-size: var(--font-2xl);
  }

  .s3-grid { grid-template-columns: 1fr; }
  .mapa-wrapper { max-width: 100%; }
  /* Info cards - horizontal scroll no mobile (mesma seção, sem corte) */
  .s2-info-cards {
    display: flex;
    grid-template-columns: unset;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 4px;
    padding-bottom: 4px;
    margin-bottom: 16px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .s2-info-cards::-webkit-scrollbar {
    display: none;
  }

  .s2-info-card {
    min-width: 180px;
    max-width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 18px 14px 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }

  .s2-panel {
    margin-top: 0;
  }

  /* Centralizar tag "Alcance Global" no mobile */
  .mapa-text-col {
    align-items: center;
  }

  /* FAQ mobile: esconder números, deixar só título e botão */
  .faq-grid .s4-dropdown-head::before {
    display: none;
  }

  /* Footer mobile: coluna única, tudo centralizado */
  .footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
    text-align: center;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo-group {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
    width: 100%;
  }
  .footer-link-icon {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-title {
    text-align: center;
  }
  .footer-slogan {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Cookie banner mobile: increase text by 3px */
  .cookie-banner-text { font-size: 15px; }

  .cursor-dot, .cursor-outline { display: none; }

}

@media (max-width: 480px) {
  /* Hero mobile 480: increase H1 proportionally */
  .hero h1 {
    font-size: calc(var(--font-2xl) + 17px);
    line-height: calc(var(--leading-tight) + 0.04);
  }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary { width: 100%; justify-content: center; }
  .hero-btn-secondary { justify-content: center; }

  /* Menu mobile 480 */
  .menu-logo svg,
  .menu-logo img { height: 22px; }
  .menu-logo-mdsap { height: 24px !important; }
  .menu-logo { gap: 15px; width: 65%; }
  .flag { width: 26px; height: 26px; }
  .menu-bandeiras { gap: 6px; justify-content: flex-end; width: 35%; }

  .tabs-s4 {
    width: 100%;
    display: flex;
  }
  .tab-s4 { flex: 1; text-align: center; padding: 10px 16px; }

  .equipe-modal { padding: 32px 24px; }
  .cookie-modal-content { padding: 24px; }
}

/* ======================= SELECTION ======================= */
::selection {
  background: rgba(74, 108, 247, 0.3);
  color: var(--text-primary);
}

/* ======================= SCROLLBAR ======================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* ======================= SECTION 5 - TESTIMONIALS (FIX) ======================= */
.sessao-5 {
  background: #f8f9fa;
  color: #1a1a1a;
  overflow: hidden;
  padding: 80px 0;
}

.sessao-5 > .container:first-child {
  text-align: center;
}

.sessao-5 .tag-cs {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
}

.sessao-5 .tag-cs img { filter: none; }
.sessao-5 .titulo-sessao5 {
  color: #1a1a1a;
  margin-bottom: 40px;
}

@keyframes infinite-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-480px * 9)); }
}

.s5-slider-container {
  position: relative;
  width: 100%;
}

.s5-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.s5-slider-wrapper::before,
.s5-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.s5-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

.s5-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

.s5-slider-track {
  display: flex;
  animation: infinite-scroll 60s linear infinite;
}

.s5-slider-wrapper {
  cursor: grab;
}
.s5-slider-wrapper:active {
  cursor: grabbing;
}

.s5-slide {
  width: 480px;
  flex-shrink: 0;
  padding: 20px 15px;
  box-sizing: border-box;
}

.s5-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s var(--ease-out);
  height: 100%;
  text-align: left;
}

.s5-card:hover {
  background: #ffffff;
  border-color: rgba(74, 108, 247, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.s5-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.s5-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74, 108, 247, 0.2);
  flex-shrink: 0;
}

.s5-photo-placeholder {
  object-fit: contain;
  background: #e8ecff;
  padding: 6px;
}

.s5-info {
  display: flex;
  flex-direction: column;
}

.s5-name {
  font-size: var(--font-base);
  font-weight: 700;
  color: #1a1a1a;
}

.s5-cargo {
  font-size: var(--font-xs);
  color: rgba(0, 0, 0, 0.6);
}

.s5-empresa {
  font-size: var(--font-xs);
  color: #4a6cf7;
  font-weight: 500;
}

.s5-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.s5-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.s5-text {
  font-size: var(--font-sm);
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.7;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Slider navigation */
.s5-slider-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.s5-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.s5-slider-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
}

.s5-slider-btn svg { width: 18px; height: 18px; }

/* Responsive fixes */
@media (max-width: 1024px) {
  .sessao-7 .s7-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .sessao-7 .s7-grid { grid-template-columns: 1fr; }
  .faq-grid { max-width: 100%; }
  .s5-slider-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .s5-slider-wrapper::-webkit-scrollbar { display: none; }
  .s5-slider-wrapper::before,
  .s5-slider-wrapper::after { display: none; }
  .s5-slider-track { animation: none; }
  .s5-slide {
    width: 85%;
    padding: 20px 10px;
    scroll-snap-align: start;
  }
  .s5-slider-track .s5-slide:nth-child(n+10) { display: none; }
}

/* Training Modal */
.modal-content.training-modal-content {
  max-width: 680px;
  padding: 0 !important;
  max-height: 90vh;
  overflow: hidden;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
}
.training-modal-body {
  padding: 40px 36px 48px;
  overflow-y: auto;
  scrollbar-width: thin;
  flex: 1;
  min-height: 0;
}

/* "Em Breve" banner inside modal */
.training-modal-soon-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  margin: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent-secondary));
  color: #fff;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  width: 100%;
  box-sizing: border-box;
}

/* Countdown inside modal */
.training-modal-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  margin: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent-secondary));
  color: #fff;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}
.training-modal-countdown-icon {
  display: flex;
  align-items: center;
  opacity: 0.8;
}
.training-modal-countdown-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.3px;
}
.training-modal-countdown-timer {
  display: flex;
  align-items: center;
  gap: 2px;
}
.training-modal-countdown-unit {
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.training-modal-countdown-unit span {
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.training-modal-countdown-unit small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.6;
}
.training-modal-countdown-sep {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.4;
  margin: 0 2px;
}
.training-modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.training-modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 28px;
}
.training-modal-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.training-modal-info-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-section-alt);
  border-radius: var(--radius-md);
}
.training-modal-info-card small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.training-modal-info-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}
.training-modal-section {
  margin-bottom: 24px;
}
.training-modal-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.training-modal-modules {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.training-modal-module {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.training-modal-module span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(74, 108, 247, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}
.training-modal-module p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.5;
  padding-top: 4px;
}
.training-modal-instructor {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.training-modal-instructor img {
  border-radius: 50%;
  object-fit: cover;
}
.training-modal-instructor strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.training-modal-instructor p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.training-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.training-modal-list li {
  font-size: 0.85rem;
  color: var(--text-primary);
  padding-left: 18px;
  position: relative;
}
.training-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
.training-modal-cert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.training-modal-cert-header h4 {
  margin: 0;
}
.training-modal-cert-header img {
  opacity: 0.8;
}
.training-modal-cta {
  margin-top: 28px;
  padding-bottom: 8px;
}
.training-modal-cta .btn-primary {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* Close button on training modals - sobre o banner "Em Breve" (modal card-1) */
.training-modal-content .modal-close-btn {
  background: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  font-size: 20px;
  z-index: 10;
}
.training-modal-content .modal-close-btn:hover {
  background: rgba(255,255,255,0.35);
  color: #fff;
}
/* Modais sem banner (card2, card3, card4): botão visível sobre fundo branco */
#training-modal-card2 .modal-close-btn,
#training-modal-card3 .modal-close-btn,
#training-modal-card4 .modal-close-btn {
  background: rgba(0,0,0,0.07);
  color: var(--primary);
  border: 1px solid rgba(0,0,0,0.12);
  top: 16px;
  right: 16px;
}
#training-modal-card2 .modal-close-btn:hover,
#training-modal-card3 .modal-close-btn:hover,
#training-modal-card4 .modal-close-btn:hover {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}
@media (max-width: 768px) {
  .training-modal-body {
    padding: 28px 20px 40px;
  }
  .training-modal-info-cards {
    grid-template-columns: 1fr;
  }
}

/* ======================= QUIZ FULLSCREEN MODAL ======================= */
.quiz-fullscreen-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}
.quiz-fullscreen-overlay.show {
  display: flex;
}
.quiz-fullscreen {
  display: flex;
  width: 100%;
  height: 100%;
  animation: quizFadeIn 0.4s var(--ease-out) both;
}

/* Sidebar */
.quiz-fs-sidebar {
  width: 320px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--primary) 0%, #050d3d 50%, #0a0e2a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.quiz-fs-sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(74,108,247,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.quiz-fs-sidebar-content {
  position: relative;
  z-index: 1;
}
.quiz-fs-logo {
  margin-bottom: 48px;
}
.quiz-fs-logo img {
  height: 32px;
  width: auto;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}
.quiz-fs-sidebar-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 12px;
}
.quiz-fs-sidebar-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0 0 40px;
}

/* Sidebar Steps */
.quiz-fs-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quiz-fs-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease-out);
  cursor: default;
}
.quiz-fs-step.active {
  background: rgba(74,108,247,0.18);
}
.quiz-fs-step.done {
  opacity: 0.6;
}
.quiz-fs-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out);
  border: 2px solid transparent;
}
.quiz-fs-step.active .quiz-fs-step-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(74,108,247,0.4);
}
.quiz-fs-step.done .quiz-fs-step-num {
  background: rgba(16,185,129,0.2);
  color: #10b981;
  border-color: rgba(16,185,129,0.3);
}
.quiz-fs-step-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  transition: color 0.3s;
}
.quiz-fs-step.active .quiz-fs-step-label {
  color: #fff;
}
.quiz-fs-step.done .quiz-fs-step-label {
  color: rgba(255,255,255,0.5);
}
.quiz-fs-step-result .quiz-fs-step-num {
  background: transparent;
  border: 2px dashed rgba(255,255,255,0.15);
}
.quiz-fs-step-result .quiz-fs-step-num svg {
  opacity: 0.5;
}
.quiz-fs-step-result.active .quiz-fs-step-num {
  background: linear-gradient(135deg, var(--accent), #001371);
  border: none;
  box-shadow: 0 0 24px rgba(26,74,196,0.4);
}
.quiz-fs-step-result.active .quiz-fs-step-num svg {
  opacity: 1;
  color: #fff;
}

.quiz-fs-sidebar-footer {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Main Area */
.quiz-fs-main {
  flex: 1;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.quiz-fs-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card-bg-solid);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.quiz-fs-close:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  transform: scale(1.05);
}
.quiz-fs-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  overflow-y: auto;
}
.quiz-fs-body.quiz-active {
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 80px;
}

/* Mobile: hide sidebar, show as header */
@media (max-width: 900px) {
  .quiz-fullscreen {
    flex-direction: column;
  }
  .quiz-fs-sidebar {
    width: 100%;
    flex-shrink: 0;
    padding: 20px 24px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .quiz-fs-sidebar::before { display: none; }
  .quiz-fs-sidebar-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
  }
  .quiz-fs-logo { margin-bottom: 0; }
  .quiz-fs-logo img { height: 24px; }
  .quiz-fs-sidebar-info { display: none; }
  .quiz-fs-steps { display: none; }
  .quiz-fs-sidebar-footer { display: none; }
  .quiz-fs-sidebar-title { display: none; }
  .quiz-fs-sidebar-desc { display: none; }
  .quiz-fs-body {
    padding: 40px 24px;
  }
  .quiz-fs-body.quiz-active {
    padding-top: 40px;
  }
  .quiz-fs-close {
    top: 12px;
    right: 12px;
  }
}
@media (max-width: 480px) {
  .quiz-fs-sidebar {
    padding: 14px 16px;
  }
  .quiz-fs-body {
    padding: 28px 18px;
  }
  .quiz-fs-body.quiz-active {
    padding-top: 28px;
  }
}

@keyframes quizFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ======================= QUIZ INTERATIVO (dentro do fullscreen) ======================= */

/* --- Quiz Content Container --- */
.quiz-content-wrap {
  width: 100%;
  max-width: 620px;
}

/* --- Question Step --- */
.quiz-step {
  animation: quizSlideInRight 0.35s var(--ease-out) both;
}
.quiz-step.quiz-back {
  animation: quizSlideInLeft 0.35s var(--ease-out) both;
}
.quiz-step-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.quiz-question {
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 32px;
  line-height: 1.35;
}

/* --- Option Buttons --- */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: var(--card-bg-solid);
  border: 2px solid var(--card-border);
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.quiz-option:hover {
  border-color: var(--accent);
  background: rgba(74,108,247,0.03);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(74,108,247,0.12);
}
.quiz-option.selected {
  border-color: var(--accent);
  background: rgba(74,108,247,0.06);
  box-shadow: 0 0 0 4px rgba(74,108,247,0.12), 0 8px 30px rgba(74,108,247,0.1);
  pointer-events: none;
}
.quiz-option-letter {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-tertiary);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-out);
}
.quiz-option:hover .quiz-option-letter {
  background: rgba(74,108,247,0.1);
  color: var(--accent);
}
.quiz-option.selected .quiz-option-letter {
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
}
.quiz-option-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
  font-weight: 500;
}
.quiz-option-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s var(--ease-out);
  color: var(--accent);
}
.quiz-option.selected .quiz-option-check {
  opacity: 1;
  transform: scale(1);
}

/* --- Navigation --- */
.quiz-nav {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
  padding-top: 16px;
}
.quiz-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  padding: 8px 4px;
}
.quiz-back-btn:hover {
  color: var(--accent);
  transform: translateX(-3px);
}

/* --- Result Screen --- */
.quiz-result {
  animation: fadeInUp 0.5s var(--ease-out) both;
}
.quiz-result-intro {
  margin-bottom: 28px;
  animation: fadeInUp 0.4s var(--ease-out) both;
}
.quiz-result-icon {
  width: 52px;
  height: 52px;
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--accent), #001371);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: scaleIn 0.5s var(--ease-spring);
}
.quiz-result-greeting {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.quiz-result-greeting strong {
  color: var(--text-primary);
  font-weight: 700;
}
.quiz-result-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--card-border);
  text-align: left;
  animation: fadeInUp 0.5s var(--ease-out) 0.15s both;
}
.quiz-result-course-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.quiz-result-course-name {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
  line-height: 1.3;
}
.quiz-result-course-subtitle {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 22px;
}
.quiz-result-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.quiz-result-info-item {
  padding: 14px 16px;
  background: var(--card-bg-solid);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
}
.quiz-result-info-item small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  font-weight: 600;
}
.quiz-result-info-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}
.quiz-result-why {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--card-border);
}
.quiz-result-why-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quiz-result-reason {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 18px;
}
.quiz-result-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-result-highlights li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
}
.quiz-result-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #10b981;
  font-size: 0.9rem;
}
.quiz-result-actions {
  margin-top: 28px;
  animation: fadeInUp 0.5s var(--ease-out) 0.3s both;
}
.quiz-result-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.quiz-result-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.quiz-link-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: inherit;
  padding: 4px 2px;
  transition: color 0.2s;
}
.quiz-link-btn:hover {
  color: var(--primary);
}
.quiz-sep {
  color: var(--text-muted);
  opacity: 0.3;
  font-size: 0.8rem;
}

/* --- Quiz Animations --- */
@keyframes quizSlideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes quizSlideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* --- Quiz Content Responsive --- */
@media (max-width: 768px) {
  .quiz-question {
    font-size: 1.15rem;
    margin-bottom: 24px;
  }
  .quiz-option {
    padding: 14px 16px;
    gap: 12px;
  }
  .quiz-option-letter {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.78rem;
  }
  .quiz-result-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .quiz-result-card {
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .quiz-option-letter {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }
  .quiz-option {
    padding: 12px 14px;
  }
  .quiz-result-info-grid {
    grid-template-columns: 1fr;
  }
  .quiz-result-secondary {
    flex-direction: column;
    gap: 8px;
  }
  .quiz-sep {
    display: none;
  }
  .quiz-result-card {
    padding: 18px 14px;
  }
  .quiz-result-course-name {
    font-size: 1.1rem;
  }
}

/* ======================= MODAL CLASSES (HTML actual classes) ======================= */
/* The HTML uses modal-content/modal-close-btn/modal-equipe-* classes */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: var(--card-bg-solid);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--card-border);
  animation: modalSlideIn 0.4s var(--ease-out);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  transition: all var(--transition-fast);
  z-index: 2;
  cursor: pointer;
  border: none;
}

.modal-close-btn:hover {
  background: var(--accent-secondary);
  color: #fff;
}

.equipe-modal-content {
  overflow: hidden;
  padding: 0;
}
.modal-equipe-body {
  text-align: center;
  padding: 48px;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.modal-equipe-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid var(--accent-secondary);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.modal-equipe-name {
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.modal-equipe-desc-curta {
  font-size: var(--font-sm);
  color: var(--accent-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.modal-equipe-full-desc {
  text-align: left;
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.modal-equipe-full-desc p {
  margin-bottom: 12px;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.bullet-list li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Ploomes modal specific - wider + highest z-index + force show */
#ploomes-modal-overlay {
  z-index: 10005 !important;
}
#ploomes-modal-overlay.show {
  display: flex !important;
}
#ploomes-modal-overlay .modal-content {
  max-width: 700px;
  padding: 0;
  overflow: hidden;
}

.modal-iframe-container {
  width: 100%;
}

.modal-iframe {
  width: 100%;
  height: 70vh;
  border: none;
  display: block;
}

/* Modal responsive */
@media (max-width: 480px) {
  .modal-content { padding: 32px 24px; }
  .modal-content.training-modal-content { padding: 0 !important; }
  #ploomes-modal-overlay .modal-content { padding: 0; }
}

/* ======================= MAPA 2D SECTION ======================= */
.mapa2d-section {
  background: var(--bg-secondary);
  text-align: center;
}

.mapa2d-section .tag-mapa2d {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(74, 108, 247, 0.08);
  border: 1px solid rgba(74, 108, 247, 0.18);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.mapa2d-section .tag-mapa2d img {
  width: 18px;
  height: 18px;
}

.titulo-mapa2d {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.desc-mapa2d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto 40px;
}

.mapa2d-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.mapa2d-container {
  width: 100%;
  aspect-ratio: 2 / 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-tertiary);
  border: 1px solid var(--card-border);
}

.mapa2d-container svg {
  width: 100%;
  height: 100%;
}

.mapa2d-container svg path {
  stroke: #cbd5e1;
  stroke-width: 0.5;
  transition: fill 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
  cursor: default;
}

.mapa2d-container svg path.mapa2d-active {
  cursor: pointer;
  filter: drop-shadow(0 0 6px rgba(74, 108, 247, 0.3));
  stroke: #fff;
  stroke-width: 1;
}

.mapa2d-container svg path.mapa2d-active:hover {
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(74, 108, 247, 0.5));
}

.mapa2d-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.mapa2d-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--card-bg-solid);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mapa2d-legend-item:hover {
  border-color: rgba(74, 108, 247, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.mapa2d-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mapa2d-legend {
    gap: 12px;
  }
  .mapa2d-legend-item {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

/* Hidden utility */
.hidden { display: none !important; }

/* ================================================================
   SINGLE-COURSE LP — NOVAS SEÇÕES
   ================================================================ */

/* ---- Urgency Bar ---- */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 48px 0 16px;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.3s ease;
}
.urgency-bar.dismissed {
  transform: translateY(-100%);
}
.urgency-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
  padding: 6px 0;
}
.urgency-bar-icon { font-size: 1rem; }
.urgency-bar-text {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.urgency-bar-link {
  color: var(--accent-light, #a0b4ff);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.urgency-bar-link:hover { opacity: 0.8; text-decoration: underline; }
.urgency-bar-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s;
}
.urgency-bar-close:hover { color: #fff; }
body.urgency-bar-visible .menu {
  top: 44px;
}
@media (max-width: 600px) {
  .urgency-bar-text { font-size: 0.74rem; }
}

/* ---- Hero secondary link & proof pills ---- */
.hero-btn-secondary {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.hero-btn-secondary:hover { color: #fff; }
.hero-btn-secondary .arrow { display: inline-block; transition: transform 0.25s ease; }
.hero-btn-secondary:hover .arrow { transform: translateX(4px); }
.hero-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 5px 14px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-pill svg { flex-shrink: 0; color: #6ddf9a; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--bg-secondary, #f4f6fb);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 28px 0;
}
.trust-bar-inner,
.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 16px;
  gap: 4px;
}
.trust-bar-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
  flex-shrink: 0;
}
.trust-bar-number {
  font-family: 'Blauer', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.trust-bar-label {
  font-size: 0.78rem;
  color: var(--text-muted, #666);
  font-weight: 500;
  line-height: 1.3;
}
.trust-bar-instructor {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-bar-instructor img,
.trust-bar-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.trust-bar-instructor-info {
  text-align: left;
}
.trust-bar-instructor-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary);
  display: block;
}
.trust-bar-instructor-role {
  font-size: 0.72rem;
  color: var(--text-muted, #666);
}
@media (max-width: 768px) {
  .trust-bar-inner,
  .trust-bar-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
  }
  .trust-bar-divider { display: none; }
  .trust-bar-item { padding: 0; }
  .trust-bar-instructor { justify-content: center; }
}

/* ---- Para Quem É — compact strip ---- */
.for-who-section {
  padding: 36px 0;
  background: var(--bg-hero);
  text-align: center;
}
.for-who-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.for-who-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 20px 18px;
  text-align: center;
}
.for-who-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
}
.for-who-card span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .for-who-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ---- E-book Section ---- */
.ebook-section {
  padding: var(--space-5xl, 80px) 0;
  background: var(--bg-hero);
}
.ebook-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.ebook-mockup { display: flex; justify-content: center; }
.ebook-cover {
  width: 220px;
  height: 310px;
  background: linear-gradient(160deg, #001371 0%, #1a4ac4 100%);
  border-radius: 8px 16px 16px 8px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.4), -4px 0 0 rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}
.ebook-cover-inner {
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ebook-cover-brand {
  font-size: 7pt;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-bottom: auto;
}
.ebook-cover-tag {
  font-size: 7pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
}
.ebook-cover-title {
  font-family: 'Blauer', sans-serif;
  font-size: 18pt;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}
.ebook-cover-sub {
  font-size: 8pt;
  color: #7db4ff;
  font-weight: 500;
}
.ebook-text .tag-cs {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.ebook-text .tag-cs svg { stroke: #fff; }
.ebook-title {
  font-family: 'Blauer', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 12px 0 16px;
}
.ebook-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.ebook-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ebook-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
}
.ebook-highlights img { filter: brightness(1.5) hue-rotate(40deg); flex-shrink: 0; }
.ebook-btn {
  display: inline-flex !important;
  text-decoration: none;
}
@media (max-width: 900px) {
  .ebook-layout { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .ebook-highlights { align-items: center; }
  .ebook-btn { justify-content: center; }
}

/* ---- Instructor Section ---- */
.instructor-section {
  padding: var(--space-5xl, 80px) 0;
  background: var(--bg-hero);
}
.instructor-section .tag-cs {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.instructor-section .tag-cs img {
  filter: brightness(0) invert(1);
}
.instructor-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}
.instructor-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl, 24px);
  border: 3px solid var(--accent, #4a6cf7);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.instructor-name {
  font-family: 'Blauer', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0.5rem 0 0.25rem;
}
.instructor-title {
  color: var(--accent-light, #a0b4ff);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.instructor-credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.instructor-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  line-height: 1.4;
}
.instructor-credentials img { flex-shrink: 0; margin-top: 2px; filter: brightness(1.5) hue-rotate(40deg); }
.instructor-quote {
  background: rgba(255,255,255,0.07);
  border-left: none;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 0 0 1.5rem;
}
.instructor-quote p {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 8px;
}
.instructor-quote cite {
  color: var(--accent-light, #a0b4ff);
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
@media (max-width: 900px) {
  .instructor-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .instructor-photo {
    max-width: 220px;
    margin: 0 auto;
  }
  .instructor-credentials li { text-align: left; }
  .instructor-quote { text-align: left; }
}

/* ---- Por Que Agora / Urgency Section ---- */
.urgency-section {
  padding: var(--space-5xl, 80px) 0;
  background: var(--bg-hero);
}
.urgency-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.urgency-title {
  font-family: 'Blauer', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0.75rem 0 1rem;
  line-height: 1.15;
}
.urgency-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.urgency-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.urgency-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.urgency-stat-number {
  font-family: 'Blauer', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.urgency-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.urgency-comparison {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
}
.urgency-comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.08);
  padding: 12px 20px;
  gap: 16px;
}
.urgency-comp-col-before,
.urgency-comp-col-after {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.urgency-comp-col-before { color: rgba(255,255,255,0.5); }
.urgency-comp-col-after { color: #6ddf9a; }
.urgency-comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 20px;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.urgency-comp-item {
  font-size: 0.85rem;
  line-height: 1.4;
}
.urgency-comp-item.before {
  color: rgba(255,255,255,0.7);
}
.urgency-comp-item.after {
  color: #6ddf9a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.comp-check {
  flex-shrink: 0;
  stroke: #6ddf9a;
}
@media (max-width: 900px) {
  .urgency-layout { grid-template-columns: 1fr; gap: 32px; }
  .urgency-comp-row { grid-template-columns: 1fr; gap: 8px; }
  .urgency-comp-header { grid-template-columns: 1fr; }
  .urgency-comp-col-after { display: none; }
}


/* ---- Enrollment Section ---- */
.enrollment-section {
  padding: var(--space-5xl, 80px) 0;
  background: var(--bg-secondary, #f4f6fb);
}
.enrollment-card {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-xl, 24px);
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(1,16,114,0.15);
}
.enrollment-header {
  background: var(--primary);
  padding: 36px 40px 28px;
}
.enrollment-title {
  font-family: 'Blauer', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.enrollment-body {
  background: #fff;
  padding: 32px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.enrollment-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--card-border);
}
.enrollment-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.enrollment-meta-label {
  font-size: 0.72rem;
  color: var(--text-muted, #888);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.enrollment-meta-value {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
}
.enrollment-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enrollment-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.enrollment-includes img { flex-shrink: 0; margin-top: 2px; }
.enrollment-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.enrollment-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #128c2e;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 12px 20px;
  border: 2px solid #25d366;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.enrollment-whatsapp img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(94%) saturate(1064%) hue-rotate(117deg) brightness(92%) contrast(93%);
}
.enrollment-whatsapp:hover { background: #f0fff4; }
.enrollment-risk {
  font-size: 0.8rem;
  color: var(--text-muted, #888);
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .enrollment-header { padding: 28px 24px 20px; }
  .enrollment-body { padding: 24px 24px 28px; }
  .enrollment-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .enrollment-cta-group { flex-direction: column; align-items: stretch; }
  .enrollment-whatsapp { justify-content: center; }
}
@media (max-width: 480px) {
  .enrollment-header { padding: 22px 18px 16px; }
  .enrollment-body { padding: 18px 18px 22px; }
  .enrollment-meta-grid { grid-template-columns: 1fr; gap: 10px; }
  .enrollment-meta-item { flex-direction: row; align-items: center; gap: 12px; text-align: left; }
  .enrollment-includes li { font-size: 0.88rem; }
  .btn-primary { font-size: 0.95rem; padding: 14px 20px; }
}
/* ---- Instructor mobile fine-tuning ---- */
@media (max-width: 480px) {
  .instructor-section { padding: 56px 0; }
  .instructor-photo { max-width: 180px; }
  .instructor-credentials { font-size: 0.9rem; }
  .instructor-quote { font-size: 0.9rem; padding: 16px 18px; }
}
/* ---- Urgency section mobile fine-tuning ---- */
@media (max-width: 480px) {
  .urgency-section { padding: 56px 0; }
  .urgency-stats { gap: 16px; }
  .urgency-stat-number { font-size: 1.4rem; }
  .urgency-comp-table { font-size: 0.82rem; }
}

/* ---- Mapa section copy update ---- */
.titulo-mapa {
  font-family: 'Blauer', sans-serif;
  font-weight: 700;
}

/* ======================= REDUCED MOTION ======================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .whatsapp-fab-pulse { display: none; }
  .preloader-line { width: 120px !important; }
  .hero-image-border { transform: none !important; }
}

/* ======================= SKIP LINK ======================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100000;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ======================= SR-ONLY (acessibilidade) ======================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ======================= CONTENT VISIBILITY ======================= */
/* Defer rendering of off-screen sections for better INP/LCP */
.instructor-section,
.mapa-section,
.sessao-depoimentos,
.ebook-section,
.sessao-faq,
.urgency-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* Isolate heavy components to avoid layout thrashing */
.modulo-card,
.s5-card,
.globe-container,
.quiz-fullscreen,
.training-modal-content,
.cookie-modal-content {
  contain: layout style paint;
}

