/* =============================================
   SEFINSA — Landing Page Styles
   Enhanced with Animations & Full Responsive
   ============================================= */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

@font-face {
  font-family: 'Khula';
  src: url('../FUENTE/Khula-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Khula';
  src: url('../FUENTE/Khula-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Khula';
  src: url('../FUENTE/Khula-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

body {
  font-family: 'Khula', 'Open Sans', sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* VARIABLES */
:root {
  --orange: #F97316;
  --orange-dark: #ea6b0c;
  --orange-light: #FFF7ED;
  --white: #ffffff;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
  --transition: .22s ease;
  
  /* Animation Variables */
  --anim-duration: 0.6s;
  --anim-duration-fast: 0.4s;
  --anim-duration-slow: 0.8s;
  --anim-easing: cubic-bezier(0.16, 1, 0.3, 1);
  --anim-easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --anim-delay-step: 0.1s;
}

/* =============================================
   ANIMATION KEYFRAMES
   ============================================= */

/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Down */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade In Right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale In */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scale In Bounce */
@keyframes scaleInBounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Float */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* Gentle Float */
@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Pulse Glow */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(249,115,22,.35);
  }
  50% {
    box-shadow: 0 8px 30px rgba(249,115,22,.55);
  }
}

/* Shimmer */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Slide In Stagger */
@keyframes slideInStagger {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Draw Line */
@keyframes drawLine {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

/* Rotate In */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Bounce In */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.08);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide Up Reveal */
@keyframes slideUpReveal {
  from {
    opacity: 0;
    transform: translateY(100%);
    clip-path: inset(100% 0 0 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

/* Blur In */
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* Count Up Pulse */
@keyframes countPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Dot Pulse */
@keyframes dotPulse {
  0%, 100% {
    transform: translate(-145%, 0%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-145%, 0%) scale(1.3);
    opacity: 0.7;
  }
}

/* WhatsApp Pulse - Enhanced */
@keyframes pulse {
  0%, 100% { 
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 4px 30px rgba(37,211,102,.7);
    transform: scale(1.05);
  }
}

/* Map State Glow */
@keyframes mapGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(249,115,22,0.4));
  }
}

/* =============================================
   ANIMATION UTILITY CLASSES
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.1s;
}

.animate-on-scroll.animated {
  animation-fill-mode: forwards;
}

.animate-fade-up {
  animation: fadeInUp var(--anim-duration) var(--anim-easing) forwards;
}

.animate-fade-down {
  animation: fadeInDown var(--anim-duration) var(--anim-easing) forwards;
}

.animate-fade-left {
  animation: fadeInLeft var(--anim-duration) var(--anim-easing) forwards;
}

.animate-fade-right {
  animation: fadeInRight var(--anim-duration) var(--anim-easing) forwards;
}

.animate-scale-in {
  animation: scaleIn var(--anim-duration) var(--anim-easing) forwards;
}

.animate-bounce-in {
  animation: bounceIn var(--anim-duration-slow) var(--anim-easing) forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: 'Khula', 'Open Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}

.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249,115,22,.5);
}

.btn--primary:active { 
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(249,115,22,.4);
}

.btn--lg {
  padding: 14px 36px;
  font-size: 1rem;
}

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 16px;
}

.text-orange { color: var(--orange); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-title { margin-bottom: 0; }

.center { text-align: center; }

.bold { font-weight: 700; }

/* =============================================
   NAVBAR
   ============================================= */

/* NAVBAR BASE */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;

  background: rgba(247, 247, 247, 0.95);
  backdrop-filter: blur(8px);

  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

/* EFECTO AL HACER SCROLL */
.navbar.scrolled {
  background: rgba(247, 247, 247, 0.7);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 32px;
  
}

/* LOGO */
.navbar__logo img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar__logo:hover img {
  transform: scale(1.05);
}

/* NAV LINKS */
.navbar__nav {
  display: flex;
  align-items: center;
   
  gap: 32px;
}

.navbar__nav a {
  font-size: 1.0rem;
  font-weight: 500;
  color: #4f6db8; 
  transition: color var(--transition), transform 0.3s ease;
  position: relative;
   font-family: 'Khula-Bold', 'Open Sans', sans-serif;
  
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.navbar__nav a:hover {
  color: var(--orange);
  background: transparent;
  transform: translateY(-2px);
}

.navbar__nav a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #4f6db8;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(90deg, #eef2f7 0%, #f4f6fa 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* =========================
   TEXTO
========================= */
.hero__content {
  max-width: 520px;
  animation: fadeInLeft 0.8s var(--anim-easing);
}

.hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1f2a44;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s var(--anim-easing);
}

.hero__subtitle {
  font-size: 1.3rem;
  color: #5b74b8;
  font-weight: 700;
  margin-top: 10px;
  animation: fadeInUp 0.8s var(--anim-easing) 0.2s backwards;
}

/* Linea decorativa */
.hero__divider {
  width: 70px;
  height: 4px;
  background: #6c83c9;
  border-radius: 2px;
  margin: 16px 0 10px;
  animation: drawLine 0.6s var(--anim-easing) 0.4s backwards;
}


.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s var(--anim-easing) 0.3s backwards;
}

.hero__image-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  animation: scaleIn 0.8s var(--anim-easing) 0.4s backwards;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero__image-circle:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero__image-circle::before,
.hero__image-circle::after {
  display: none;
}

/* Imagen completa */
.hero__image-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.hero__image-circle:hover img {
  transform: scale(1.05);
}

/* =========================
   BADGE (ICONO)
========================= */
.hero__badge {
  position: absolute;
  top: 60%;
  left: -35px;
  transform: translate(35%, -50%);
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  z-index: 3;
  animation: bounceIn 0.8s var(--anim-easing-bounce) 0.6s backwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__badge:hover {
  transform: translate(35%, -50%) scale(1.1);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.hero__badge svg {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}

.hero__badge:hover svg {
  transform: rotate(10deg);
}

/* Badge Float Animation */
.hero__badge {
  animation: bounceIn 0.8s var(--anim-easing-bounce) 0.6s backwards, gentleFloat 4s ease-in-out 1.4s infinite;
}

/* Eliminamos el segundo badge */
.hero__badge--2 {
  display: none;
}

.hero__badge--1 {
  padding: 1rem;
  padding-left: 1.2rem;
  top: 70%;
  left: 0;
}

/* =============================================
   STATS BAR
   ============================================= */

.stats {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ITEMS */
.stats__item {
  flex: 1;
  text-align: center;
  animation: fadeInUp 0.6s var(--anim-easing) backwards;
}

.stats__item:nth-child(1) { animation-delay: 0.1s; }
.stats__item:nth-child(3) { animation-delay: 0.2s; }
.stats__item:nth-child(5) { animation-delay: 0.3s; }
.stats__item:nth-child(7) { animation-delay: 0.4s; }

/* NUMEROS */
.stats__number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f97316;
  
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}

.stats__item:hover .stats__number {
  transform: scale(1.15);
  animation: countPulse 0.5s ease;
}

/* TEXTO */
.stats__label {
  font-size: 0.85rem;
  color: #1f2937;
  font-weight: 600;
  font-family: 'Khula-Bold', 'Open Sans', sans-serif;
}

/* DIVISORES */
.stats__divider {
  width: 1px;
  height: 30px;
  background: #d1d5db;
}

/* SOLO EL ULTIMO ITEM */
.stats__item:last-child .stats__number {
  font-size: 1.2rem;
  font-weight: 700;
}

.stats__item:last-child .stats__label {
  font-size: 0.8rem;
  font-weight: 600;
}

/* =============================================
   ABOUT / QUIENES SOMOS
   ============================================= */
.about {
  padding: 100px 0;
  background: #fff;
}

/* LAYOUT */
.about__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGEN */
.about__image {
  width: 100%;
  max-width: 420px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about__image:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about__image:hover img {
  transform: scale(1.05);
}

/* TEXTO */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1f2a44;
  line-height: 1.35;
  margin-bottom: 18px;
  max-width: 600px;
  
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2a44;
  line-height: 1.35;
  margin: 2.2rem 0;
  max-width: 600px;
}

.about__desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 520px;
}

.section-divider {
  width: 100px;
  height: 4px;
  background: #5b7bd5;
  border-radius: 2px;
  margin: 1rem 0;
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 2s infinite;
}

.section-divider--center {
  width: 100px;
  height: 4px;
  background: #5b7bd5;
  border-radius: 2px;
  margin: 1rem 0; 
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.section-divider--center::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 2s infinite;
}

/* =========================
   CARDS
========================= */
.about__cards {
  margin-top: 9rem;
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: center;
  gap: 28px;
}

/* CARD */
.about__card {
  background: #f9fafb;
  border-radius: 14px;
  padding: 50px 20px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.315);
  transition: all 0.4s var(--anim-easing);
}

.about__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

/* ICONO FLOTANTE */
.about__card-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.8rem;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  transition: all 0.4s var(--anim-easing);
}

.about__card:hover .about__card-icon {
  transform: translateX(-50%) scale(1.15) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

/* ICONO */
.about__card-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.about__card:hover .about__card-icon svg {
  transform: scale(1.1);
}

/* TITULO */
.about__card h3 {
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4f6db8;
  transition: color 0.3s ease;
}

.about__card:hover h3 {
  color: var(--orange);
}

/* TEXTO */
.about__card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  font-family: 'Khula-semibold', 'Open Sans', sans-serif;
}

/* =============================================
   ALLIANCES
   ============================================= */

.alliances {
  padding: 90px 0;
  background: #f8fafc;
  text-align: center;
}

/* TITULO */
.alliances__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2a44;
  max-width: 540px;
  margin: 0 auto 50px;
  line-height: 1.5;
     font-family: 'Khula', 'Open Sans', sans-serif;
  font-weight: 800;
}

/* GRID */
.alliances__grid {
  display: grid;
  grid-template-columns: repeat(5, 180px);
  justify-content: center;
  gap: 30px;
}

/* CARD */
.alliance-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,.10),
    0 4px 10px rgba(0,0,0,.05);
  transition: all 0.4s var(--anim-easing);
}

