:root {
  --blue-900: #0A1929;
  --blue-800: #1E3A5F;
  --blue-700: #2563EB;
  --blue-600: #3B82F6;
  --blue-500: #60A5FA;
  --blue-100: #DBEAFE;
  --slate-900: #1E293B;
  --slate-700: #475569;
  --slate-200: #E2E8F0;
  --orange-500: #F97316;
  --amber-400: #FBBF24;
  --green-500: #10B981;
  --white: #FFFFFF;
  --gradient-hero: linear-gradient(135deg, #0A1929 0%, #1E3A5F 50%, #2563EB 100%);
  --gradient-card: linear-gradient(145deg, #1E3A5F 0%, #0A1929 100%);
  --gradient-cta: linear-gradient(90deg, #F97316 0%, #FBBF24 100%);
  --shadow-soft: 0 20px 50px rgba(10, 25, 41, 0.25);
  --shadow-strong: 0 24px 70px rgba(10, 25, 41, 0.4);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
  color: var(--slate-900);
  background: #f7f9fc;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

[data-split] {
  white-space: pre-wrap;
}

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

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

:focus-visible {
  outline: 2px solid var(--amber-400);
  outline-offset: 2px;
}

button {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--amber-400);
  color: #111827;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section.alt {
  background: var(--blue-100);
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
  position: relative;
}

.section-header h2 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 12px;
}

.section-header p {
  margin: 0;
  color: var(--slate-700);
}

.section.hero .section-header p {
  color: var(--white);
}

.section-header::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3B82F6, #FBBF24);
}

.section ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--slate-700);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.badge.orange {
  background: var(--orange-500);
  color: var(--white);
}

.pulse {
  animation: pulse 6s ease-in-out infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}

.btn.primary {
  background: var(--gradient-cta);
  color: #111827;
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.35);
}

.btn.primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 50px rgba(249, 115, 22, 0.45);
}

.btn.secondary {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-700);
}

.btn.secondary:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-3px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.top-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #3B82F6, #60A5FA);
  z-index: 9999;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 25, 41, 0.92);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  will-change: transform;
}

header.site-header.shrink {
  background: rgba(10, 25, 41, 0.98);
  box-shadow: 0 10px 30px rgba(10, 25, 41, 0.35);
}

header.site-header.hide {
  transform: translateY(-110%);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0;
  color: var(--white);
  gap: 20px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nowrap {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 16px;
  flex: 0 1 auto;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue-500);
  transition: var(--transition);
}

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

.nav-cta {
  margin-left: auto;
  flex: 0 0 auto;
}

.nav-cta .btn {
  padding: 10px 18px;
  font-size: 14px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--white);
  margin: 6px auto;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: rgba(10, 25, 41, 0.98);
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition);
  z-index: 999;
  box-shadow: -20px 0 40px rgba(10, 25, 41, 0.4);
}

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

.mobile-drawer a {
  color: var(--white);
  font-weight: 600;
  padding: 8px 0;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 41, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
}

.mobile-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--white);
  padding: 48px 0 40px;
  overflow: hidden;
}

.hero.has-bg {
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 12% 18%, rgba(96, 165, 250, 0.25) 0, transparent 40%),
    radial-gradient(circle at 85% 8%, rgba(59, 130, 246, 0.2) 0, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(37, 99, 235, 0.2) 0, transparent 55%);
  animation: gradientShift 28s linear infinite;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: stretch;
}

.hero-content h1 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.15;
  margin: 8px 0 14px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: wordReveal 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: calc(var(--word-index) * 0.06s);
  will-change: transform, opacity;
}

.title-break {
  display: block;
  white-space: nowrap;
}

.gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #60A5FA 45%, #FBBF24 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
}

.hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.hero-metric {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-metric strong {
  display: block;
  font-size: 24px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.hero-metric span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

.hero-content {
  transform: translateY(-14px);
}

.hero-actions .btn {
  padding: 14px 24px;
  font-size: 15px;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.hero-card.clean-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  height: 500px;
  width: 100%;
  overflow: visible;
}

.hero-panel {
  background: rgba(10, 25, 41, 0.55);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-panel.clean-panel {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.hero-stack {
  display: grid;
  gap: 16px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
}

.glass-card h3 {
  margin: 0 0 6px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.glass-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.ticker {
  margin-top: 24px;
  background: rgba(10, 25, 41, 0.7);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  padding: 10px 16px;
  white-space: nowrap;
  width: max-content;
  animation: tickerMove 50s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.ticker-group {
  display: inline-flex;
  gap: 48px;
}

.ticker span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-card img {
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(10, 25, 41, 0.35);
}

.hero-card.clean-card img {
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portrait {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.hero-visual {
  object-fit: contain;
  object-position: right center;
  max-height: 500px;
  transform: translate(24px, -4px) scale(1.20);
}

.profile-shot {
  max-width: none;
  margin-left: auto;
  overflow: visible;
}

.profile-shot img {
  transform-origin: center right;
}

.profile-shot .portrait {
  height: 460px;
}

/* Destaque do bloco Leonardo */
.profile-highlight h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-bottom: 10px;
}

.profile-highlight p {
  font-size: 18px;
  line-height: 1.7;
}

.profile-highlight .card-grid {
  gap: 20px;
}

.profile-highlight .card h3 {
  font-size: 18px;
}

.profile-highlight .card p {
  font-size: 16px;
}

.why-box {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 58, 95, 0.7));
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 18px 40px rgba(10, 25, 41, 0.25);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 170px;
}

.why-section {
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.62), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.plain-photo {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  width: 200%;
  height: auto;
  max-width: none;
  transform: translateZ(0) scale(2.5) translateX(-220%);
}

.photo-caption {
  margin-top: 10px;
  color: var(--slate-300);
  font-size: 14px;
}

.hero-card .floating {
  position: absolute;
  right: -10px;
  top: -20px;
  background: var(--orange-500);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  animation: none;
}

.popout {
  position: relative;
  z-index: 2;
  transform: translateZ(0) scale(1.02);
  filter: drop-shadow(0 18px 30px rgba(10, 25, 41, 0.45));
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0.35;
  background: radial-gradient(circle, rgba(96,165,250,0.9), rgba(37,99,235,0.1));
  animation: float 8s ease-in-out infinite;
}

.orb.one { top: -60px; left: 8%; }
.orb.two { bottom: -80px; right: 10%; animation-delay: 2s; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card.dark {
  background: var(--gradient-card);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card.dark ul,
.card.dark li {
  color: var(--white);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(37, 99, 235, 0.4);
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-700);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.card:hover .icon {
  transform: rotate(12deg) scale(1.05);
}

.card.dark .icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--blue-500);
}

.card h3 {
  margin: 0 0 10px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--slate-700);
}

.card.dark p {
  color: rgba(255, 255, 255, 0.8);
}

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

.timeline-card {
  background: var(--gradient-card);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--gradient-cta);
}

.timeline-card h3 {
  margin: 0 0 8px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.timeline-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

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

.stat {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
  display: block;
  font-size: 32px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.stat span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 20px;
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(59,130,246,0.9), rgba(96,165,250,0.15));
}

.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(10px);
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  margin-top: 4px;
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.2), 0 6px 18px rgba(249, 115, 22, 0.25);
}

.accordion {
  display: grid;
  gap: 16px;
}

.accordion-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.accordion-item button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.accordion-item button span {
  font-size: 18px;
  transition: var(--transition);
}

.accordion-item .content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height var(--transition);
}

.accordion-item.open .content {
  padding: 0 20px 20px;
}

.accordion-item.open button span {
  transform: rotate(180deg);
}

.progress-bar {
  height: 6px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient-cta);
  transition: width 1.2s ease;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.square-crop-bottom {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center bottom;
}

