/* ===== SKIP LINK (Accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color, #ff6b35);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

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

:root {
  /* Colors - Light Theme */
  --primary-color: #ff6b35;
  --primary-dark: #e55a28;
  --primary-light: #ff8c61;
  --secondary-color: #0a4d8c;
  --secondary-light: #1a6eb8;
  --accent-blue: #0066cc;
  --accent-coral: #ff6b35;
  --text-color: #1a1a2e;
  --text-light: #4a4a5a;
  --text-muted: #6b7280;
  --white: #ffffff;
  --gray-light: #f8f9fc;
  --gray-medium: #e5e7eb;
  --gray-dark: #374151;
  --bg-section-alt: #f1f5f9;

  /* Dark theme colors */
  --dark-bg: #050b1f;
  --dark-surface: #0f172a;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --h1-size: 3.5rem;
  --h2-size: 2.5rem;
  --h3-size: 1.75rem;
  --normal-size: 1rem;
  --small-size: 0.875rem;

  /* Spacing */
  --header-height: 4rem;
  --section-padding: 5rem 0;
  --container-width: 1200px;

  /* Transitions */
  --transition: all 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--normal-size);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  padding-top: var(--header-height);
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: var(--h2-size);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section__title--white {
  color: var(--white);
}

.section__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #f09700);
  color: white;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

body[data-theme='dark'] .section__badge {
  background: linear-gradient(135deg, var(--primary-light, #ff8c61), #f09700);
}

.section__description {
  font-size: 1.125rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
}

.highlight {
  color: var(--primary-color);
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: var(--normal-size);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.button--primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f09700 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.45);
  filter: brightness(1.08);
}

.button--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.button--secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--primary-color);
}

.button--secondary:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #f09700 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
  transform: translateY(-3px);
}

.button--outline {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
}

.button--outline:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(10, 77, 140, 0.35);
  transform: translateY(-3px);
}

.button--large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.nav__logo {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.nav__logo:hover {
  transform: scale(1.02);
}

.nav__logo-icon {
  height: 42px;
  width: auto;
  transition: var(--transition);
}

.nav__logo-img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

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

.nav__logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: -0.02em;
}

.nav__logo-pro {
  color: var(--primary-color);
  font-weight: 800;
}

.logo-text {
  color: var(--secondary-color);
}

.logo-pro {
  color: var(--primary-color);
}

.nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.nav__btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background-color: var(--gray-light);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.theme-toggle__option {
  border: none;
  background: transparent;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle__option.is-active {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.theme-toggle__option:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 70% 10%, rgba(255, 107, 53, 0.12), transparent 50%),
    radial-gradient(ellipse at 30% 90%, rgba(10, 77, 140, 0.1), transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.04), transparent 70%),
    linear-gradient(160deg, #f0f4f8 0%, #ffffff 40%, #fef7f3 70%, #f0f4f8 100%);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__title {
  font-size: var(--h1-size);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  letter-spacing: -0.02em;
}

.hero__title .highlight {
  background: linear-gradient(135deg, #ff6b35 0%, #f09700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__description strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__illustration {
  position: relative;
  width: 100%;
  height: 620px;
}

/* City Canvas Animation */
.city-canvas {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 60%, #334155 100%);
  box-shadow:
    0 25px 60px rgba(10, 77, 140, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.1);
}

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

/* ===== TRUST SEALS (Logo Bar / Marquee) ===== */
.trust-seals {
  padding: 2.5rem 0;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
  background: linear-gradient(180deg, #f8f9fc, #ffffff, #f8f9fc);
}

.trust-seals__track {
  display: flex;
  width: fit-content;
  animation: marquee 35s linear infinite;
}

.trust-seals__track:hover {
  animation-play-state: paused;
}

.trust-seals__list {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 5rem;
  padding: 0 2.5rem;
}

.trust-seal {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.75rem;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: default;
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-seal:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.2);
}

.trust-seal__icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.trust-seal__text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(10, 77, 140, 0.04), transparent 50%),
    linear-gradient(180deg, #f8f9fc 0%, #ffffff 50%, #f8f9fc 100%);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.about__paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.about__founder {
  background: linear-gradient(135deg, #ff6b35 0%, #f09700 100%);
  padding: 2.5rem;
  border-radius: 20px;
  color: var(--white);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

.founder__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.founder__title {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.founder__description {
  line-height: 1.6;
  opacity: 0.95;
}

.governance__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.governance__item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.governance__item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 107, 53, 0.15);
}

.governance__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.governance__text h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.governance__text p {
  color: var(--text-color);
  line-height: 1.6;
  opacity: 0.8;
}

/* ===== NUMBERS SECTION ===== */
.numbers {
  background: linear-gradient(135deg, #0a2540 0%, var(--secondary-color) 50%, #0d1b2a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 70%);
  pointer-events: none;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.number__card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.number__card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.number__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.number__value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b35 0%, #f09700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.number__label {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.5;
}

.governance-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ===== PRESS SECTION ===== */
.press {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  padding: 4rem 0;
}

.press__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: center;
}

.press__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 120px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.press__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 107, 53, 0.15);
}

.press__logo {
  max-width: 180px;
  max-height: 60px;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: var(--transition);
}