/* HOVER MAS NOTORIO */
.alliance-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0,0,0,.18),
    0 8px 20px rgba(0,0,0,.1);
}

/* LOGOS */
.alliance-card img {
  max-width: 160px;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(30%);
}

.alliance-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* =============================================
   CTA 
   ============================================= */
.cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #eef2f7 0%, #e5e9f2 100%);
}

/* LAYOUT */
.cta__inner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
}

/* TEXTO */
.cta__content {
  max-width: 480px;
}

.cta__title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1f2a44;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta__subtitle {
  font-size: 1rem;
  color: var(--orange);
  font-weight: 600;
}

/* WRAP */
.cta__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-left: -30px;
}

/* IMAGEN (SIN BORDE EXTRA) */
.cta__image {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.cta__image:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cta__image:hover img {
  transform: scale(1.08);
}

/* ICONO FLOTANTE */
.cta__icon {
  position: absolute;
  right: 10px;
  top: 55%;
  transform: translate(35%, -160%);
  padding: 0.8rem;
  padding-bottom: 1.1rem;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  transition: all 0.4s var(--anim-easing);
  animation: gentleFloat 4s ease-in-out infinite;
}

.cta__icon:hover {
  transform: translate(35%, -160%) scale(1.15);
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

/* ICONO */
.cta__icon svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.cta__icon:hover svg {
  transform: rotate(-10deg);
}

/* =============================================
   REQUIREMENTS — SPACING FIX (SEPARACIÓN PRO)
   ============================================= */

/* SECCIÓN COMPLETA */
.requirements {
  padding-top: 140px;   /* 🔥 MÁS ESPACIO ARRIBA */
  padding-bottom: 100px;
  background: #fff;
}

/* CONTENEDOR INTERNO */
.requirements__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* CONTENIDO TEXTO */
.requirements__content {
  max-width: 480px;
  width: 100%;
}

/* TITULO */
.requirements .section-title {
  font-size: 1.9rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* LINEA */
.section-divider {
  margin: 12px 0 18px;
}

/* DESCRIPCIÓN */
.requirements__desc {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400; 
  color: #6B7280;  
  margin-bottom: 20px;
}

/* LISTA */
.requirements__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITEMS */
.requirements__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e9edf3;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1.0rem;
  font-weight: 600;
  color: #1f2a44;
  transition: all 0.25s ease;
}

/* HOVER */
.requirements__item:hover {
  transform: translateX(6px);
  background: #dde3ec;
}

/* DOT */
.requirements__item .dot {
  width: 8px;
  height: 8px;
  background: #5b7bd5;
  border-radius: 50%;
  flex-shrink: 0;
}

/* IMAGEN */
.requirements__image {
  max-width: 420px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

/* =============================================
   BENEFITS
   ============================================= */
.benefits {
  background: #f8fafc;
  padding: 90px 0;
}

/* HEADER */
.section-header {
  max-width: 650px;
  margin: 0 auto 35px;
  text-align: center;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .1em;
  margin-bottom: 6px;
}

/* GRID (LO IMPORTANTE) */
.benefits__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: all 0.4s var(--anim-easing);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #5b7bd5);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

/* ICONO */
.benefit-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--anim-easing);
}

.benefit-card:hover .benefit-card__icon {
  transform: scale(1.15) rotate(-5deg);
}

.benefit-card__icon svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

/* TEXTO */
.benefit-card h3 {
  font-size: 1.0rem;
  font-weight: 600;
  color: #1f2a44;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--orange);
}

/* =============================================
   PRESENCE
   ============================================= */

.presence {
  padding: 110px 0;
  background: #f8fafc;
}

/* GRID */
.presence__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}

