/* SF UI Display Font Face */
@font-face {
  font-family: 'SF UI Display';
  src: url('fonts/sf-ui-display-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'SF UI Display';
  src: url('fonts/sf-ui-display-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SF UI Display';
  src: url('fonts/sf-ui-display-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'SF UI Display';
  src: url('fonts/sf-ui-display-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: clip;
  background: #FAFAFA;
  color: #1A1A1A;
  line-height: 1.6;
}

/* Scroll Snap */
.section-snap {
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-snap.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation - Apple Style Glass Effect */
.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: #003ed0;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: #009dff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-link:hover {
  color: #009dff;
}

.nav-cta {
  color: #0066FF;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  background: #0066FF;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Hero Section - Layered Structure */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Background Image - Layer 1 (bottom) */
.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-image: url('https://apexbrasil.com.br/adobe/dynamicmedia/deliver/dm-aid--cbdcc854-a1e2-4772-8f0b-4e7f7c724014/capa_impulso4.jpg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px);
  transform: scale(1.02);
  opacity: 0.85;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(250, 250, 250, 0.98) 0%,
    rgba(245, 247, 250, 0.90) 40%,
    rgba(240, 244, 255, 0.70) 80%,
    rgba(232, 240, 255, 0.45) 100%);
  z-index: 2;
}

/* Content Container - Layer 2 (middle) */
.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  text-align: left;
  position: relative;
  z-index: 20;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.badge-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #00CC66;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(0, 204, 102, 0.4);
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 204, 102, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(0, 204, 102, 0);
  }
}

.badge-status span {
  font-size: 0.9rem;
  color: #1A1A1A;
  font-weight: 500;
}

/* Hero Logo (Only Mobile) */
.hero-logo {
  display: none;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-logo-img {
  height: 50px;
  width: auto;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
}

.highlight-blue {
  color: #0066FF;
}

.hero-description {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-btn.primary {
  background: #0066FF;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.hero-btn.primary:hover {
  background: #0052CC;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.hero-btn.secondary {
  background: transparent;
  color: #0066FF;
  border: 2px solid #0066FF;
}

.hero-btn.secondary:hover {
  background: #0066FF;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.3);
}

/* Partners Section */
.hero-partners {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.partners-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.partner-logo {
  height: 32px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Hero Image Wrapper - Layer 3 (top - floating on top of everything) */
.hero-image-wrapper {
  position: relative;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-producer-image {
  position: relative;
  z-index: 40;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
}

/* Producer PNG Styles - Optimized for Performance */
.producer-png {
  width: auto;
  height: 550px;
  max-height: 90vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(255, 255, 255, 0.7))
          drop-shadow(0 8px 30px rgba(255, 255, 255, 0.5));
  transition: transform 0.3s ease;
  position: relative;
  z-index: 100;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  content-visibility: auto;
}

.producer-png:hover {
  transform: translateZ(0) scale(1.05);
}

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

/* Fallback placeholder (caso a imagem não carregue) */
.producer-img-placeholder {
  width: 480px;
  height: 580px;
  background: linear-gradient(135deg, rgba(232, 240, 255, 0.8) 0%, rgba(240, 244, 255, 0.6) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066FF;
  font-weight: 500;
  text-align: center;
  padding: 2rem;
  border: 2px dashed rgba(0, 102, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Floating Decorative Elements */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
  z-index: 5;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 5%;
  right: -5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: -8%;
  animation-delay: 3s;
}

/* Floating Badge Stats */
.floating-badge {
  position: absolute;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  z-index: 50;
  animation: floatBadge 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.badge-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.badge-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.badge-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0066FF;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.badge-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

/* Float In Animation for Hero Image */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate-float-in {
  animation: floatIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

/* Exbridge Section - Redesigned with Cards */
.exbridge-section {
  background: white;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}

.exbridge-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left Side */
.exbridge-left {
  position: relative;
  z-index: 10;
}

.exbridge-badge {
  display: inline-block;
  background: #F0F4FF;
  color: #0048ff;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.exbridge-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.4;
  color: #1A1A1A;
  margin-bottom: 3rem;
  text-align: left;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #FAFAFA;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.12);
  border-color: rgba(0, 102, 255, 0.15);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 2;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.4rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Right Side - Solution Visual */
.exbridge-right {
  position: relative;
  z-index: 10;
}

.solution-card {
  background: linear-gradient(135deg, #F5F7FA 0%, #FAFAFA 100%);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 102, 255, 0.08);
}

.solution-visual {
  margin-bottom: 2rem;
}

.visual-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 163, 255, 0.05));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(0, 102, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.visual-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066FF;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.visual-icon svg {
  width: 40px;
  height: 40px;
}

.visual-placeholder p {
  color: #0066FF;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

.solution-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.solution-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.solution-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

/* Stats Mini Cards */
.stats-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-mini-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 102, 255, 0.08);
  transition: all 0.3s ease;
}

.stat-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0066FF;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Countries Section - Network with Liquid Glass Cards */
.countries-section {
  background: linear-gradient(180deg, #FAFAFA 50%, #F5F7FA 100%);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: auto;
}

/* Background Shapes */
.countries-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), rgba(0, 163, 255, 0.05));
  animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  animation-delay: 5s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.countries-content {
  position: relative;
  z-index: 10;
}

.countries-badge {
  display: inline-block;
  background: white;
  color: #0066FF;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.countries-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
}

.countries-subtitle {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 4rem;
  line-height: 1.7;
}

.countries-grid-wrapper {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: 400px;
  padding: 0 2rem;
}

.countries-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Country Circle Base */
.country-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInScale 0.8s ease forwards;
  border: 3px solid #F0F4FF;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.country-circle:hover {
  transform: scale(1.2);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.3);
  border-color: #0066FF;
  z-index: 100;
}

/* Flag Icon */
.flag-icon {
  width: 50px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Main center circle - Bahia */
.country-circle.country-main {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  border: 4px solid #FF0000;
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.circle-dot {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.main-label {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

/* Liquid Glass Country Card */
.country-card {
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 2px solid rgba(0, 102, 255, 0.15);
  border-radius: 24px;
  padding: 1.8rem 2.2rem;
  min-width: 300px;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.25),
              0 0 0 1px rgba(255, 255, 255, 0.8) inset,
              0 8px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
}

/* Card position variants - side positioning based on location */
.country-circle:nth-child(2) .country-card,
.country-circle:nth-child(3) .country-card,
.country-circle:nth-child(4) .country-card {
  left: calc(100% + 20px);
  transform: translateY(-50%);
}

.country-circle:nth-child(8) .country-card,
.country-circle:nth-child(9) .country-card,
.country-circle:nth-child(10) .country-card,
.country-circle:nth-child(11) .country-card {
  left: auto;
  right: calc(100% + 20px);
  transform: translateY(-50%);
}

.country-circle:nth-child(5) .country-card,
.country-circle:nth-child(6) .country-card {
  top: auto;
  bottom: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
}

.country-circle:nth-child(7) .country-card,
.country-circle:nth-child(12) .country-card,
.country-circle:nth-child(13) .country-card {
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
}

.country-circle:hover .country-card {
  opacity: 1;
  pointer-events: all;
  animation: liquidGlassReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.country-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0066FF;
  margin-bottom: 0.5rem;
  text-align: center;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.country-card p {
  font-size: 0.9rem;
  color: #1A1A1A;
  line-height: 1.5;
  text-align: center;
  margin: 0.4rem 0;
  font-weight: 500;
}

.country-card p:first-of-type {
  margin-bottom: 0.8rem;
}

.export-percentage {
  display: inline-block;
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
}

.country-card strong {
  color: #0066FF;
  font-weight: 700;
}

/* Geographic positioning - simulating world map layout */
/* Ásia - Extrema Direita (Maiores parceiros) */
.country-circle:nth-child(2) { /* China - 28% */
  top: 35%;
  right: 3%;
}

.country-circle:nth-child(3) { /* Singapura - 10-11% */
  top: 55%;
  right: 8%;
}

.country-circle:nth-child(10) { /* Tailândia - 2% */
  bottom: 6%;
  right: 20%;
}

/* América do Norte - Extrema Esquerda */
.country-circle:nth-child(4) { /* Estados Unidos - 7-8% */
  top: 35%;
  left: 6%;
}

.country-circle:nth-child(5) { /* Canadá - 7% */
  top: 8%;
  left: 3%;
}

/* América do Sul - Esquerda */
.country-circle:nth-child(7) { /* Argentina - 4-5% */
  bottom: 12%;
  left: 16%;
}

/* Europa - Centro */
.country-circle:nth-child(6) { /* Espanha - 4-5% */
  top: 15%;
  left: 30%;
}

.country-circle:nth-child(8) { /* Holanda - 4-5% */
  top: 2%;
  left: 42%;
}

.country-circle:nth-child(9) { /* Alemanha - 2-3% */
  top: 5%;
  right: 38%;
}

.country-circle:nth-child(11) { /* Itália - 2% */
  top: 20%;
  right: 32%;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes liquidGlassReveal {
  0% {
    opacity: 0;
    filter: blur(20px) saturate(50%);
  }
  60% {
    opacity: 1;
    filter: blur(5px) saturate(180%);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(200%);
  }
}

/* How It Works Section - Interactive Timeline */
.howto-section {
  background: white;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}

.howto-container {
  max-width: 1200px;
  margin: 0 auto;
}

.howto-header {
  text-align: center;
  margin-bottom: 5rem;
}

.howto-badge {
  display: inline-block;
  background: #F0F4FF;
  color: #0066FF;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.howto-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.howto-subtitle {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.7;
}

/* Timeline Wrapper */
.timeline-wrapper {
  position: relative;
  padding: 2rem 0;
}

/* Timeline Central Line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.2) 50%, rgba(0, 102, 255, 0.1) 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #0066FF 0%, #00A3FF 100%);
  transition: height 0.3s ease;
}

/* Timeline Steps */
.timeline-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-step.active {
  opacity: 1;
  transform: translateY(0);
}

/* Alternating layout */
.timeline-step:nth-child(odd) {
  grid-template-columns: 1fr auto 1fr;
}

.timeline-step:nth-child(odd) .step-content {
  grid-column: 1;
  text-align: right;
}

.timeline-step:nth-child(odd) .step-marker {
  grid-column: 2;
}

.timeline-step:nth-child(even) {
  grid-template-columns: 1fr auto 1fr;
}

.timeline-step:nth-child(even) .step-marker {
  grid-column: 2;
}

.timeline-step:nth-child(even) .step-content {
  grid-column: 3;
  text-align: left;
}

/* Step Marker (Circle in center) */
.step-marker {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  border: 4px solid #F0F4FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.1);
}

.timeline-step.active .step-marker {
  border-color: #0066FF;
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.25);
}

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0066FF;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066FF;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

/* Step Content */
.step-content {
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F7FA 100%);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 102, 255, 0.08);
  transition: all 0.4s ease;
}

.timeline-step.active .step-content {
  background: white;
  border-color: rgba(0, 102, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.1);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.step-features li {
  font-size: 0.95rem;
  color: #0066FF;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* CTA */
.howto-cta {
  text-align: center;
  margin-top: 4rem;
}

.howto-btn {
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.howto-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .timeline-step {
    grid-template-columns: auto 1fr !important;
    gap: 2rem;
  }

  .timeline-line {
    left: 60px;
  }

  .timeline-step:nth-child(even) .step-content,
  .timeline-step:nth-child(odd) .step-content {
    grid-column: 2 !important;
    text-align: left !important;
  }

  .timeline-step:nth-child(even) .step-marker,
  .timeline-step:nth-child(odd) .step-marker {
    grid-column: 1 !important;
  }

  .step-marker {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  /* Esconder header no mobile */
  .fixed-nav {
    display: none;
  }

  .howto-section {
    padding: 4rem 1.5rem;
  }

  .timeline-step {
    grid-template-columns: 70px 1fr !important;
    gap: 1.5rem;
  }

  .timeline-line {
    left: 35px;
  }

  .step-marker {
    width: 70px;
    height: 70px;
  }

  .step-number {
    font-size: 1rem;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .step-description {
    font-size: 0.95rem;
  }

  .step-content {
    padding: 2rem;
  }

  .timeline-line {
    left: 40px;
  }
}

/* Differentials Section - Bento Grid */
.differentials-section {
  background: linear-gradient(180deg, #FAFAFA 0%, #F5F7FA 100%);
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.diff-header {
  text-align: center;
  margin-bottom: 4rem;
}

.diff-badge {
  display: inline-block;
  background: #F0F4FF;
  color: #0066FF;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.diff-main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
}

/* Bento Grid Layout - 3 Cards */
.bento-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  min-height: 500px;
}

/* Bento Card Base */
.bento-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  min-height: 500px;
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

/* Individual Card Layouts */
.bento-card-1 {
  grid-column: span 1;
}

.bento-card-2 {
  grid-column: span 1;
}

.bento-card-3 {
  grid-column: span 1;
}

/* Background Image */
.bento-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bento-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-card:hover .bento-bg img {
  transform: scale(1.1);
}

/* Overlay Gradient */
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 102, 255, 0.6) 100%);
  z-index: 2;
  transition: opacity 0.5s ease;
}

.bento-card:hover .bento-overlay {
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 102, 255, 0.7) 100%);
}

/* Content */
.bento-content {
  position: relative;
  z-index: 10;
  height: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.bento-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
  transition: all 0.5s ease;
}

.bento-card:hover .bento-number {
  color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.bento-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: white;
}

.bento-large .bento-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.bento-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.bento-large .bento-description {
  font-size: 1.1rem;
}

/* Icon */
.bento-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.bento-card:hover .bento-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.bento-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .bento-card-1,
  .bento-card-2 {
    grid-column: span 1;
    min-height: 400px;
  }

  .bento-card-3 {
    grid-column: span 2;
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .differentials-section {
    padding: 4rem 1.5rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bento-card-1,
  .bento-card-2,
  .bento-card-3 {
    grid-column: span 1;
    min-height: 350px;
  }

  .bento-content {
    padding: 2rem;
  }

  .bento-number {
    font-size: 2.5rem;
  }
}

/* Market Section - Mercado e Oportunidades */
.market-section {
  background: linear-gradient(180deg, #FAFAFA 0%, #F5F7FA 100%);
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}

.market-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.market-badge {
  display: inline-block;
  background: #F0F4FF;
  color: #0066FF;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.market-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.market-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.market-stat {
  text-align: center;
}

.stat-highlight {
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

.stat-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.3), transparent);
}

.stat-description {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

/* Benefit Cards Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.benefit-card {
  background: white;
  border-radius: 40px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
  border-color: rgba(0, 102, 255, 0.2);
}

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

/* Featured Investor Card */
.benefit-card.featured {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFF 100%);
  border: 3px solid #0066FF;
  position: relative;
}

.benefit-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 163, 255, 0.05));
  opacity: 0.5;
  pointer-events: none;
}

.benefit-card.featured:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 70px rgba(0, 102, 255, 0.25);
  border-color: linear-gradient(135deg, #003aaf, #00d9ff);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  z-index: 10;
  text-align: center;
}

/* Card Header */
.card-header {
  position: relative;
  z-index: 2;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.benefit-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.card-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.5;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.benefit-list li::before {
  content: "✓";
  color: #0066FF;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Investor Highlights */
.investor-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-number {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.highlight-text {
  flex: 1;
}

.highlight-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.3rem;
}

.highlight-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* CTA Button */
.card-cta {
  position: relative;
  z-index: 2;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.card-cta.primary {
  background: linear-gradient(135deg, #0066FF, #00A3FF);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.card-cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.card-cta.secondary {
  background: transparent;
  color: #0066FF;
  border: 2px solid #0066FF;
}

.card-cta.secondary:hover {
  background: #0066FF;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.3);
}

/* Responsive for Market Section */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* FAQ Liquid Glass Animation */
.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1.5px solid rgba(0, 102, 255, 0.08);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,0.08) 0%, rgba(0,163,255,0.05) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.faq-item.active,
.faq-item:hover {
  box-shadow: 0 16px 48px rgba(0, 102, 255, 0.18);
  border-color: #0066FF;
  background: rgba(255, 255, 255, 0.85);
}

.faq-item.active::before,
.faq-item:hover::before {
  opacity: 1;
}

.faq-question {
  position: relative;
  z-index: 2;
  padding: 1.7rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1A1A1A;
  background: transparent;
  transition: color 0.3s;
}

.faq-item.active .faq-question {
  color: #0066FF;
}

.faq-icon {
  color: #0066FF;
  font-size: 1.7rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.4s, color 0.3s;
  filter: drop-shadow(0 2px 8px rgba(0,102,255,0.15));
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F0F4FF 0%, #E8F0FF 100%);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 2px 10px rgba(0,102,255,0.08);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg) scale(1.15);
  filter: drop-shadow(0 4px 16px rgba(0,102,255,0.25));
  color: #0048DD;
  background: linear-gradient(135deg, #0066FF 0%, #00A3FF 100%);
  box-shadow: 0 6px 20px rgba(0,102,255,0.18);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 2.2rem;
  text-align: left;
  opacity: 0;
  position: relative;
  z-index: 2;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2.2rem 1.7rem;
  opacity: 1;
  animation: liquidGlassReveal 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes liquidGlassReveal {
  0% {
    opacity: 0;
    transform: translateY(-20px) scaleY(0.95);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scaleY(1.03);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    filter: blur(0);
  }
}
/* FAQ Section */
.faq-section {
  background: linear-gradient(180deg, #FAFAFA 0%, #F5F7FA 100%);
  padding: 6rem 3rem;
  text-align: center;
}

.faq-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

/* Footer */
.footer-section {
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  width: 50px;
  height: 50px;
  background: #0066FF;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #F5F7FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066FF;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.social-icon:hover {
  background: #0066FF;
  color: white;
  transform: translateY(-2px);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #0066FF;
}

.exbridge-text {
  text-align: center;
  font-size: 15rem;
  font-weight: 700;
  color: #0026ff;
  opacity: 0.1;
}
.footer-bottom {
  background: linear-gradient(180deg, #FAFAFA 0%, #0066ff43 100%);
  padding: 0.5rem;
  text-align: center;
}


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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-play-state: paused;
}

.animate-slide-in-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease forwards;
  animation-play-state: paused;
}

.animate-slide-in-right {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 1024px) {
  /* Gradiente vertical no mobile/tablet */
  .hero-bg-overlay {
    background: linear-gradient(180deg,
      rgba(250, 250, 250, 0.98) 0%,
      rgba(245, 247, 250, 0.90) 30%,
      rgba(240, 244, 255, 0.70) 60%,
      rgba(232, 240, 255, 0.45) 100%);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-image-wrapper {
    margin-top: 3rem;
  }

  .products-section {
    grid-template-columns: 1fr;
  }

  .products-sidebar {
    text-align: center;
  }

  .countries-grid-wrapper {
    height: 450px;
  }

  .country-circle {
    width: 70px;
    height: 70px;
  }

  .flag-icon {
    width: 40px;
  }

  .country-circle.country-main {
    width: 120px;
    height: 120px;
  }

  .country-card {
    min-width: 240px;
    padding: 1.2rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .exbridge-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    padding-top: 3rem;
    min-height: auto;
  }

  .hero-container {
    padding: 1.5rem 1.5rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-logo {
    display: block;
    margin-bottom: 1rem;
  }

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

  .hero-badge {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .badge-status span {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-title br {
    display: none;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .hero-description br {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .hero-btn.secondary {
    display: none;
  }

  .hero-partners {
    margin-top: 1rem;
  }

  .partners-label {
    font-size: 0.8rem;
  }

  .partner-logo {
    height: 25px;
  }

  .hero-image-wrapper {
    display: none;
  }

  .producer-png {
    height: 400px;
  }

  .floating-circle,
  .floating-badge {
    display: none;
  }

  .countries-section {
    padding: 4rem 1.5rem;
  }

  .countries-grid-wrapper {
    height: 400px;
  }

  .country-circle {
    width: 60px;
    height: 60px;
  }

  .flag-icon {
    width: 35px;
  }

  .country-circle.country-main {
    width: 100px;
    height: 100px;
  }

  .main-label {
    font-size: 0.9rem;
  }

  .country-card {
    min-width: 220px;
    padding: 1rem 1.2rem;
  }

  .country-card h4 {
    font-size: 1.1rem;
  }

  .country-card p {
    font-size: 0.85rem;
  }

  .products-showcase {
    grid-template-columns: 1fr;
  }

  .exbridge-title {
    font-size: 1.5rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .exbridge-text {
    font-size: 3rem;
  }

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

/* ===== PRESS/NEWS SECTION ===== */
.press-section {
  padding: 8rem 2rem;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.press-container {
  max-width: 1400px;
  margin: 0 auto;
}

.press-header {
  text-align: center;
  margin-bottom: 5rem;
}

.press-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 102, 255, 0.1);
  color: #0066FF;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.press-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.press-subtitle {
  font-size: 1.2rem;
  color: #6B7280;
  margin-top: 1rem;
}

.press-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.press-card {
  background: #FAFAFA;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 0;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.press-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.press-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.press-card:hover .press-card-image img {
  transform: scale(1.05);
}

.press-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.press-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0066FF, #00A3FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.press-card:hover::before {
  transform: scaleX(1);
}

.press-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #0066FF;
  background: white;
}

.press-card.featured {
  border: 2px solid #0066FF;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 163, 255, 0.05) 100%);
}

.press-featured-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #0066FF;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.press-card-header {
  margin-bottom: 1.5rem;
  padding: 1.5rem 2rem 0;
}

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

.press-logo {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.press-logo.ba-gov {
  background: #003D82;
  color: white;
}

.press-logo.cna {
  background: #1B5E20;
  color: white;
}

.press-logo.seagri {
  background: #F57C00;
  color: white;
}

.press-date {
  font-size: 0.85rem;
  color: #6B7280;
  font-weight: 500;
}

.press-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 2rem 2rem;
}

.press-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.press-excerpt {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.press-card-footer {
  margin-top: auto;
}

.press-read-more {
  color: #0066FF;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.press-card:hover .press-read-more {
  gap: 0.75rem;
}

/* Press Responsive */
@media (max-width: 1024px) {
  .press-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .press-card.featured {
    order: -1;
  }
}

@media (max-width: 768px) {
  .press-section {
    padding: 4rem 1.5rem;
  }

  .press-header {
    margin-bottom: 3rem;
  }

  .press-card {
    padding: 1.5rem;
  }

  .press-title {
    font-size: 2rem;
  }

  .press-card-title {
    font-size: 1.15rem;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 102, 255, 0.1);
  color: #0066FF;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #6B7280;
  margin-top: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.contact-card.featured {
  border: 2px solid #0066FF;
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.2);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.featured-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #0066FF;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-card-icon.investor {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
}

.contact-card-icon.producer {
  background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
  color: white;
}

.contact-card-icon.partner {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: white;
}

.contact-card-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}

.contact-card-description {
  font-size: 0.95rem;
  color: #6B7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: all 0.3s ease;
  background: #F9FAFB;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0066FF;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

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

.contact-submit {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.investor-btn {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
}

.investor-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.producer-btn {
  background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
  color: white;
}

.producer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.partner-btn {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: white;
}

.partner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.contact-info {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-info-text {
  font-size: 1.1rem;
  color: #4B5563;
  line-height: 1.8;
}

.contact-info-text strong {
  color: #1A1A1A;
  font-weight: 700;
}

.contact-info-text a {
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: #0052CC;
  text-decoration: underline;
}

/* Contact Toggle Buttons (Mobile) */
.contact-toggle-buttons {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-toggle-btn {
  padding: 1rem;
  border: 2px solid #E5E7EB;
  background: white;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-toggle-btn.active {
  border-color: #0066FF;
  background: #0066FF;
  color: white;
}

.contact-toggle-btn.investor.active {
  border-color: #10B981;
  background: #10B981;
}

.contact-toggle-btn.partner.active {
  border-color: #8B5CF6;
  background: #8B5CF6;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card.featured {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 1.5rem;
  }

  .contact-header {
    margin-bottom: 2rem;
  }

  .contact-toggle-buttons {
    display: grid;
  }

  .contact-cards {
    display: block;
  }

  .contact-card {
    padding: 2rem;
    display: none;
  }

  .contact-card.active {
    display: block;
  }

  .featured-tag {
    display: none;
  }

  .contact-title {
    font-size: 2rem;
  }
}