/* 
  dataRD Premium Design System & Stylesheet (Optimized for Centralization & Clarity)
  Design style: Modern Dark Mode, Sleek Gradients, Glassmorphism, Rounded UI
*/

:root {
  /* Colors - Refined Premium Light Beige Corporate Identity */
  --color-primary: #1e3a8a;
  --color-primary-rgb: 30, 58, 138;
  --color-secondary: #0f172a;
  --color-secondary-rgb: 15, 23, 42;
  --color-accent: #059669;
  --color-accent-rgb: 5, 150, 105;
  
  --bg-body: #fdfbf7;
  --bg-card: #ffffff;
  --bg-card-hover: #faf7f2;
  --bg-navbar: rgba(253, 251, 247, 0.85);
  
  --text-primary: #1a1e26;
  --text-secondary: #4b5563;
  --text-muted: #8c96a3;
  --border-color: rgba(26, 30, 38, 0.08);
  
  /* Fonts & Shadows */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(26, 30, 38, 0.04);
  --shadow-md: 0 10px 30px rgba(26, 30, 38, 0.05);
  --shadow-lg: 0 20px 45px rgba(26, 30, 38, 0.08);
  --shadow-glow-primary: 0 8px 24px rgba(30, 58, 138, 0.08);
  --shadow-glow-accent: 0 8px 24px rgba(5, 150, 105, 0.12);
  --shadow-glow-purple: 0 8px 24px rgba(15, 23, 42, 0.05);
  --shadow-glow-green: 0 8px 24px rgba(37, 211, 102, 0.15);
  
  /* Layout */
  --max-width: 1280px; /* Increased slightly to fill space better on desktop */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* CSS Reset & General Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* Scroll Reveal transitions */
.reveal-section {
  opacity: 0;
  transform: translateY(35px);
  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);
  will-change: opacity, transform;
}

.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Background glows */
body::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.04) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: "";
  position: absolute;
  top: 35%;
  right: -10%;
  width: 50%;
  height: 700px;
  background: radial-gradient(circle, rgba(var(--color-secondary-rgb), 0.03) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.8rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.gradient-text {
  background: linear-gradient(135deg, #0f172a 30%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-sec {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px; /* Rounded pill style */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  gap: 0.75rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #3b82f6);
  color: #ffffff;
  box-shadow: var(--shadow-glow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30, 58, 138, 0.35);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #20ba5a);
  color: #ffffff;
  box-shadow: var(--shadow-glow-green);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-card-hover);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), #047857);
  color: #ffffff;
  box-shadow: var(--shadow-glow-accent);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(5, 150, 105, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--color-primary);
}

.btn-large {
  padding: 1.25rem 3.5rem;
  font-size: 1.25rem;
}

.btn-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.btn-large .btn-icon-img {
  width: 34px;
  height: 34px;
}

/* Header & Glassmorphism Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.25rem 0;
  transition: padding 0.3s ease, background-color 0.3s ease;
  position: relative;
}

header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.85rem 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.7rem;
  font-weight: 400;
  color: #0f172a;
  text-decoration: none;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-bold {
  font-weight: 800;
  color: #0f172a;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.25s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover {
  color: #472F8C;
  transform: scale(1.1) translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Sections General */
