/* ============================================
   VENETEX EXPRESS — Design System
   Modern, SEO-First, Conversion-Optimized
   Colors: Purple #5B2D8E | Yellow #FFD600 | White #FFFFFF
   Brand Identity: Vibrant, Latino Community, Family-First
   ============================================ */

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

:root {
  /* Brand Colors — Venetex Real Identity */
  --navy: #5B2D8E;
  --navy-light: #4A1D7A;
  --navy-mid: #6B3D9E;
  --gold: #FFD600;
  --gold-light: #FFE333;
  --gold-dark: #E6C200;
  --white: #FFFFFF;
  --off-white: #F9F7FC;
  --gray-100: #F3F0F7;
  --gray-200: #E6E0EE;
  --gray-300: #C5BDD6;
  --gray-400: #8A82A0;
  --gray-500: #5C5478;
  --gray-600: #3D3556;
  --red: #E53E3E;
  --green: #38A169;
  --blue: #3182CE;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Shadows — Modern clean */
  --shadow-sm: 0 1px 4px rgba(91,45,142,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(91,45,142,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(91,45,142,0.12), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 60px rgba(91,45,142,0.15), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-gold: 0 4px 24px rgba(255,214,0,0.35);
  --shadow-purple: 0 4px 24px rgba(91,45,142,0.25);

  /* Borders — Rounded modern */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 80px;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-600);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: var(--space-md); }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

/* === LAYOUT === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

.flex {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* === HEADER & NAVIGATION === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(91, 45, 142, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header.scrolled {
  background: rgba(91, 45, 142, 0.98);
  box-shadow: 0 4px 30px rgba(91,45,142,0.3);
  border-bottom-color: rgba(255,214,0,0.15);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--gold);
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-img-white {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.footer .logo-img {
  height: 40px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav a {
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

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

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  background: var(--navy-light);
  border: 1px solid rgba(255,214,0,0.15);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-xl);
  margin-top: var(--space-sm);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.85rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255,214,0,0.1);
}

.dropdown-menu a::after {
  display: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  padding: var(--space-sm) var(--space-lg) !important;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: var(--transition-base) !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(255,214,0,0.4);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

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

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255,214,0,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,214,0,0.08);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #3A1068 0%, var(--navy) 40%, var(--navy-mid) 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255,214,0,0.07) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.5; transform: translate(0, 0); }
  to { opacity: 1; transform: translate(-3%, 3%); }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--off-white), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,214,0,0.1);
  border: 1px solid rgba(255,214,0,0.2);
  padding: 10px var(--space-xl);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}

.hero p {
  color: var(--gray-300);
  font-size: 1.15rem;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-4xl);
}

.hero-stat {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,214,0,0.2);
  transform: translateY(-4px);
}

.hero-stat .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Floating elements */
.hero-float {
  position: absolute;
  z-index: 1;
}

.hero-map {
  position: absolute;
  right: -5%;
  top: 15%;
  width: 55%;
  height: 75%;
  opacity: 0.08;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cpath d='M200,100 Q300,80 350,150 T450,200 Q500,250 480,300 T400,400 Q350,450 300,420 T200,350 Q150,300 180,250 T200,100Z' fill='none' stroke='%23FFD600' stroke-width='1'/%3E%3Cpath d='M500,50 Q550,100 520,180 T480,280 Q450,350 500,400 T600,350 Q650,300 620,250 T500,50Z' fill='none' stroke='%23FFD600' stroke-width='0.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* === TRUST BAR === */
.trust-bar {
  background: linear-gradient(135deg, var(--off-white), #F5F0FF);
  padding: var(--space-xl) 0;
  border-bottom: none;
  box-shadow: 0 2px 12px rgba(91,45,142,0.04);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

.trust-item .icon {
  font-size: 1.3rem;
}

/* === CARDS === */
.card {
  background: var(--white);
  border: 1px solid rgba(91,45,142,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(91,45,142,0.02), rgba(255,214,0,0.02));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none; /* FIX: deixa cliques passarem para inputs/forms dentro do card */
}

.card:hover {
  border-color: rgba(255,214,0,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(91,45,142,0.08), rgba(255,214,0,0.08));
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Country Card — Modern with prominent flags */
.country-card {
  background: var(--white);
  border: 1px solid rgba(91,45,142,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
}

.country-card:hover {
  border-color: rgba(255,214,0,0.5);
  box-shadow: 0 16px 48px rgba(91,45,142,0.15);
  transform: translateY(-8px) scale(1.02);
}

.country-card-header {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.country-card-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255,214,0,0.08), transparent 70%);
}

.country-flag {
  font-size: 4rem;
  margin-bottom: var(--space-sm);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.country-card:hover .country-flag {
  transform: scale(1.2) rotate(-3deg);
}

.country-card-header h3 {
  color: var(--white);
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.country-card-body {
  padding: var(--space-lg);
}

.country-card-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, rgba(91,45,142,0.08), rgba(255,214,0,0.08));
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* === SERVICES SECTION === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* === COUNTRIES SECTION === */
.countries-section {
  background: var(--off-white);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* === WHY US SECTION === */
.why-us {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(255,214,0,0.08), transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl);
  align-items: center;
}

.why-content h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.why-content p {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: var(--space-2xl);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.why-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255,214,0,0.15);
  border: 1px solid rgba(255,214,0,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-item h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.why-item p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.why-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.why-stat-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.why-stat-card .label {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* === PROCESS / HOW IT WORKS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gray-200), var(--gray-200), var(--gold));
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-gold), 0 0 0 6px rgba(255,214,0,0.15);
  transition: transform 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
}

.process-step h4 {
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, #D4A800 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15), transparent 60%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 40%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(91,45,142,0.08), transparent 60%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: var(--navy);
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: var(--space-xl);
}

/* === TRACKING SECTION === */
.tracking-section {
  background: var(--off-white);
}

.tracking-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: var(--space-sm);
}

.tracking-input {
  flex: 1;
  padding: 16px 24px;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  transition: var(--transition-base);
  background: var(--white);
}

.tracking-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,214,0,0.15);
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(91,45,142,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.35s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  color: rgba(255,214,0,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,214,0,0.3);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  color: var(--gray-400);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gray-400);
  transition: var(--transition-fast);
}

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

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: whatsappPulse 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
  animation: none;
}