/* =============================================
   MAPA (ARMADO CON 4 IMAGENES)
   ============================================= */
.presence__map {
  position: relative;
  width: 480px;
  height: 480px;
}

/* IMAGENES BASE */
.map-state {
  position: absolute;
  width: 260px;
  height: auto;
  opacity: 0.25;
  transition: all 0.5s var(--anim-easing);
}

/* =============================================
   POSICION EXACTA DE CADA ESTADO
   ============================================= */

/* COAHUILA (arriba centro) */
.map-state[data-state="coahuila"] {
  top: 0;
  left: 100px;
}

/* DURANGO (izquierda) */
.map-state[data-state="durango"] {
  top: 140px;
  left: 0;
}

/* NUEVO LEON (derecha) */
.map-state[data-state="nuevoleon"] {
  top: 140px;
  left: 200px;
}

/* ZACATECAS (abajo) */
.map-state[data-state="zacatecas"] {
  top: 270px;
  left: 110px;
}

/* ACTIVO */
.map-state.active {
  opacity: 1;
  z-index: 2;
  animation: mapGlow 2s ease-in-out infinite;
  transform: scale(1.05);
}

/* =============================================
   CONTENIDO DERECHO
   ============================================= */
.presence__content {
  max-width: 420px;
}

/* TITULO */
.presence__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 8px;
}