section {
  padding: 5rem 0; /* Reduced padding for tighter spacing and better layout flow */
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(55, 99, 244, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  border: 1px solid rgba(55, 99, 244, 0.15);
  margin-bottom: 1.25rem;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* Hero Section (Stacked & Centralized Layout) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

@media (min-width: 769px) {
  .hero-slideshow {
    top: 99px;
  }
}

.hero-slides-wrapper {
  display: flex;
  width: 300%; /* For 3 slides */
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  flex: 0 0 33.333%; /* Each slide occupies exactly 100% of viewport width */
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-slide.slide-1 {
  background-image: url('./assets/img/slide_1.png');
}
.hero-slide.slide-2 {
  background-image: url('./assets/img/slide_2.png');
}
.hero-slide.slide-3 {
  background-image: url('./assets/img/slide_3.png');
}

.hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* No dark overlay to ensure maximum clarity of original slide text */
  z-index: 2;
}


.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #2DDDD8;
  color: #2DDDD8;
  transform: translateY(-50%) scale(1.08);
}

.hero-nav-btn.prev-btn {
  left: 2rem;
}

.hero-nav-btn.next-btn {
  right: 2rem;
}

.slideshow-indicators {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 0.75rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #2DDDD8;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(45, 221, 216, 0.8);
}

@media (max-width: 768px) {
  .hero-slide.slide-1 {
    background-image: url('./assets/img/slide_2_mob.png') !important;
  }
  
  .hero-slide.slide-2 {
    background-image: url('./assets/img/slide_3_mob.png') !important;
  }
  
  .hero-slide.slide-3 {
    background-image: url('./assets/img/slide_2_mob.png') !important;
  }

  .section-hero {
    height: 160vh;
    min-height: 160vh !important;
  }
  
  .hero-slide {
    background-size: contain !important;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-color: #0d225d;
  }
  
  .hero-text-container {
    padding: 1.5rem 1rem;
    gap: 1rem;
    width: 100%;
  }

  .hero-visible-title {
    font-size: 2rem;
  }

  .hero-visible-text {
    font-size: 0.95rem;
  }
  
  .hero-nav-btn {
    width: 36px;
    height: 36px;
  }

  .hero-nav-btn.prev-btn {
    left: 0.75rem;
  }

  .hero-nav-btn.next-btn {
    right: 0.75rem;
  }

  .slideshow-indicators {
    bottom: 8%;
  }
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  gap: 2rem;
}

.hero-title {
  order: 1;
  font-size: 3.1rem; /* Slightly reduced visual font size to save space */
  line-height: 1.15;
  margin-bottom: 0.5rem;
  text-align: center;
  max-width: 960px;
}

.hero-text-container {
  order: 2;
  width: 100%;
  max-width: 840px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

.hero-quote {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 2rem 0;
  background: linear-gradient(135deg, #0f172a 40%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--color-primary);
  position: relative;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
}

/* Hero Image Elections Poster visual */
.hero-image-container {
  order: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.poster-wrapper {
  width: 100%;
  max-width: 960px; /* Make the wide banner showcase beautifully */
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.poster-wrapper:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

.hero-poster-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  display: block;
}

/* Para Quem É a DataRD Section */
.section-for-whom {
  background-color: #f1f5f9;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.for-whom-card {
  background: linear-gradient(135deg, #ffffff 0%, rgba(45, 221, 216, 0.05) 100%);
  border: 1px solid #000000;
  border-radius: var(--border-radius-md);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.for-whom-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #2DDDD8);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.for-whom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 221, 216, 0.15);
  border-color: #2DDDD8;
}

.for-whom-card:hover::before {
  opacity: 1;
}

.for-whom-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(45, 221, 216, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.for-whom-card:hover .for-whom-icon-wrapper {
  background-color: var(--color-primary);
  color: #ffffff;
}

.for-whom-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.for-whom-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Sobre Nós (Bio) Section */
.section-about {
  background-color: #faf7f2; /* Soft beige background to separate section visually */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-split-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 0;
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-3d-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.logo-3d-img:hover {
  transform: translateY(-5px);
}

.since-badge {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95); /* Light background for badge */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.since-year {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-accent);
}

.since-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro-text {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Work stages grid layout */
.stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.stage-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stage-card:hover {
  transform: translateY(-8px);
  background-color: var(--bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.stage-card:hover::before {
  opacity: 1;
}

.stage-num {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.2) 0%, rgba(var(--color-accent-rgb), 0.1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.stage-card h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.stage-card p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Ratings Badge in Partners Carousel */
.partners-rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: rgba(45, 221, 216, 0.06);
  border: 1px solid rgba(45, 221, 216, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin: -1.5rem auto 2.5rem;
  box-shadow: var(--shadow-sm);
}
.stars-gold {
  color: #ffbd2e;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}
.rating-val {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.rating-info {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Nossas Soluções Section */
.section-solutions {
  background-color: #ffffff;
}

.solutions-split-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.solutions-visual-column {
  position: relative;
  border-radius: var(--border-radius-lg);
  padding: 0.5rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.5s ease;
}

.solutions-visual-column:hover {
  transform: scale(1.01);
}

.solutions-real-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-md);
  object-fit: cover;
}

.solutions-content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solutions-intro-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.solutions-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.solutions-checklist li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.checklist-icon {
  width: 32px;
  height: 32px;
  background: rgba(45, 221, 216, 0.15);
  color: #0d9488;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.checklist-icon svg {
  stroke: #0d9488;
}

.checklist-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.checklist-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.solutions-cta {
  display: flex;
  justify-content: flex-start;
}

/* Diferenciais Section */
.section-differentials {
  background-color: #1e1b4b; /* Premium deep indigo/purple */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Dark mode overrides for differentials section */
.section-differentials .gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #2DDDD8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-differentials .section-description {
  color: rgba(255, 255, 255, 0.8) !important;
}

.section-differentials .section-badge {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #2DDDD8 !important;
  border: 1px solid rgba(45, 221, 216, 0.3) !important;
}

.section-differentials .differential-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.section-differentials .differential-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #2DDDD8 !important;
  box-shadow: 0 10px 30px rgba(45, 221, 216, 0.15) !important;
}

.section-differentials .differential-card h3 {
  color: #ffffff !important;
}

.section-differentials .differential-card p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.section-differentials .diff-icon {
  background: rgba(45, 221, 216, 0.12) !important;
  color: #2DDDD8 !important;
}

.section-differentials .diff-icon svg {
  stroke: #2DDDD8 !important;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.differential-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 2rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.differential-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.diff-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--color-primary-rgb), 0.06);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-icon svg {
  stroke: var(--color-primary);
}

.differential-card:nth-child(even) .diff-icon {
  background: rgba(var(--color-accent-rgb), 0.06);
  color: var(--color-accent);
}

.differential-card:nth-child(even) .diff-icon svg {
  stroke: var(--color-accent);
}

.differential-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0;
}

.differential-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Interactive section layout */
.methodology-interactive-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-sm);
}

.methodology-interactive-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.methodology-interactive-text p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.action-list-mini {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.action-list-item {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.action-list-item strong {
  color: var(--text-primary);
}

/* Interactive Chart Mockup */
.methodology-interactive-visual {
  display: flex;
  justify-content: center;
}

.chart-mockup {
  width: 100%;
  max-width: 440px;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: visible;
}

.chart-mockup::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.chart-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.chart-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chart-dots {
  display: flex;
  gap: 6px;
}

.chart-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
}

.chart-dots span:nth-child(1) { background-color: #ff5f56; }
.chart-dots span:nth-child(2) { background-color: #ffbd2e; }
.chart-dots span:nth-child(3) { background-color: #27c93f; }

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.chart-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chart-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
}

.chart-candidate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chart-color-indicator {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.indicator-cand-a { background-color: var(--color-primary); }
.indicator-cand-b { background-color: var(--color-accent); }
.indicator-cand-c { background: rgba(24, 27, 34, 0.1); }

.chart-percent {
  color: var(--text-primary);
}

.chart-track {
  width: 100%;
  height: 12px;
  background-color: rgba(24, 27, 34, 0.05);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.chart-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
  width: 0;
}

/* Floating badge */
.floating-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}

.badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(5, 150, 105, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  stroke: var(--color-accent);
}

.badge-text h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 700;
}

.badge-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Stats Count Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  margin-bottom: 0;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background-color: var(--border-color);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  background: linear-gradient(135deg, #0f172a 40%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Lines of Action */
.lines-of-action {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  margin-bottom: 5rem;
  box-shadow: var(--shadow-sm);
}

.lines-of-action h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 3rem;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.action-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.action-item::before {
  content: "";
  width: 24px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.action-item h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
}

.action-item p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Download Presentation PDF Banner */
.download-banner {
  background: linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.download-banner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.banner-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-text h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.banner-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Reviews / Social Proof Section */
.section-reviews {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.reviews-summary {
  max-width: 600px;
  margin: 0 auto;
}

.reviews-summary h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.rating-stars {
  font-size: 2rem;
  color: #ffbd2e;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(255, 189, 46, 0.15);
}

.rating-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.rating-num {
  font-weight: 800;
  color: var(--text-primary);
}

.review-count {
  font-weight: 600;
  color: var(--color-primary);
}

/* Partners Infinite Carousel Section */
.section-partners-carousel {
  padding: 2.5rem 0;
  background-color: #f8fafc;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.partners-carousel-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
  background: transparent;
}

.logo-carousel::before,
.logo-carousel::after {
  background: linear-gradient(to right, var(--bg-body) 0%, transparent 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 150px;
  z-index: 2;
  top: 0;
}

.logo-carousel::before {
  left: 0;
}

.logo-carousel::after {
  right: 0;
  transform: rotateZ(180deg);
}

.logo-carousel-track {
  display: flex;
  width: calc(240px * 14);
  animation: scroll-logos 28s linear infinite;
}

.logo-carousel-slide {
  width: 240px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  flex-shrink: 0;
}

.logo-carousel-slide img {
  max-width: 100%;
  max-height: 95px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.logo-carousel-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-240px * 7));
  }
}

@keyframes scroll-logos-mobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-160px * 7));
  }
}

/* Contact Section (Simplified & Centered Card) */
.contact-container-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact-cta {
  text-align: center;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 5rem 4rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 760px;
  width: 100%;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0f172a 40%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-cta p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 540px;
}

/* Footer Section with details */
footer {
  background:
    radial-gradient(circle at top left, rgba(var(--color-primary-rgb), 0.08), transparent 32%),
    linear-gradient(180deg, #f8f4ee 0%, #f3efe8 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 5rem 0 4rem;
}

.footer-container-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-upper {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.95fr 1.1fr;
  align-items: flex-start;
  gap: 2rem;
  /* border-bottom: 1px solid rgba(15, 23, 42, 0.08); */
  /* padding-bottom: 3rem; */
}

.footer-brand {
  max-width: 420px;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 9px;
  background: rgba(var(--color-primary-rgb), 0.08);
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  line-height: 1.75;
}

.footer-brand-highlight {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0.75rem;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 1.5rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), #2563eb);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(30, 58, 138, 0.22);
}

.footer-links-col,
.footer-contact-col,
.footer-info {
  min-width: 0;
}

.footer-links-col h4,
.footer-contact-col h4,
.footer-info h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  /* gap: 0.9rem; */
  font-size: 0.9rem;
}

.footer-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-contact-list {
  display: grid;
  gap: 0.9rem;
}

.footer-contact-card,
.footer-legal-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--color-primary-rgb), 0.22);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.footer-contact-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-contact-value {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

.footer-legal-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  text-align: left;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-meta-links {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-meta-divider {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.3);
}

.footer-meta-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* WhatsApp Floating Button (Capsule Layout) */
.whatsapp-floating-capsule {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #25d366;
  border-radius: 50px;
  padding: 8px 24px 8px 8px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: wa-intro 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.whatsapp-floating-capsule:hover {
  transform: scale(1.05) translateY(-3px);
  background-color: #20ba5a;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.wa-capsule-icon-container {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-capsule-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.wa-capsule-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
  font-family: inherit;
  line-height: 1.2;
}

.wa-capsule-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.wa-capsule-phone {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 2px;
  white-space: nowrap;
}

@keyframes wa-intro {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .for-whom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .hero-title {
    order: 1;
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
  }

  .hero-image-container {
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  .poster-wrapper {
    width: 100%;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text-container {
    order: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text, .hero-text-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
  }

  .hero-text-sub {
    margin-bottom: 2rem;
  }

  .hero-ctas {
    justify-content: center;
  }
  
  .about-split-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .logo-3d-img {
    margin: 0 auto;
  }
  
  .since-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -25px;
  }
  
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .methodology-interactive-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .action-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-cta {
    padding: 4rem 2rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-slide.slide-1 {
    background-image: url('./assets/img/slide_3_mob.png') !important;
  }
  .hero-slide.slide-2 {
    background-image: url('./assets/img/slide_2_mob.png') !important;
  }
  .hero-slide.slide-3 {
    background-image: url('./assets/img/slide_3_mob.png') !important;
  }

  .section-hero {
    height: 136vw !important;
    min-height: 136vw !important;
    margin-top: 0 !important;
  }

  .hero-slide {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #0d225d;
  }

  section {
    padding: 3.5rem 0;
  }
  
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.8rem; }
  
  .navbar {
    padding: 0.75rem 0 !important;
  }
  
  .logo-img {
    height: 56px !important;
  }
  
  .brand-logo {
    font-size: 1.25rem !important;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }

  /* Hamburger Menu Animation to X */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .section-hero {
    padding: 8rem 0 4rem;
    min-height: auto;
  }

  .hero-container {
    gap: 2.5rem;
  }
  
  .hero-image-container {
    display: none;
  }

  .hero-quote {
    font-size: 1.5rem;
    margin: 1.5rem 0;
  }

  .stages-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .solutions-split-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .solutions-visual-column {
    max-width: 100%;
  }

  .solutions-cta {
    justify-content: center;
  }

  .methodology-interactive-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
    gap: 2.5rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .stat-item:nth-child(even)::after {
    display: none;
  }

  .lines-of-action {
    padding: 2.5rem 1.5rem;
  }
  
  .download-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }
  
  .contact-cta {
    padding: 3.5rem 2rem;
  }
  
  .contact-cta h2 {
    font-size: 2.2rem;
  }
  
  .footer-upper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-info {
    align-items: center;
    text-align: center;
  }
  
  .partners-logos {
    gap: 3rem;
  }
  
  .whatsapp-floating-capsule {
    bottom: 1rem;
    /* right: 1rem; */
    /* padding: 6px 16px 6px 6px; */
    /* gap: 0.5rem; */
    
  }
  
  .wa-capsule-icon-container {
    width: 38px;
    height: 38px;
  }
  
  .wa-capsule-icon {
    width: 20px;
    height: 20px;
  }

  .wa-capsule-title {
    font-size: 12px;
  }

  .wa-capsule-phone {
    font-size: 11px;
    margin-top: 1px;
  }

  /* Prevent background glow overlays from causing overflow on tablets and mobile */
  body::before, body::after,
  .chart-mockup::before,
  .download-banner::after,
  .contact-cta::before {
    display: none !important;
  }

  /* For Whom Card Hover Fix for all touch devices (width <= 768px) */
  .for-whom-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(45, 221, 216, 0.05) 100%) !important;
    border: 1px solid #000000 !important;
    box-shadow: 0 10px 30px rgba(45, 221, 216, 0.15) !important;
    transform: translateY(-5px) !important;
  }
  
  .for-whom-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--color-primary), #2DDDD8) !important;
    opacity: 1 !important;
    display: block !important;
  }
  
  .for-whom-card h3 {
    color: var(--color-secondary) !important;
  }
  
  .for-whom-card p {
    color: var(--text-secondary) !important;
  }
  
  .for-whom-card .for-whom-icon-wrapper {
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
  }
  
  .for-whom-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(45, 221, 216, 0.15) !important;
    border-color: #000000 !important;
  }
  
  .for-whom-card:hover::before {
    opacity: 1 !important;
  }
  
  .for-whom-card:hover .for-whom-icon-wrapper {
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
  }
}