/* === COUNTRY PAGE SPECIFIC === */
.country-hero {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  background: linear-gradient(160deg, #3A1068 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.country-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255,214,0,0.06), transparent 60%);
}

.country-hero h1 {
  color: var(--white);
}

.country-hero p {
  color: var(--gray-300);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: var(--space-xl);
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-table thead {
  background: var(--navy);
}

.pricing-table th {
  padding: var(--space-lg);
  color: var(--white);
  font-weight: 600;
  text-align: left;
  font-size: 0.9rem;
}

.pricing-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}

.pricing-table tr:hover td {
  background: var(--off-white);
}

/* === FORMS === */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: var(--transition-base);
  background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,214,0,0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(91,45,142,0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255,214,0,0.3);
  box-shadow: 0 4px 16px rgba(91,45,142,0.06);
}

.faq-item.active {
  border-color: rgba(91,45,142,0.15);
  box-shadow: 0 4px 20px rgba(91,45,142,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition-base);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question .icon {
  font-size: 1.2rem;
  transition: var(--transition-base);
  color: var(--gold);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--gray-500);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4, .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    z-index: 1000;
  }

  .nav.active a {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .grid-2, .grid-3, .services-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .hero-stat .number {
    font-size: 1.6rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .tracking-form {
    flex-direction: column;
  }

  .cta-phone {
    font-size: 1.1rem;
  }

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

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: var(--space-sm) var(--space-md);
  }
}

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .why-stats-grid {
    grid-template-columns: 1fr;
  }
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .animate-in:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .animate-in:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .animate-in:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .animate-in:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .animate-in:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .animate-in:nth-child(6) { transition-delay: 0.6s; }

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* Schema markup styling */
[itemscope] { display: contents; }

/* ============================================
   CORRECOES RESPONSIVAS - Migracao WordPress
   Sobrescreve estilos inline herdados do Base44 que
   quebravam o layout no mobile (grids forcados).
   ============================================ */
@media (max-width: 768px) {
  /* Grids de oficinas/cards com repeat(3,1fr) inline -> empilha */
  .services-grid[style*="repeat(3"],
  .services-grid[style*="repeat(2"] {
    grid-template-columns: 1fr !important;
  }
  /* Cards que usavam grid-column: span 2 inline -> ocupam 1 coluna */
  .card[style*="span 2"],
  [style*="grid-column: span 2"] {
    grid-column: auto !important;
  }
}

@media (max-width: 480px) {
  /* Garante que nenhum grid force multiplas colunas em telas pequenas */
  .grid-2, .grid-3, .grid-4,
  .services-grid, .countries-grid,
  .why-stats-grid, .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Trava global: nada pode ultrapassar a largura da tela no mobile.
   Evita o "esticamento" do viewport que deixava tudo minusculo. */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  img, table, pre { max-width: 100%; height: auto; }
}