.press__item:hover .press__logo {
  opacity: 1;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255, 107, 53, 0.05), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(10, 77, 140, 0.04), transparent 50%),
    linear-gradient(180deg, #f8f9fc 0%, #ffffff 50%, #f8f9fc 100%);
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.solution__card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.solution__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff6b35, #f09700);
  border-radius: 20px 0 0 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.solution__card:hover::before {
  opacity: 1;
}

.solution__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(10, 77, 140, 0.06));
  border-radius: 16px;
}

.solution__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.solution__description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.solution__card--highlight {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 107, 53, 0.08) 100%);
  display: flex;
  flex-direction: column;
}

.solution__card--highlight::before {
  opacity: 1;
}

.solution__card--highlight .button {
  margin-top: auto;
  align-self: flex-start;
}

/* Solutions Banner */
.solutions__banner {
  margin-top: 4rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(10, 77, 140, 0.04), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit__card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--secondary-color);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.benefit__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f09700);
}

.benefit__card:nth-child(2)::before {
  background: linear-gradient(90deg, #0a4d8c, #1a6eb8);
}

.benefit__card:nth-child(3)::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.benefit__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.benefit__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit__icon {
  font-size: 1.75rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(240, 151, 0, 0.08));
  border-radius: 16px;
  flex-shrink: 0;
}

.benefit__card:nth-child(2) .benefit__icon {
  background: linear-gradient(135deg, rgba(10, 77, 140, 0.1), rgba(26, 110, 184, 0.08));
}

.benefit__card:nth-child(3) .benefit__icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.08));
}

.benefit__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.benefit__list {
  list-style: none;
}

.benefit__list li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-color);
  line-height: 1.5;
}

.benefit__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ff6b35, #f09700);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== BLOG PREVIEW SECTION ===== */
.blog-preview {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-preview__card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-preview__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.blog-preview__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

.blog-preview__card:hover .blog-preview__image img {
  transform: scale(1.05);
}

.blog-preview__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-preview__badge--finance {
  background: #dcfce7;
  color: #166534;
}

.blog-preview__badge--compliance {
  background: #ede9fe;
  color: #5b21b6;
}

.blog-preview__badge--case {
  background: #fef3c7;
  color: #92400e;
}

.blog-preview__badge--tech {
  background: #dbeafe;
  color: #1e40af;
}

.blog-preview__badge--gestao {
  background: #ffedd5;
  color: #c2410c;
}

.blog-preview__body {
  padding: 1.5rem;
}

.blog-preview__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.blog-preview__title {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-preview__title a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-preview__title a:hover {
  color: var(--primary-color);
}

.blog-preview__excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.blog-preview__cta {
  text-align: center;
  margin-top: 3rem;
}

/* Dark theme */
body[data-theme='dark'] .blog-preview {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--section-bg) 100%);
}

body[data-theme='dark'] .blog-preview__card {
  background: var(--card-bg);
  border-color: var(--border-color);
}

body[data-theme='dark'] .blog-preview__title a {
  color: var(--text-color);
}

/* ===== FAQ SECTION ===== */
.faq {
  background: linear-gradient(180deg, #f8f9fc 0%, #f0f4f8 50%, #f8f9fc 100%);
}

.faq__content {
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.faq__item.active {
  border-left-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
  background: linear-gradient(to right, rgba(255, 107, 53, 0.03), transparent);
}

.faq__question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq__question:hover {
  color: var(--primary-color);
}

.faq__item.active .faq__question {
  color: var(--primary-color);
}

.faq__icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-color);
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.08);
  flex-shrink: 0;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #ff6b35, #f09700);
  color: white;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer p,