/* TEXTO NARANJA */
.presence__highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 35px;
  line-height: 1.4;
}

/* =============================================
   LISTA DE ESTADOS
   ============================================= */
.presence__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.presence__item {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.3s var(--anim-easing);
}

.presence__item .dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  opacity: .4;
  transition: all 0.3s var(--anim-easing);
  transform: scale(1.3) translate(150%, 0%);
}

/* CARD */
.presence__card {
  display: flex;
  background: #eef2f7;
  padding: 1rem 1.8rem;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #1f2a44;
  min-width: 280px;
  transition: all 0.3s var(--anim-easing);
}

.presence__card img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  margin-right: 1rem;
}

/* ACTIVO */
.presence__item.active {
  opacity: 1;
}

.presence__item.active .dot {
  opacity: 1;
  transform: scale(1.6) translate(150%, 0%);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.presence__item.active .presence__card {
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  transform: translateX(8px);
}

/* INACTIVOS */
.presence__item:not(.active) {
  opacity: .55;
}

.presence__item:not(.active):hover {
  opacity: 0.8;
}

.presence__item:not(.active):hover .presence__card {
  transform: translateX(4px);
}

/* =============================================
   INCOME SECTION
   ============================================= */

.income {
  padding: 110px 0;
  background: linear-gradient(90deg, #f8fafc 60%, #e9eff8 100%);
}

/* GRID */
.income__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 90px;
}

/* =============================================
   TEXTO
   ============================================= */
.income__content {
  max-width: 520px;
}

/* TITULO */
.income__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 12px;
  position: relative;
}

/* DESCRIPCION */
.income__desc {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* =============================================
   CARDS (CORREGIDAS)
   ============================================= */
.income__cards {
  display: flex;
  gap: 26px;
  margin-top: 30px;
}

/* CARD */
.income__card {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 14px;
  width: 185px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: all 0.4s var(--anim-easing);
  position: relative;
  overflow: hidden;
}

.income__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

/* HOVER */
.income__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.income__card:hover::before {
  transform: scaleX(1);
}

/* ICONO */
.income__card .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  background: #f9741600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--anim-easing);
}

.income__card:hover .icon {
  transform: scale(1.2) rotate(-5deg);
}

/* TEXTO */
.income__card p {
  font-size: 1.0rem;
  font-weight: 600;
  color: #1f2a44;
  transition: color 0.3s ease;
}

.income__card:hover p {
  color: var(--orange);
}

/* =============================================
   IMAGEN (SIN DOBLE BORDE)
   ============================================= */
.income__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.income__image img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.income__image img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

/* =============================================
   FORM SECTION
   ============================================= */
.form-section {
  padding: 100px 0;
  background: #f5f6f8;
}

/* MISMO CONTENEDOR QUE TODA LA LANDING */
.form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* IMAGEN */
.form-image {
  display: flex;
  justify-content: flex-start;
}

.form-image img {
  width: 420px;
  max-width: 100%;
  transition: transform 0.5s ease;
}

.form-image img:hover {
  transform: scale(1.02);
}

/* TEXTO */
.form-content {
  max-width: 480px;
}

/* TITULO */
.form-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin: 10px 0;
}

/* LINEA */
.line {
  width: 60px;
  height: 4px;
  background: #3b82f6;
  border-radius: 5px;
  margin: 12px 0 20px;
  position: relative;
  overflow: hidden;
}

.line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 2s infinite;
}

/* TEXTO */
.form-content p {
  color: #64748b;
  margin-bottom: 25px;
}