@media (max-width: 600px) {
  .for-whom-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .for-whom-card {
    padding: 2.5rem 1.5rem;
  }
  
  h1 {
    font-size: 1.95rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }

  .section-hero {
    padding: 7rem 0 3rem;
  }
  
  .hero-quote {
    font-size: 1.3rem;
    margin: 1rem 0;
  }

  .hero-ctas {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .btn {
    width: auto;
    display: inline-flex;
    max-width: 100%;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
  }

  .btn-large {
    width: auto;
    display: inline-flex;
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }
  
  /* Replace vertical border dividers with horizontal ones for single-column layout */
  .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    right: 15%;
    left: 15%;
    top: auto;
    width: 70%;
    height: 1px;
    background-color: var(--border-color);
  }
  
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(even)::after {
    display: block;
  }
  
  .stage-card {
    padding: 2rem 1.25rem;
  }

  .lines-of-action {
    padding: 2rem 1.25rem;
  }
  
  .solutions-grid {
    gap: 1.5rem;
  }

  .solution-card {
    padding: 2rem 1.25rem;
    gap: 1.25rem;
  }


  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .differential-card {
    padding: 1.75rem 1.25rem;
  }
  
  .download-banner {
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }
  
  .contact-cta {
    padding: 2.5rem 1.25rem;
  }
  
  .contact-cta h2 {
    font-size: 1.85rem;
  }

  .contact-cta p {
    margin-bottom: 2rem;
  }

  .floating-badge {
    left: -10px;
    bottom: -20px;
    padding: 0.6rem 1rem;
  }
}