.deep-crop {
  object-position: center bottom;
}

.card-image {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 12px 24px rgba(10, 25, 41, 0.2);
}

.media-card:hover img {
  transform: scale(1.06);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 41, 0.45);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  opacity: 0;
  transition: var(--transition);
}

.media-card:hover .media-overlay {
  opacity: 1;
}

.ticker-wrap {
  margin-top: 28px;
  background: rgba(10, 25, 41, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 16px;
  overflow: hidden;
  padding: 12px 0;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  padding-right: 40px;
  will-change: transform;
  animation: ticker-scroll 30s linear infinite;
  animation-play-state: running;
  color: #e2e8f0;
  font-weight: 600;
}

.ticker-track span::before {
  content: "•";
  color: #60a5fa;
  margin-right: 10px;
}

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

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

.form-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.qr-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: var(--transition);
}

.qr-link img {
  width: min(320px, 80vw);
  height: auto;
  display: block;
}

.qr-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
}

.field {
  position: relative;
  margin-bottom: 18px;
}

.field label {
  position: absolute;
  left: 14px;
  top: 12px;
  font-size: 14px;
  color: var(--slate-700);
  background: var(--white);
  padding: 0 6px;
  transition: var(--transition);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.field.filled label,
.field input:focus + label,
.field textarea:focus + label,
.field select:focus + label {
  top: -8px;
  font-size: 12px;
  color: var(--blue-700);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
}

.form-success {
  display: none;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 14px;
  border-radius: 12px;
  color: #065f46;
  font-weight: 600;
  align-items: center;
  gap: 10px;
}

.form-success.show {
  display: flex;
}

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

.contact-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.4);
}

.footer {
  background: var(--blue-900);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 12px;
  object-fit: contain;
}

.footer h4 {
  margin: 0 0 12px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 6px;
}

.footer small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
}

.back-to-top,
.whatsapp-float {
  position: fixed;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  z-index: 900;
}

.back-to-top {
  bottom: 24px;
  background: var(--blue-700);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: rotate(15deg);
}

.whatsapp-float {
  bottom: 84px;
  background: #25D366;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
  animation: pulse 5s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.logo-pill {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.page-hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 90px 0 60px;
  position: relative;
}

.page-hero.has-bg {
  background-size: cover;
  background-position: center;
}

.page-hero.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 25, 41, 0.88), rgba(10, 25, 41, 0.68));
}

.page-hero.has-bg .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 10px;
}

.page-hero p {
  margin: 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.glossary {
  display: grid;
  gap: 12px;
}

.glossary-item {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.glossary-item button {
  border: none;
  background: var(--blue-700);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: none;
  place-items: center;
  backdrop-filter: blur(6px);
  z-index: 1001;
}

.modal.show {
  display: grid;
}

.modal-content {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  width: min(90%, 500px);
}

.search-bar {
  display: flex;
  gap: 12px;
  background: var(--white);
  border-radius: 999px;
  padding: 8px;
  border: 1px solid var(--slate-200);
}

.search-bar input {
  border: none;
  outline: none;
  flex: 1;
  padding: 8px 12px;
}

@keyframes gradientShift {
  0% { transform: translateX(0); }
  50% { transform: translateX(-6px); }
  100% { transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
}

@keyframes tickerMove {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation-duration: 60s !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
  }
}

/* Force hero image height (override) */
.hero .hero-visual {
  height: 500px !important;
  max-height: 500px !important;
}

/* Ticker final (override) */
.ticker {
  margin-top: 28px;
  background: rgba(10, 25, 41, 0.6);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 16px;
  overflow: hidden;
  padding: 12px 0;
  backdrop-filter: blur(6px);
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: tickerMove 32s linear infinite;
}

.ticker-group {
  display: inline-flex;
  gap: 48px;
  padding-left: 24px;
}

.ticker span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