.faq__answer ul {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq__answer ul {
  list-style-position: inside;
}

.faq__answer li {
  margin: 0.5rem 0;
}

.faq__answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.faq__answer a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===== CTA BANNERS ===== */
.cta-banner {
  padding: 2.5rem 0;
  text-align: center;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-banner__text {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.cta-banner__text strong {
  font-size: 1.3rem;
}

.cta-banner__subtitle {
  color: #4a4a5a;
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

.cta-banner__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Orange variant */
.cta-banner--orange {
  background: linear-gradient(135deg, #ff6b35 0%, #f09700 100%);
}

.cta-banner--orange .cta-banner__text {
  color: white;
}

.cta-banner--orange .button--primary {
  background: white;
  color: #ff6b35;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner--orange .button--primary:hover {
  background: #f8f9fc;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  filter: none;
}

/* Navy variant */
.cta-banner--navy {
  background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
}

.cta-banner--navy .cta-banner__text {
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner--navy .cta-banner__text strong {
  color: #ff6b35;
}

.cta-banner--navy .button--outline {
  border-color: white;
  color: white;
}

/* Warm variant */
.cta-banner--warm {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.cta-banner--warm .cta-banner__text {
  color: #1e3a5f;
}

.cta-banner--warm .cta-banner__subtitle {
  color: #4a4a5a;
}

/* Dark mode overrides */
body[data-theme='dark'] .cta-banner--orange {
  background: linear-gradient(135deg, #c44d1a 0%, #b57300 100%);
}

body[data-theme='dark'] .cta-banner--warm {
  background: linear-gradient(135deg, #1a2a3a 0%, #0f1f2f 100%);
}

body[data-theme='dark'] .cta-banner--warm .cta-banner__text {
  color: #e2e8f0;
}

body[data-theme='dark'] .cta-banner--warm .cta-banner__subtitle {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .cta-banner__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-banner__text {
    font-size: 0.95rem;
  }
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(135deg, #0a2540 0%, var(--secondary-color) 50%, #0d1b2a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
  pointer-events: none;
}

.cta__content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta__description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta__buttons--contact {
  flex-direction: column;
  align-items: center;
}

.cta__phones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 640px;
}

.cta__phones .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cta .button--primary {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.cta .button--primary:hover {
  background: var(--gray-light);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
  filter: none;
}

.cta .button--secondary {
  border-color: var(--white);
  color: var(--white);
}

.cta .button--secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* ===== CTA GRID LAYOUT ===== */
.cta__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form-wrapper__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: inherit;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-form__input,
.contact-form__textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form__textarea {
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.contact-form__message {
  display: none;
  text-align: center;
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== CONTACT CHANNELS ===== */
.cta__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta__channel-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.cta__channel-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta__channel-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta__channel-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.cta__channel-link {
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.cta__channel-link:hover {
  color: var(--primary-color);
}

.cta__whatsapp-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta__whatsapp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

.cta__whatsapp-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

@media (max-width: 768px) {
  .cta__grid {
    grid-template-columns: 1fr;
  }

  .cta__channels {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta__channel-card {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 576px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .cta__channels {
    flex-direction: column;
  }

  .cta__channel-card {
    min-width: unset;
  }
}

/* ===== CROSS-LINKS (city pages) ===== */
.cross-links {
  background: var(--bg-secondary, #f8f9fa);
  padding: 3rem 0;
  border-top: 1px solid var(--border, #e0e0e0);
}

.cross-links__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary, #1a1a2e);
  margin-bottom: 1.5rem;
  text-align: center;
}

.cross-links__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cross-link__item {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--white, #fff);
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 2rem;
  color: var(--primary, #0052cc);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cross-link__item:hover {
  background: var(--primary, #0052cc);
  color: #fff;
  border-color: var(--primary, #0052cc);
}

.cross-links__all {
  text-align: center;
  font-size: 0.9rem;
}

.cross-links__all a {
  color: var(--primary, #0052cc);
  text-decoration: none;
  font-weight: 500;
}

.cross-links__all a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0a2540 0%, #061525 100%);
  color: var(--white);
  padding: 4rem 0 2rem 0;
  position: relative;
}

.footer__content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__logo {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.footer__logo:hover {
  transform: scale(1.02);
}

.footer__logo-icon {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.footer__logo-img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

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

.footer__logo-text {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.footer__logo-pro {
  color: var(--primary-color);
  font-weight: 800;
}

.footer__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

.footer__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.75rem;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer__list a:hover {
  color: var(--primary-color);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--small-size);
}

/* ===== THEME OVERRIDES ===== */
body[data-theme='dark'] {
  background-color: #050b1f;
  color: #e2e8f0;
}

body[data-theme='dark'] .theme-toggle {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body[data-theme='dark'] .theme-toggle__option {
  color: #e2e8f0;
}

body[data-theme='dark'] .theme-toggle__option.is-active {
  background: var(--primary-light);
  color: #0b1120;
}

body[data-theme='dark'] .header {
  background-color: rgba(5, 12, 28, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

body[data-theme='dark'] .nav__link {
  color: #e2e8f0;
}

body[data-theme='dark'] .nav__link:hover,
body[data-theme='dark'] .nav__link.active-link {
  color: var(--primary-light);
}

body[data-theme='dark'] .nav__link::after {
  background-color: var(--primary-light);
}

body[data-theme='dark'] .nav__menu {
  background-color: rgba(5, 11, 23, 0.98);
}

body[data-theme='dark'] .nav__toggle,
body[data-theme='dark'] .nav__close {
  color: #e2e8f0;
}

body[data-theme='dark'] .hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.25), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(0, 78, 146, 0.35), transparent 50%), #050b1f;
}

body[data-theme='dark'] .hero__title,
body[data-theme='dark'] .section__title,
body[data-theme='dark'] .section__title--white,
body[data-theme='dark'] .governance__title,
body[data-theme='dark'] .benefit__title,
body[data-theme='dark'] .solution__title {
  color: #f8fafc;
}

body[data-theme='dark'] .hero__description,
body[data-theme='dark'] .section__description,
body[data-theme='dark'] .about__paragraph,
body[data-theme='dark'] .governance__text p,
body[data-theme='dark'] .solution__description,
body[data-theme='dark'] .benefit__list li,
body[data-theme='dark'] .faq__answer p,
body[data-theme='dark'] .faq__answer ul,
body[data-theme='dark'] .cta__description {
  color: #cbd5f5;
}

body[data-theme='dark'] .about,
body[data-theme='dark'] .solutions,
body[data-theme='dark'] .benefits,
body[data-theme='dark'] .faq,
body[data-theme='dark'] .specialists {
  background: #050b1f;
}

body[data-theme='dark'] .press {
  background: #0a0f1f;
}

body[data-theme='dark'] .numbers {
  background: radial-gradient(circle at top, #122243 0%, #050814 100%);
}

body[data-theme='dark'] .cta {
  background: linear-gradient(135deg, #09132b 0%, #040912 100%);
}

body[data-theme='dark'] .solution__card,
body[data-theme='dark'] .benefit__card,
body[data-theme='dark'] .faq__item,
body[data-theme='dark'] .governance__item,
body[data-theme='dark'] .floating-card,
body[data-theme='dark'] .number__card,
body[data-theme='dark'] .specialist__card {
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.06);
}

body[data-theme='dark'] .solution__card::before {
  opacity: 0;
}

body[data-theme='dark'] .solution__card:hover::before {
  opacity: 1;
}

body[data-theme='dark'] .benefit__card::before {
  opacity: 0.7;
}

body[data-theme='dark'] .faq__item {
  border-left-color: transparent;
}

body[data-theme='dark'] .faq__item.active {
  border-left-color: var(--primary-light);
  background: linear-gradient(to right, rgba(255, 107, 53, 0.06), transparent);
}

body[data-theme='dark'] .specialist__icon {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(10, 77, 140, 0.1));
}

body[data-theme='dark'] .solution__icon {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(10, 77, 140, 0.1));
}

body[data-theme='dark'] .benefit__icon {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(10, 77, 140, 0.1));
}

body[data-theme='dark'] .trust-seals {
  background: #050b1f;
}

body[data-theme='dark'] .trust-seal {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

body[data-theme='dark'] .trust-seal__text {
  color: #94a3b8;
}

body[data-theme='dark'] .card-text {
  color: #f8fafc;
}

body[data-theme='dark'] .about__founder {
  background: linear-gradient(135deg, rgba(0, 78, 146, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
}

body[data-theme='dark'] .faq__question {
  color: #e2e8f0;
}

body[data-theme='dark'] .faq__icon {
  color: var(--primary-light);
  background: rgba(255, 107, 53, 0.12);
}

body[data-theme='dark'] .button--secondary {
  color: #e2e8f0;
  border-color: rgba(226, 232, 240, 0.5);
}

body[data-theme='dark'] .button--secondary:hover {
  background-color: #e2e8f0;
  color: #0b1120;
}

body[data-theme='dark'] .numbers__grid .number__value {
  color: var(--primary-light);
}

body[data-theme='dark'] .numbers__label {
  color: #d5ddff;
}

body[data-theme='dark'] .press {
  background-color: var(--dark-surface);
}

body[data-theme='dark'] .press__item {
  background-color: var(--dark-bg);
}

body[data-theme='dark'] .press__item:hover {
  background-color: var(--dark-surface);
}

body[data-theme='dark'] .footer {
  background-color: #02060f;
}

/* ===== INFOGRAPHICS ===== */
.infographic {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(10, 77, 140, 0.04), transparent 50%),
    linear-gradient(180deg, #f8f9fc 0%, #ffffff 50%, #f8f9fc 100%);
  padding: 4rem 0;
}

.infographic__container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Economia Infographic */
.economy-infographic {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.economy-infographic__visual {
  position: relative;
}

.economy-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.economy-infographic__stats {
  display: grid;
  gap: 1.5rem;
}

.stat-bar {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.stat-bar__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 12px;
  opacity: 0.15;
}

.stat-bar__fill--orange {
  background: var(--primary-color);
  width: 40%;
}

.stat-bar__fill--blue {
  background: var(--secondary-color);
  width: 100%;
}

.stat-bar__content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-bar__label {
  font-weight: 600;
  color: var(--text-color);
}

.stat-bar__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-bar__value--blue {
  color: var(--secondary-color);
}

/* Process Infographic */
.process-infographic {
  margin-top: 4rem;
  padding: 3.5rem 5rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  margin-left: -5rem;
  margin-right: -5rem;
  width: calc(100% + 10rem);
}

.process-infographic__title {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 0;
  border-radius: 3px;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #fff 0%, #fef7f3 100%);
  border: 3px solid rgba(255, 107, 53, 0.3);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.75rem;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .process-step__icon {
  transform: scale(1.08) translateY(-4px);
  background: linear-gradient(135deg, #ff6b35 0%, #f09700 100%);
  border-color: transparent;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.process-step__number {
  position: absolute;
  top: -12px;
  right: calc(50% - 70px);
  width: 36px;
  height: 36px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.process-step__desc {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* Timeline Infographic */
.timeline-infographic {
  margin-top: 3rem;
  padding: 3.5rem 5rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3a5c 100%);
  border-radius: 24px;
  color: var(--white);
  margin-left: -5rem;
  margin-right: -5rem;
  width: calc(100% + 10rem);
}

.timeline-infographic__title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.timeline {
  display: flex;
  justify-content: space-around;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}

.timeline-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-item__year {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.timeline-item__content {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 220px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.timeline-item__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.timeline-item__text {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Dark mode for infographics */
body[data-theme='dark'] .infographic {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

body[data-theme='dark'] .economy-infographic {
  background: var(--dark-surface);
}

body[data-theme='dark'] .stat-bar {
  background: var(--dark-bg);
}

body[data-theme='dark'] .stat-bar__label {
  color: #e2e8f0;
}

body[data-theme='dark'] .process-step__icon {
  background: var(--dark-surface);
  border-color: var(--primary-light);
}

body[data-theme='dark'] .process-step:hover .process-step__icon {
  background: var(--primary-color);
}

body[data-theme='dark'] .process-step__title {
  color: #ffffff;
}

body[data-theme='dark'] .process-step__desc {
  color: #e2e8f0;
}

body[data-theme='dark'] .process-infographic {
  background: var(--dark-surface);
}

body[data-theme='dark'] .process-infographic__title {
  color: #ffffff;
}

/* Responsive infographics */
@media screen and (max-width: 968px) {
  .economy-infographic {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 40px;
    right: auto;
    width: 4px;
    height: auto;
  }

  .process-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
  }

  .process-step__icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    margin: 0;
    flex-shrink: 0;
  }

  .process-step__number {
    top: 50%;
    right: auto;
    left: -14px;
    transform: translateY(-50%);
  }

  .process-infographic {
    padding: 2rem;
  }

  .process-infographic__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 4px;
    height: auto;
    transform: translateX(-50%);
  }

  .timeline-item__content {
    max-width: 100%;
  }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 968px) {
  :root {
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background-color: var(--white);
    padding: 6rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav__close,
  .nav__toggle {
    display: block;
  }

  .nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .nav__btns {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav__btns .button--primary {
    display: none;
  }
  .theme-toggle {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
  }

  .hero__illustration {
    height: 480px;
  }

  .about__content {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --section-padding: 3rem 0;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__illustration {
    height: 360px;
  }

  .button--large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
  }

  .number__value {
    font-size: 2.25rem;
  }

  .specialist__card {
    padding: 1.5rem 1rem;
  }

  .specialist__icon {
    width: 64px;
    height: 64px;
    padding: 12px;
  }

  .benefit__card {
    padding: 2rem 1.5rem;
  }

  .solution__card {
    padding: 2rem 1.5rem;
  }
}

/* ===== SOLUTIONS CAROUSEL ===== */
.about__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

body[data-theme='dark'] .about__subtitle {
  color: #f8fafc;
}

.solutions-carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0 2rem;
  margin: 0 -1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
  -webkit-overflow-scrolling: touch;
}

.solutions-carousel::-webkit-scrollbar {
  height: 8px;
}

.solutions-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.solutions-carousel::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.solutions-carousel__track {
  display: flex;
  gap: 1.5rem;
  padding: 0 1rem;
  width: max-content;
}

.solution-card-carousel {
  flex: 0 0 280px;
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
  border: 2px solid rgba(255, 107, 53, 0.4);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.solution-card-carousel:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.35);
  background: linear-gradient(135deg, #234876 0%, #3d5a9f 100%);
}

.solution-card-carousel__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.solution-card-carousel__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff8c61;
  margin-bottom: 0.75rem;
}

.solution-card-carousel__desc {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
}

.about__results {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
  border-radius: 12px;
  border: 2px solid rgba(255, 107, 53, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about__results p {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 500;
}

.about__results strong {
  color: #ff8c61;
  font-weight: 700;
}

/* ===== TIMELINE CAROUSEL ===== */
.timeline-infographic {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
  -webkit-overflow-scrolling: touch;
}

.timeline-infographic::-webkit-scrollbar {
  height: 8px;
}

.timeline-infographic::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.timeline-infographic::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.timeline {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 1rem 0;
}

.timeline-item {
  flex: 0 0 200px;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .solution-card-carousel {
    flex: 0 0 260px;
  }

  .timeline-item {
    flex: 0 0 180px;
  }
}

/* ===== PRESS SECTION ENHANCED ===== */
.press__grid--large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  justify-items: stretch;
  padding: 2rem 0;
}

@media (max-width: 1200px) {
  .press__grid--large {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .press__grid--large {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .press__grid--large {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.press__item--pulse {
  padding: 2rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.press__item--pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.press__item--pulse:hover::before {
  width: 300%;
  height: 300%;
}

.press__item--pulse:hover {
  transform: scale(1.08);
  border-color: var(--primary-color);
  box-shadow:
    0 0 30px rgba(255, 107, 53, 0.4),
    0 0 60px rgba(255, 107, 53, 0.2);
  animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow:
      0 0 30px rgba(255, 107, 53, 0.4),
      0 0 60px rgba(255, 107, 53, 0.2);
  }
  50% {
    box-shadow:
      0 0 50px rgba(255, 107, 53, 0.6),
      0 0 80px rgba(255, 107, 53, 0.3);
  }
}

.press__logo--large {
  width: 180px;
  height: 80px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.press__item--pulse:hover .press__logo--large {
  transform: scale(1.1);
}

.press__logo--large text {
  transition: all 0.3s ease;
}

.press__item--pulse:hover .press__logo--large text {
  filter: brightness(1.2);
}

/* ===== PRESS ITEM HOVER (NEON GLOW + 3D EFFECT) ===== */
.press__item--hover {
  padding: 1.5rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98) 0%, rgba(20, 30, 50, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Efeito de scan linha horizontal */
.press__item--hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.8),
    rgba(255, 107, 53, 0.8),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 10;
}

/* Glow de fundo */
.press__item--hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 100%,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* Borda animada neon */
.press__item--hover .press__glow-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0) 0%,
    rgba(255, 107, 53, 0) 50%,
    rgba(0, 212, 255, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ===== HOVER STATE - ACENDE! ===== */
.press__item--hover:hover {
  transform: translateY(-12px) rotateX(5deg) scale(1.02);
  border-color: rgba(0, 212, 255, 0.4);
  background: linear-gradient(145deg, rgba(20, 35, 60, 1) 0%, rgba(30, 50, 80, 1) 100%);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 212, 255, 0.25),
    0 0 80px rgba(255, 107, 53, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 212, 255, 0.1);
}

.press__item--hover:hover::before {
  left: 100%;
  animation: scan-line 2s ease-in-out infinite;
}

.press__item--hover:hover::after {
  opacity: 1;
  background: radial-gradient(
    ellipse 100% 60% at 50% 100%,
    rgba(0, 212, 255, 0.15) 0%,
    rgba(255, 107, 53, 0.08) 40%,
    transparent 70%
  );
}

.press__item--hover:hover .press__glow-border {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.6) 0%,
    rgba(255, 107, 53, 0.6) 50%,
    rgba(0, 212, 255, 0.6) 100%
  );
  animation: border-rotate 3s linear infinite;
}

@keyframes scan-line {
  0%,
  100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}

@keyframes border-rotate {
  0% {
    background: linear-gradient(
      0deg,
      rgba(0, 212, 255, 0.6) 0%,
      transparent 50%,
      rgba(255, 107, 53, 0.6) 100%
    );
  }
  25% {
    background: linear-gradient(
      90deg,
      rgba(0, 212, 255, 0.6) 0%,
      transparent 50%,
      rgba(255, 107, 53, 0.6) 100%
    );
  }
  50% {
    background: linear-gradient(
      180deg,
      rgba(0, 212, 255, 0.6) 0%,
      transparent 50%,
      rgba(255, 107, 53, 0.6) 100%
    );
  }
  75% {
    background: linear-gradient(
      270deg,
      rgba(0, 212, 255, 0.6) 0%,
      transparent 50%,
      rgba(255, 107, 53, 0.6) 100%
    );
  }
  100% {
    background: linear-gradient(
      360deg,
      rgba(0, 212, 255, 0.6) 0%,
      transparent 50%,
      rgba(255, 107, 53, 0.6) 100%
    );
  }
}

/* Pulsação suave de fundo na grid inteira */
@keyframes grid-pulse {
  0%,
  100% {
    opacity: 0.03;
  }
  50% {
    opacity: 0.08;
  }
}

.press__grid--large {
  position: relative;
}

.press__grid--large::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse 50% 30% at 50% 50%,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  animation: grid-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.press__item--hover .press__logo--large {
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(0.9) saturate(0.8);
}

.press__item--hover:hover .press__logo--large {
  transform: scale(1.12);
  filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.press__item--hover .press__logo--large text {
  transition: all 0.5s ease;
}

.press__item--hover:hover .press__logo--large text {
  filter: brightness(1.4) saturate(1.3);
}

/* Mouse tracking glow effect */
.press__item--hover {
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.press__item--hover:hover::after {
  background: radial-gradient(
    circle 150px at var(--mouse-x) var(--mouse-y),
    rgba(0, 212, 255, 0.2) 0%,
    rgba(255, 107, 53, 0.1) 40%,
    transparent 70%
  );
}

/* ===== PRESS SUMMARY ===== */
.press__summary {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 0.4rem 0.75rem;
  line-height: 1.4;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
  max-width: 100%;
}

.press__item--hover:hover .press__summary {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

body[data-theme='dark'] .press__summary {
  color: rgba(255, 255, 255, 0.5);
}

body[data-theme='dark'] .press__item--hover:hover .press__summary {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* ===== PRESS BANNER (SCROLL HORIZONTAL) ===== */
.press__banner {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  margin: 0 -2rem;
}

.press__banner::before,
.press__banner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.press__banner::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary, #0f172a), transparent);
}

.press__banner::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary, #0f172a), transparent);
}

.press__banner-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-press 45s linear infinite;
  width: max-content;
  padding: 0 2rem;
}

.press__banner-track:hover {
  animation-play-state: paused;
}

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

/* Ajustar tamanho dos cards para banner */
.press__banner .press__item {
  flex-shrink: 0;
  width: 220px;
  min-height: 150px;
}

.press__banner .press__item--hover {
  width: 220px;
  min-height: 150px;
}

.press__banner .press__logo--large {
  width: 180px;
  height: 60px;
}

@media (max-width: 768px) {
  .press__banner {
    margin: 0 -1rem;
  }

  .press__banner::before,
  .press__banner::after {
    width: 60px;
  }

  .press__banner .press__item,
  .press__banner .press__item--hover {
    width: 180px;
    min-height: 120px;
  }

  .press__banner .press__logo--large {
    width: 140px;
    height: 50px;
  }

  .press__banner-track {
    gap: 1rem;
    padding: 0 1rem;
  }
}

/* ===== PRESS BADGES ===== */
.press__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.press__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.press__badge-icon {
  font-size: 1.2rem;
}

.press__badge--pinheiro {
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
  color: #fff;
  border: 2px solid #3d5a9f;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.press__badge--pinheiro:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 54, 93, 0.4);
}

.press__badge--whatsapp {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  color: #fff;
  border: 2px solid #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.press__badge--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .press__badges {
    flex-direction: column;
    align-items: center;
  }

  .press__badge {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}

/* ===== ESPECIALISTAS VT ===== */
.specialists {
  background: linear-gradient(180deg, #f8f9fc 0%, #f0f4f8 100%);
  padding: 5rem 0;
  position: relative;
}

[data-theme='dark'] .specialists {
  background: #1a1a2e;
}

.specialists__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.specialists__content {
  text-align: left;
  max-width: 600px;
}

.specialists__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e3a5f;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-style: italic;
}

.specialists__title span {
  font-size: 3rem;
  display: block;
  font-style: normal;
}

[data-theme='dark'] .specialists__title {
  color: #fff;
}

.specialists__subtitle {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.specialists__highlight {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.specialists__description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

[data-theme='dark'] .specialists__description {
  color: #aaa;
}

.specialists__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.specialist__card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.specialist__card:hover {
  transform: translateY(-12px);
  background: white;
  box-shadow:
    0 20px 50px rgba(255, 107, 53, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 107, 53, 0.2);
}

.specialist__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.75rem;
  color: #1e3a5f;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(10, 77, 140, 0.06));
  border-radius: 20px;
  padding: 16px;
}

.specialist__card:hover .specialist__icon {
  transform: scale(1.1);
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(240, 151, 0, 0.1));
}

.specialist__icon svg {
  width: 100%;
  height: 100%;
}

[data-theme='dark'] .specialist__icon {
  color: #fff;
}

.specialist__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

[data-theme='dark'] .specialist__title {
  color: #fff;
}

.specialist__desc {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

[data-theme='dark'] .specialist__desc {
  color: #ccc;
}

@media (max-width: 992px) {
  .specialists__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .specialists__features {
    grid-template-columns: 1fr;
  }

  .specialists__title {
    font-size: 2rem;
  }

  .specialists__title span {
    font-size: 2.5rem;
  }

  .specialists__content {
    text-align: center;
  }
}

/* ===== ABRANGÊNCIA NACIONAL ===== */
.coverage {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c3e50 50%, #1a252f 100%);
  color: white;
  padding: 4rem 0 2rem;
  overflow: hidden;
  position: relative;
}

.coverage__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.coverage__content {
  z-index: 2;
}

.coverage__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 2px;
  opacity: 0.9;
  display: block;
  margin-bottom: 0.5rem;
}

.coverage__title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.coverage__description {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
}

.coverage__description strong {
  color: var(--primary-color);
  font-weight: 700;
}

.coverage__stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.coverage__stat {
  text-align: center;
}

.coverage__stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b35 0%, #f09700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.coverage__stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.coverage__logos {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  overflow: hidden;
}

.coverage__logos-track {
  display: flex;
  gap: 1rem;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.coverage__logo-item {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.coverage__logo-item:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.coverage__logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.coverage__logo-item span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.2;
}

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

/* Duplicate logos for seamless loop */
.coverage__logos-track::after {
  content: '';
  display: flex;
}

@media (max-width: 768px) {
  .coverage__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coverage__title {
    font-size: 2.5rem;
  }

  .coverage__map {
    height: 200px;
  }

  .coverage__logo-item {
    width: 80px;
    height: 55px;
  }
}

/* ===== PÁGINA VALE TRANSPORTE ===== */

/* Hero VT */
.vt-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #1a365d 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
}

.vt-hero .hero__title {
  color: white;
}

.vt-hero .hero__description {
  color: rgba(255, 255, 255, 0.9);
}

.hero__badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.hero__stat-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* VT Visual Cards */
.vt-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.vt-card--main {
  z-index: 3;
  transform: scale(1.1);
}

.vt-card--secondary {
  top: 20%;
  right: 10%;
  z-index: 2;
  animation-delay: 0.5s;
}

.vt-card--tertiary {
  bottom: 20%;
  left: 10%;
  z-index: 1;
  animation-delay: 1s;
}

.vt-card__icon {
  font-size: 2.5rem;
}

.vt-card__content {
  display: flex;
  flex-direction: column;
}

.vt-card__label {
  font-size: 0.8rem;
  color: #666;
}

.vt-card__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* VT Process */
.vt-process {
  background: #f8f9fa;
  padding: 5rem 0;
}

[data-theme='dark'] .vt-process {
  background: #1a1a2e;
}

.vt-process__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.vt-process__step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

[data-theme='dark'] .vt-process__step {
  background: #252542;
}

.vt-process__number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.vt-process__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vt-process__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1e3a5f;
}

[data-theme='dark'] .vt-process__title {
  color: #fff;
}

.vt-process__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

[data-theme='dark'] .vt-process__desc {
  color: #aaa;
}

.vt-process__connector {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  align-self: center;
  margin-top: 3rem;
}

/* Diferenciais da Plataforma */
.vt-platform {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 100%);
}

[data-theme='dark'] .vt-platform {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.vt-platform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.vt-platform__item {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme='dark'] .vt-platform__item {
  background: #252542;
  border-color: rgba(255, 255, 255, 0.1);
}

.vt-platform__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
  border-color: var(--primary-color);
}

.vt-platform__icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: block;
}

.vt-platform__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.vt-platform__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* VT Benefits */
.vt-benefits {
  padding: 5rem 0;
}

.vt-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.vt-benefit {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

[data-theme='dark'] .vt-benefit {
  background: #252542;
}

.vt-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.vt-benefit__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vt-benefit__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.75rem;
}

[data-theme='dark'] .vt-benefit__title {
  color: #fff;
}

.vt-benefit__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

[data-theme='dark'] .vt-benefit__desc {
  color: #aaa;
}

/* VT Calculator */
.vt-calculator {
  background: linear-gradient(135deg, #1e3a5f 0%, #8e44ad 100%);
  color: white;
  padding: 5rem 0;
}

.vt-calculator__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vt-calculator__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.vt-calculator__desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.vt-calculator__example {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.vt-calc-row {
  text-align: center;
}

.vt-calc-label {
  font-size: 1rem;
  opacity: 0.8;
  display: block;
}

.vt-calc-value {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
}

.vt-calc-desc {
  font-size: 0.85rem;
  opacity: 0.7;
  display: block;
  margin-top: 0.5rem;
}

.vt-calc-row--highlight .vt-calc-value {
  color: #4ade80;
}

.vt-calc-operator {
  font-size: 2rem;
  font-weight: 300;
  opacity: 0.6;
}

.vt-calculator__note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 1.5rem;
}

.vt-calculator__cta {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}

.vt-calculator__cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.vt-calculator__cta p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* VT Audience */
.vt-audience {
  background: #f8f9fa;
  padding: 5rem 0;
}

[data-theme='dark'] .vt-audience {
  background: #1a1a2e;
}

.vt-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.vt-audience__card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme='dark'] .vt-audience__card {
  background: #252542;
}

.vt-audience__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vt-audience__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
}

[data-theme='dark'] .vt-audience__title {
  color: #fff;
}

.vt-audience__list {
  list-style: none;
  padding: 0;
}

.vt-audience__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: #555;
  border-bottom: 1px solid #eee;
}

[data-theme='dark'] .vt-audience__list li {
  color: #aaa;
  border-color: #333;
}

.vt-audience__list li:last-child {
  border-bottom: none;
}

.vt-audience__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* VT Trust */
.vt-trust {
  padding: 5rem 0;
}

.vt-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.vt-trust__item {
  text-align: center;
  padding: 2rem;
}

.vt-trust__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vt-trust__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.75rem;
}

[data-theme='dark'] .vt-trust__title {
  color: #fff;
}

.vt-trust__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

[data-theme='dark'] .vt-trust__desc {
  color: #aaa;
}

/* Responsive VT Page */
@media (max-width: 992px) {
  .vt-platform__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vt-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vt-calculator__content {
    grid-template-columns: 1fr;
  }

  .vt-audience__grid {
    grid-template-columns: 1fr;
  }

  .vt-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .vt-process__connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .vt-platform__grid {
    grid-template-columns: 1fr;
  }

  .vt-benefits__grid {
    grid-template-columns: 1fr;
  }

  .vt-trust__grid {
    grid-template-columns: 1fr;
  }

  .vt-calculator__example {
    flex-direction: column;
  }

  .vt-calc-operator {
    transform: rotate(90deg);
  }

  .hero__stats {
    justify-content: center;
  }

  .vt-visual {
    height: 300px;
  }

  .vt-card {
    position: relative;
    margin: 0.5rem;
  }

  .vt-card--secondary,
  .vt-card--tertiary {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

/* ===== SEÇÃO TAXA DE REPASSE / IMPRENSA ===== */
.press-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
}

[data-theme='dark'] .press-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.press__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.press__card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

[data-theme='dark'] .press__card {
  background: #1e2a3a;
  border-color: #2d3f52;
}

.press__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #ff6b35;
}

.press__source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.press__logo {
  font-size: 1.5rem;
}

.press__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

[data-theme='dark'] .press__name {
  color: #aaa;
}

.press__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  flex-grow: 1;
}

[data-theme='dark'] .press__title {
  color: #fff;
}

.press__excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

[data-theme='dark'] .press__excerpt {
  color: #aaa;
}

.press__date {
  font-size: 0.75rem;
  color: #ff6b35;
  font-weight: 600;
}

.press__highlight {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.press__quote--full {
  text-align: center;
  max-width: 900px;
}

.press__quote blockquote {
  font-size: 1.25rem;
  color: #fff;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.press__quote cite {
  color: #ff6b35;
  font-size: 0.95rem;
  font-weight: 600;
}

.press__stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.press__stat {
  text-align: center;
}

.press__stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b35;
}

.press__stat-label {
  display: block;
  font-size: 0.85rem;
  color: #fff;
  opacity: 0.9;
}

/* Responsive Press Section */
@media (max-width: 1200px) {
  .press__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .press__grid {
    grid-template-columns: 1fr;
  }

  .press__highlight {
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: center;
  }

  .press__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .press__quote blockquote {
    font-size: 1.1rem;
  }
}

/* ===== LEIA TAMBEM (Related Articles) ===== */
.leia-tambem {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.leia-tambem h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.leia-tambem__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.leia-tambem__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.leia-tambem__link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

body[data-theme='dark'] .leia-tambem {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* ===== FOCUS STATES (Accessibility) ===== */
.button:focus-visible,
.nav__link:focus-visible,
.faq__question:focus-visible,
.logo:focus-visible,
.footer__link:focus-visible,
.social-link:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav__link:focus-visible {
  color: var(--primary-color);
}

.nav__link:focus-visible::after {
  width: 100%;
}

.faq__question:focus-visible {
  color: var(--primary-color);
}

/* ===== EXTRA SMALL SCREENS (<=480px) ===== */
@media (max-width: 480px) {
  :root {
    --h1-size: 2rem;
    --h2-size: 1.5rem;
  }
  .hero__title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero__description {
    font-size: 0.95rem;
  }
  .hero__illustration {
    height: 300px;
  }
  .section__title {
    font-size: 1.5rem;
  }
  .footer__content {
    grid-template-columns: 1fr;
  }
}

/* ===== TOUCH TARGETS (Mobile Accessibility) ===== */
@media (max-width: 768px) {
  .nav__toggle,
  .nav__close {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== REDUCED MOTION (Accessibility) ===== */
@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;
  }
}