/* ==========================================================================
   TIMELINE (Como Funciona) SECTION
   ========================================================================== */
.section-how-it-works {
  background: linear-gradient(135deg, #090d16 0%, #0f172a 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0;
}

.section-how-it-works .section-badge {
  background-color: rgba(45, 221, 216, 0.1);
  color: #2DDDD8;
  border-color: rgba(45, 221, 216, 0.2);
}

.section-how-it-works .gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, #2DDDD8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-how-it-works .section-description {
  color: rgba(255, 255, 255, 0.7);
}

.section-how-it-works .timeline-node {
  background: #1e293b;
  border-color: #2DDDD8;
  color: #2DDDD8;
  box-shadow: 0 4px 15px rgba(45, 221, 216, 0.2);
}

.section-how-it-works .timeline-step:nth-child(even) .timeline-node {
  border-color: #2DDDD8;
  color: #2DDDD8;
}

.section-how-it-works .timeline-content h3 {
  color: #ffffff;
}

.section-how-it-works .timeline-content p {
  color: rgba(255, 255, 255, 0.7);
}

.section-how-it-works .how-it-works-timeline::before {
  background: linear-gradient(90deg, #1e3a8a 0%, #2DDDD8 100%);
}

.how-it-works-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 5rem;
}

.how-it-works-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  z-index: 1;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.timeline-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 4px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step:nth-child(even) .timeline-node {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.timeline-step:hover .timeline-node {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-primary);
}