/* GRID INPUTS */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* INPUTS */
.input-group {
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  background: #fff;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.input-group input:focus {
  border-color: #f97316;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.input-group input::placeholder {
  color: #9ca3af;
}

/* BOTON */
.btn-submit {
  margin-top: 20px;
  background: #1e293b;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s var(--anim-easing);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover {
  background: #f97316;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-submit:hover::before {
  width: 300px;
  height: 300px;
}

/* =============================================
   CONTACT / ATENCION AL CLIENTE
   ============================================= */
.contact-section {
  padding: 100px 0;
  background: #f5f6f8;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* TEXTO */
.contact-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

.contact-content p {
  color: #64748b;
  margin-bottom: 30px;
  max-width: 420px;
}

/* ITEMS */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(8px);
}

/* ICONOS */
.icon-box {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: all 0.4s var(--anim-easing);
}

.contact-item:hover .icon-box {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.icon-box img {
  width: 20px;
  transition: transform 0.3s ease;
}

.contact-item:hover .icon-box img {
  transform: scale(1.1);
}

/* TEXTO */
.contact-item span {
  color: #0f172a;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item:hover span {
  color: var(--orange);
}

.email {
  color: #f97316;
}

/* IMAGEN */
.contact-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.contact-image img {
  width: 380px;
  border-radius: 50%;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

/* ICONO FLOTANTE */
.floating-icon {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translate(-30%, -100%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transition: all 0.4s var(--anim-easing);
  animation: gentleFloat 4s ease-in-out infinite;
}

.floating-icon:hover {
  transform: translate(-30%, -100%) scale(1.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.floating-icon img {
  width: 50px;
  transition: transform 0.3s ease;
}

.floating-icon:hover img {
  transform: rotate(-10deg);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #f5f6f8;
}

/* TOP */
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* LOGO */
.footer-logo img {
  width: 180px;
  margin-bottom: 3rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

/* NAV */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #4f6db8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: #f97316;
  transform: translateY(-2px);
}

.footer-nav a:hover::after {
  width: 100%;
}

/* BOTTOM */
.footer-bottom {
  background: #1e293b;
  padding: 15px;
  text-align: center;
}

.footer-bottom p {
  color: #cbd5f5;
  font-size: 0.85rem;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
  animation: none;
}

.whatsapp-float svg,
.whatsapp-float img {
  transition: transform 0.3s ease;
}

.whatsapp-float:hover svg,
.whatsapp-float:hover img {
  transform: rotate(-15deg);
}

/* =============================================
   RESPONSIVE — EXTRA LARGE (>1200px)
   ============================================= */
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
  
  .hero__image-circle {
    width: 480px;
    height: 480px;
  }
  
  .cta__image {
    width: 420px;
    height: 420px;
  }
}

/* =============================================
   ABOUT (QUIÉNES SOMOS) — MOBILE FIX
   ============================================= */

@media (max-width: 900px) {

  .about__inner {
    grid-template-columns: 1fr;
    text-align: center; /* 🔥 centra todo */
  }

  .about__text {
    text-align: center;
  }

  .section-title {
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
  }

  .about__desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================
   RESPONSIVE — MEDIUM DESKTOP (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  .navbar__inner {
    padding: 0 20px;
  }
  
  .navbar__nav {
    gap: 24px;
  }
  
  .hero__inner {
    gap: 40px;
  }
  
  .hero__image-circle {
    width: 360px;
    height: 360px;
  }
  
  .alliances__grid {
    grid-template-columns: repeat(3, 160px);
    gap: 20px;
  }
  
  .cta__inner {
    gap: 2rem;
  }
  
  .cta__image {
    width: 320px;
    height: 320px;
  }
  
  .form-container,
  .contact-container {
    gap: 50px;
  }
  
  .income__cards {
    gap: 18px;
  }
  
  .income__card {
    width: 160px;
    height: 110px;
  }
  
  .about__cards {
    grid-template-columns: repeat(3, 220px);
    gap: 16px;
  }
  
  .benefits__grid {
    gap: 20px;
  }
}

/* =============================================
   RESPONSIVE — TABLET (≤900px)
   ============================================= */
@media (max-width: 900px) {
  .navbar__cta { display: none; }
  
  .navbar__toggle { 
    display: flex; 
  }
  
  .navbar__nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    animation: fadeInDown 0.3s ease;
  }
  
  .navbar__nav.open { 
    display: flex; 
  }
  
  .navbar__nav a { 
    padding: 12px 16px; 
    font-size: .95rem;
    border-radius: 8px;
    font-family: 'Khula', 'Open Sans', sans-serif;
    font-weight: 400;
  }
  
  .navbar__nav a:hover {
    background: #f3f4f6;
  }
  
  .navbar__nav a::after {
    display: none;
  }
  
  /* .navbar { position: relative; } */

  body {
    padding-top: 70px; /* Ajusta según la altura de tu navbar */
  }
  
  /* Hero */
  .hero { 
    padding: 60px 0 50px; 
  }
  
  .hero__inner { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  
  .hero__content { 
    text-align: center;
    max-width: 100%;
    order: 2;
  }
  
  .hero__divider {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__image-wrap { 
    justify-content: center;
    order: 1;
  }
  
  .hero__image-circle { 
    width: 320px; 
    height: 320px; 
  }
  
  .hero__badge {
    width: 70px;
    height: 70px;
    left: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(-50%);
  }
  
  .hero__badge--1 {
    left: 50%;
    top: auto;
    bottom: -20px;
  }
  
  /* Stats */
  .stats__inner { 
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;
  }
  
  .stats__item {
    flex: 0 0 calc(50% - 20px);
    min-width: 120px;
  }
  
  .stats__divider { 
    display: none; 
  }
  
  /* About */
  .about { 
    padding: 70px 0; 
  }
  
  .about__inner { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  
  .about__image { 
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .about__text {
    text-align: center;
  }
  
  .section-divider {
    margin-left: auto;
    margin-right: auto;
  }
  
  .about__cards { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px;
    margin-top: 5rem;
  }
  
  .about__card {
    padding: 45px 15px 20px;
  }
  
  /* Alliances */
  .alliances {
    padding: 70px 0;
  }
  
  .alliances__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .alliance-card {
    padding: 20px;
    height: 85px;
  }
  
  /* Benefits */
  .benefits {
    padding: 70px 0;
  }
  
  .benefits__grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
  }
  
  /* CTA */
  .cta {
    padding: 70px 0;
  }
  
  .cta__inner { 
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .cta__image-wrap {
    margin-left: 0;
  }
  
  .cta__image { 
    width: 300px; 
    height: 300px; 
  }
  
  .cta__icon {
    right: -10px;
    top: 10%;
    transform: translate(0, 0);
  }
  
  /* Requirements */
  .requirements {
    padding: 70px 0;
  }
  
  .requirements__inner { 
    flex-direction: column;
    gap: 40px; 
  }
  
  .requirements__content {
    max-width: 100%;
    text-align: center;
  }
  
  .requirements__list {
    max-width: 100%;
  }
  
  .requirements__image { 
    height: 300px;
    max-width: 100%;
    order: -1; 
  }
  
  /* Presence */
  .presence {
    padding: 70px 0;
  }
  
  .presence__inner { 
    grid-template-columns: 1fr; 
    gap: 40px;
    text-align: center;
  }
  
  .presence__map { 
    width: 100%;
    max-width: 350px;
    height: 350px;
    margin: 0 auto; 
  }
  
  .map-state {
    width: 180px;
  }
  
  .map-state[data-state="coahuila"] {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .map-state[data-state="durango"] {
    top: 100px;
    left: 20px;
  }
  
  .map-state[data-state="nuevoleon"] {
    top: 100px;
    left: auto;
    right: 20px;
  }
  
  .map-state[data-state="zacatecas"] {
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .presence__content {
    max-width: 100%;
  }
  
  .presence__item { 
    justify-content: center; 
  }
  
  /* Income */
  .income {
    padding: 70px 0;
  }
  
  .income__inner { 
    grid-template-columns: 1fr; 
    gap: 40px;
    text-align: center;
  }
  
  .income__content {
    max-width: 100%;
  }
  
  .income__cards {
    justify-content: center;
  }
  
  .income__image { 
    order: -1; 
  }
  
  .income__image img {
    width: 300px;
    height: 300px;
  }
  
  /* Form */
  .form-section {
    padding: 70px 0;
  }
  
  .form-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .form-image {
    justify-content: center;
    order: -1;
  }
  
  .form-image img {
    width: 320px;
  }
  
  .form-content {
    max-width: 100%;
  }
  
  .form-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .btn-submit {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  /* Contact */
  .contact-section {
    padding: 70px 0;
  }
  
  .contact-container { 
    grid-template-columns: 1fr; 
    gap: 40px;
    text-align: center;
  }
  
  .contact-content {
    order: 2;
  }
  
  .contact-content p {
    max-width: 100%;
  }
  
  .contact-items {
    align-items: center;
  }
  
  .contact-image { 
    order: 1;
  }
  
  .contact-image img {
    width: 300px;
  }
  
  .floating-icon {
    right: 50%;
    transform: translate(150%, -100%);
  }
  
  /* Footer */
  .footer-top {
    margin-bottom: 3rem;
  }
  
  .footer-nav {
    gap: 24px;
  }
}

/* =============================================
   RESPONSIVE — SMALL TABLET (≤768px)
   ============================================= */
@media (max-width: 768px) {
  .hero__title { 
    font-size: 2rem; 
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
  }
  
  .hero__image-circle { 
    width: 280px; 
    height: 280px; 
  }
  
  .stats__item {
    flex: 0 0 calc(50% - 10px);
  }
  
  .about__cards { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px;
    margin-top: 4rem;
  }
  
  .about__card {
    padding: 50px 20px 24px;
  }
  
  .alliances__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .alliance-card {
    height: 80px;
  }
  
  .benefits__grid {
    gap: 16px;
  }
  
  .benefit-card {
    padding: 30px 15px;
  }
  
  .cta__title {
    font-size: 1.7rem;
  }
  
  .cta__image { 
    width: 260px; 
    height: 260px; 
  }
  
  .cta__icon {
    width: 65px;
    height: 65px;
  }
  
  .requirements__image {
    height: 260px;
  }
  
  .presence__map { 
    max-width: 300px;
    height: 300px;
  }
  
  .map-state {
    width: 150px;
  }
  
  .income__cards {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .income__card {
    width: calc(50% - 13px);
    min-width: 140px;
  }
  
  .form-image img {
    width: 280px;
  }
  
  .contact-image img {
    width: 260px;
  }
  
  .footer-nav {
    gap: 16px;
  }
  
  .footer-nav a {
    font-size: 13px;
  }
}

/* =============================================
   RESPONSIVE — LARGE MOBILE (≤640px)
   ============================================= */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 50px 0 40px;
  }
  
  .hero__title { 
    font-size: 1.8rem; 
  }
  
  .hero__image-circle { 
    width: 260px; 
    height: 260px; 
  }
  
  .hero__badge {
    width: 60px;
    height: 60px;
  }
  
  .hero__badge svg {
    width: 28px;
    height: 28px;
  }
  
  .stats {
    padding: 20px 0;
  }
  
  .stats__inner { 
    gap: 16px; 
  }
  
  .stats__number { 
    font-size: 1.1rem; 
  }
  
  .stats__label {
    font-size: 0.75rem;
  }
  
  .about {
    padding: 60px 0;
  }
  
  .about__cards { 
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .alliances {
    padding: 60px 0;
  }
  
 
  
  .alliances__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .alliance-card {
    padding: 16px;
    height: 70px;
  }
  
  .alliance-card img {
    max-width: 100px;
    max-height: 40px;
  }
  
  .benefits {
    padding: 60px 0;
  }
  
  .benefits__grid { 
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta {
    padding: 60px 0;
  }
  
  .cta__title {
    font-size: 1.5rem;
  }
  
  .cta__image {
    width: 240px;
    height: 240px;
  }
  
  .requirements {
    padding: 60px 0;
  }
  
  .requirements__image {
    height: 240px;
  }
  
  .presence {
    padding: 60px 0;
  }
  
  .presence__title {
    font-size: 1.4rem;
  }
  
  .presence__map {
    max-width: 280px;
    height: 280px;
  }
  
  .map-state {
    width: 140px;
  }
  
  .presence__card {
    padding: 0.8rem 1.2rem;
    min-width: 240px;
    font-size: 0.85rem;
  }
  
  .income {
    padding: 60px 0;
  }
  
  .income__title {
    font-size: 1.5rem;
  }
  
  .income__card {
    width: calc(50% - 10px);
    min-width: 130px;
    height: 100px;
    padding: 16px 12px;
  }
  
  .income__card p {
    font-size: 0.75rem;
  }
  
  .income__image img {
    width: 260px;
    height: 260px;
  }
  
  .form-section {
    padding: 60px 0;
  }
  
  .form-grid { 
    grid-template-columns: 1fr; 
  }
  
  .form-image img {
    width: 240px;
  }
  
  .form-content h2 {
    font-size: 24px;
  }
  
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-content h2 {
    font-size: 24px;
  }
  
  .contact-image img {
    width: 240px;
  }
  
  .floating-icon {
    width: 65px;
    height: 65px;
  }
  
  .floating-icon img {
    width: 40px;
  }
  
  .footer-top {
    padding: 40px 20px 30px;
    margin-bottom: 2rem;
  }
  
  .footer-logo img {
    width: 150px;
    margin-bottom: 2rem;
  }
  
  .footer-nav {
    gap: 12px;
  }
  
  .footer-nav a {
    font-size: 12px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤560px)
   ============================================= */
@media (max-width: 560px) {
  .hero__title { 
    font-size: 1.6rem; 
  }
  
  .hero__subtitle {
    font-size: 1rem;
  }
  
  .hero__image-circle { 
    width: 240px; 
    height: 240px; 
  }
  
  .stats__item {
    flex: 0 0 100%;
  }
  
  .stats__number { 
    font-size: 1.2rem; 
  }
  
  .income__cards {
    gap: 12px;
  }
  
  .whatsapp-float { 
    bottom: 20px; 
    right: 20px; 
    width: 50px; 
    height: 50px; 
  }
  
  .btn--lg { 
    padding: 13px 28px; 
    font-size: .92rem; 
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  
  .navbar__inner {
    height: 70px;
    padding: 0 16px;
  }
  
  .navbar__logo img {
    height: 45px;
  }
  
  .navbar__nav {
    top: 70px;
  }
  
  .hero {
    padding: 40px 0 35px;
  }
  
  .hero__title { 
    font-size: 1.5rem; 
  }
  
  .hero__image-circle { 
    width: 220px; 
    height: 220px; 
  }
  
  .hero__badge {
    width: 55px;
    height: 55px;
  }
  
  .section-title {
    font-size: 1.35rem;
  }
  
  .about,
  .alliances,
  .benefits,
  .cta,
  .requirements,
  .presence,
  .income,
  .form-section,
  .contact-section {
    padding: 50px 0;
  }
  
  .about__image {
    height: 260px;
  }
  
  .cta__image {
    width: 220px;
    height: 220px;
  }
  
  .cta__icon {
    width: 55px;
    height: 55px;
  }
  
  .income__card {
    width: 100%;
    max-width: 180px;
    height: 95px;
  }
  
  .income__image img {
    width: 220px;
    height: 220px;
  }
  
  .presence__map {
    max-width: 250px;
    height: 250px;
  }
  
  .map-state {
    width: 120px;
  }
  
  .presence__card {
    min-width: 200px;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
  
  .requirements__image {
    height: 220px;
  }
  
  .form-image img,
  .contact-image img {
    width: 200px;
  }
  
  .floating-icon {
    width: 55px;
    height: 55px;
  }
  
  .floating-icon img {
    width: 35px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
}

/* =============================================
   RESPONSIVE — EXTRA SMALL MOBILE (≤375px)
   ============================================= */
@media (max-width: 375px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .hero__title { 
    font-size: 1.4rem; 
  }
  
  .hero__image-circle { 
    width: 200px; 
    height: 200px; 
  }
  
  .hero__badge {
    width: 50px;
    height: 50px;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .cta__image {
    width: 200px;
    height: 200px;
  }
  
  .income__image img {
    width: 200px;
    height: 200px;
  }
  
  .presence__map {
    max-width: 220px;
    height: 220px;
  }
  
  .map-state {
    width: 100px;
  }
  
  .alliance-card {
    height: 60px;
    padding: 12px;
  }
  
  .alliance-card img {
    max-width: 80px;
    max-height: 35px;
  }
  
  .btn--primary {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .btn--lg {
    padding: 12px 24px;
    font-size: 0.88rem;
  }
}

/* =============================================
   RESPONSIVE — MINIMUM (≤320px)
   ============================================= */
@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  
  .hero__title { 
    font-size: 1.3rem; 
  }
  
  .hero__image-circle { 
    width: 180px; 
    height: 180px; 
  }
  
  .stats__item {
    min-width: 100%;
  }
  
  .about__card {
    padding: 40px 12px 18px;
  }
  
  .about__card-icon {
    width: 50px;
    height: 50px;
    top: -22px;
  }
  
  .presence__map {
    max-width: 200px;
    height: 200px;
  }
  
  .map-state {
    width: 90px;
  }
  
  .income__card {
    max-width: 160px;
  }
}

/* =============================================
   PREFERS REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .whatsapp-float {
    animation: none;
  }
  
  .hero__badge {
    animation: none;
  }
  
  .cta__icon,
  .floating-icon {
    animation: none;
  }
}

/* =============================================
   LANDSCAPE MOBILE
   ============================================= */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 30px 0;
  }
  
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero__content {
    order: 1;
    text-align: left;
  }
  
  .hero__divider {
    margin-left: 0;
  }
  
  .hero__image-wrap {
    order: 2;
  }
  
  .hero__image-circle {
    width: 200px;
    height: 200px;
  }
  
  .navbar__inner {
    height: 60px;
  }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  .navbar,
  .whatsapp-float,
  .hero__badge,
  .cta__icon,
  .floating-icon {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    padding-top: 90px;
  }
  
  .hero,
  .about,
  .alliances,
  .benefits,
  .cta,
  .requirements,
  .presence,
  .income,
  .form-section,
  .contact-section {
    padding: 30px 0;
    page-break-inside: avoid;
  }
}