.timeline-step:nth-child(even):hover .timeline-node {
  box-shadow: var(--shadow-glow-accent);
}

.timeline-content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   AUTHORITY SECTION
   ========================================================================== */
.section-authority {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   CTA INTERMEDIARIO SECTION
   ========================================================================== */
.section-cta-intermediate {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-intermediate-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 2;
  position: relative;
}

.section-cta-intermediate h2 {
  font-size: 2.6rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-cta-intermediate p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.section-cta-intermediate::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.section-faq {
  background-color: #f8fafc;
}

.faq-accordion {
  max-width: 800px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(30, 58, 138, 0.15);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
  color: var(--color-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 2.5rem 1.75rem 2.5rem;
  border-top: 1px solid rgba(24, 27, 34, 0.02);
}

.faq-answer-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION SPLIT LAYOUT
   ========================================================================== */
.section-contact {
  background-color: #faf7f2;
  border-top: 1px solid var(--border-color);
  padding: 8rem 0;
}

.contact-split-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-block h2 {
  font-size: 2.8rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-detail-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-primary);
}

.contact-form-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-static-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   FOOTER EXTRA STYLES
   ========================================================================== */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.footer-priv-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-priv-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon-link {
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon-link:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE OVERRIDES (FAQ, Timeline, Contact, CTA Intermediario)
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-upper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-split-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .contact-info-block {
    align-items: center;
    text-align: center;
  }
  
  .contact-details {
    align-items: center;
    width: 100%;
  }
  
  .contact-detail-item {
    text-align: left;
    width: 100%;
    max-width: 360px;
    justify-content: flex-start;
  }
  
  .contact-form-block {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-upper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-brand-logo,
  .footer-badge,
  .footer-cta-link {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact-list {
    max-width: 420px;
    margin: 0 auto;
  }

  .footer-legal-card {
    text-align: center;
  }

  .how-it-works-timeline {
    flex-direction: column;
    gap: 3rem;
    margin-top: 3.5rem;
  }
  
  .how-it-works-timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;
    width: 4px;
    height: 100%;
  }
  
  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    gap: 1.5rem;
  }
  
  .timeline-node {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .section-cta-intermediate h2 {
    font-size: 2.2rem;
  }
  
  .faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
  }
  
  .faq-answer-content {
    padding: 0 2rem 1.5rem 2rem;
  }
  
  .footer-lower {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info-block h2 {
    font-size: 2.2rem;
  }
  
  .section-cta-intermediate h2 {
    font-size: 1.85rem;
  }
  
  .section-cta-intermediate p {
    font-size: 1.1rem;
  }

  /* Mobile Carousel Adjustments */
  .logo-carousel-track {
    width: calc(160px * 14);
    animation: scroll-logos-mobile 14s linear infinite;
  }
  
  .logo-carousel-slide {
    width: 160px;
    padding: 0 1rem;
  }
  
  .logo-carousel-slide img {
    max-height: 65px;
    opacity: 0.8;
  }
}
