/* =============================================
   ADOPS LATAM — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #2758B2;
  --primary-dark: #1a3d85;
  --primary-light: #3a6fd4;
  --secondary: #44b6d1;
  --secondary-light: #6dcde3;
  --dark: #07111f;
  --dark-2: #0d1e35;
  --gray: #7C7C7C;
  --gray-light: #f0f4f8;
  --gray-mid: #e2e8f0;
  --white: #ffffff;
  --text: #162033;
  --text-soft: #4a5568;
  --border: rgba(39, 88, 178, 0.12);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 4px rgba(7, 17, 31, 0.06);
  --shadow-md: 0 4px 20px rgba(7, 17, 31, 0.10);
  --shadow-lg: 0 12px 40px rgba(7, 17, 31, 0.14);
  --shadow-xl: 0 24px 60px rgba(7, 17, 31, 0.18);

  --header-h: 72px;
  --transition: 0.25s ease;
  --max-w: 1180px;
}

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

html { scroll-behavior: smooth; }

.footer-logo{
  scale: 4;
  margin-left: 40px;
}


*{
  font-family: 'Inter', sans-serif !important;
}


body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}






.results-full-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}






.results-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 30px;
}

/* Imagen */
.results-image img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  margin-left: 200px;
  scale: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .results-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .results-image img {
    max-height: 180px;
    margin-top: 20px;
  }
}


.site-nav .btn-login {
  background: #96ADD2 !important;
  color: #ffffff !important;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  height: 40px;
  border: none;
  margin-top: 8px;
}

.site-nav .btn-login:hover {
  background: #7f98c2;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 500px !important;
  background: var(--dark);
}
 
.hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
 
.hero-slide {
  position: relative;
  min-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
 
/* Arrows */
.hero-arrow {
  display: none !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease;
}
.hero-arrow:hover { background: rgba(255,255,255,0.22); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }
 
/* Dots */
.hero-dots {
  display: none !important;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}


@media (max-width: 767px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal; /* clave */
  }
}




body, button, input, textarea {
  font-family: 'Inter', sans-serif !important;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(39, 88, 178, 0.06);
}

.header-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 140px; width: auto; object-fit: contain; }

/* NAV */
.site-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}

.site-nav.open { display: flex; }

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  /*letter-spacing: 0.04em; */
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  height: 40px;
  white-space: nowrap;
}

.site-nav a:hover { color: var(--primary); background: rgba(39, 88, 178, 0.06); }
.site-nav a.active { color: var(--primary); }

.site-nav .btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  height: 40px;
  border: none;
  margin-top: 8px;
}
.site-nav .btn-nav:hover { background: var(--primary-dark) !important; color: var(--white) !important; }

/* HAMBURGER */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  /*letter-spacing: 0.03em;*/
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  font-family: 'Syne', sans-serif !important;
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(39,88,178,0.28); }

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  font-family: 'Syne', sans-serif !important;
}
.btn-secondary:hover { background: #2fa3be; border-color: #2fa3be; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(68,182,209,0.28); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  font-family: 'Syne', sans-serif !important;
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-outline-light {
  background: #96add2;
  color: var(--white);
  border-color: #96add2;
  backdrop-filter: blur(4px);
  font-family: 'Syne', sans-serif !important;
}

.btn-outline-4 {
  background: rgb(255, 255, 255);
  color: #1A3C85;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  font-family: 'Syne', sans-serif !important;
}

.btn-outline-4:hover { background: rgb(255, 255, 255); color: var(--primary-light); transform: translateY(-2px);  box-shadow: 0 8px 24px rgba(68,182,209,0.28); }


.btn-outline-light:hover { background: #96add2; color: rgb(255, 255, 255); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(68,182,209,0.28); }

.btn-full { width: 100%; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }

.section-kicker {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  /*letter-spacing: 0.18em;*/
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}

.section-head p {
  color: var(--text-soft);
  margin-top: 14px;
  max-width: 560px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;

}

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;

  display: flex;
  /*align-items: center; */
  background: var(--dark);
  overflow: hidden;
  height: 500px !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(39, 88, 178, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(68, 182, 209, 0.2) 0%, transparent 60%),
    linear-gradient(135deg, #07111f 0%, #0d1e35 60%, #162540 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39,88,178,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,88,178,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,182,209,0.15) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(40px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  /*letter-spacing: 0.2em;*/
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--secondary);
}

.hero h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--secondary), #7dd9ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--text);
}

.about-copy p {
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-copy .btn { margin-top: 16px; }

.glass-card {
  background: linear-gradient(135deg, #f7faff 0%, #edf4ff 100%);
  border: 1px solid rgba(39,88,178,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.01em;

}

.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================
   VIDEO
   ============================================ */
.video-section { background: var(--gray-light); }

.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(39,88,178,0.15);
}

.video-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,0.6);
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 32px rgba(39,88,178,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  padding-left: 5px;
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(39,88,178,0.5); }

/* ============================================
   STATS
   ============================================ */
.stats { background: var(--white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.stat-card {
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  /*letter-spacing: 0.05em;*/
}

.results-banner {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), #173a83);
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: visible;
}

.results-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(68,182,209,0.15);
  filter: blur(30px);
}

.results-banner h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700; /* antes 800 */
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
}

.results-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  max-width: 640px;
  position: relative;
}

/* ============================================
   BLOG
   ============================================ */
.blog { background: var(--gray-light); }

.blog-grid {
  display: grid;
  gap: 20px;
}

.blog-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-date {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  /*letter-spacing: 0.08em;*/
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
  color: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font-display);
  /*letter-spacing: 0.04em;*/
}

.text-link::after { content: '→'; transition: transform var(--transition); }
.text-link:hover::after { transform: translateX(4px); }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  left: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,88,178,0.2) 0%, transparent 70%);
  filter: blur(40px);
}

.contact-grid { display: grid; gap: 48px; position: relative; z-index: 2; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; /* antes 800 */
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.2;
}

.contact-block { margin-bottom: 28px; }
.contact-block h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  /*letter-spacing: 0.2em;*/
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

.contact-block p, .contact-block a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.contact-block a:hover { color: var(--white); }

.social-links { display: flex; gap: 16px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.85rem;
  font-weight: 600;
  /*letter-spacing: 0.04em;*/
  transition: all var(--transition) !important;
}
.social-link:hover { border-color: var(--secondary); color: var(--secondary) !important; background: rgba(68,182,209,0.08); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xl);
}

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  padding: 10px 14px;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(68,182,209,0.15);
}

.error-message { display: block; min-height: 16px; margin-top: 5px; color: #d93025; font-size: 0.82rem; }
.form-success { margin-top: 14px; color: #198754; font-weight: 700; text-align: center; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #040c17;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  /*letter-spacing: 0.2em;*/
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

.footer-logo { height: 36px; width: auto; margin-bottom: 14px; }

.footer-col p, .footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 6px;
  transition: color var(--transition);
  line-height: 1.6;
}

.footer-col a:hover { color: var(--white); }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 200px;
  line-height: 1.6;
  margin-top: 8px;
}

.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.88rem;
  transition: color var(--transition) !important;
}
.footer-social a:hover { color: var(--secondary) !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ============================================
   SUBPAGE
   ============================================ */
.subpage-main {
  min-height: calc(100vh - var(--header-h) - 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-light) 0%, #e8f0fb 100%);
  position: relative;
  overflow: hidden;
}

.subpage-main::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,88,178,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.subpage-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.subpage-logo {
  width: 240px;
  max-width: 80vw;
  opacity: 0.9;
  filter: drop-shadow(0 8px 24px rgba(39,88,178,0.15));
}

.subpage-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  /*letter-spacing: 0.2em;*/
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(39,88,178,0.08);
  border: 1px solid rgba(39,88,178,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.subpage-label {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; /* antes 800 */
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}

.subpage-coming {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 28px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
  .section { padding: 70px 0; }

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

@media (min-width: 1100px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    align-items: center;
    gap: 4px;
  }

  .site-nav .btn-nav { margin-top: 0; }

  .hero-content { padding: 30px 0; }
  .about-grid { grid-template-columns: 1.1fr 0.9fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
}


.results-banner {
  width: 100%;
  padding: 0;              /* 🔥 quita el espacio interno */
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;        /* 🔥 importante para bordes redondeados */
  box-shadow: var(--shadow-xl);
}

.results-full-image {
  width: 100%;
  height: 100%;
  max-height: 320px;       /* 🔥 controla altura del banner */
  object-fit: cover;       /* 🔥 clave: se adapta como fondo */
  display: block;
}


.results-full-image {
  max-height: 320px;
}

@media (max-width: 768px) {
  .results-full-image {
    max-height: 600px;
  }
}

.secciones{
  color: white!important;
}

/* ============================================
   HERO — versión final limpia
   ============================================ */
.hero {
  position: relative;
  height: 500px !important;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(39, 88, 178, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(68, 182, 209, 0.2) 0%, transparent 60%),
    linear-gradient(135deg, #07111f 0%, #0d1e35 60%, #162540 100%);
  z-index: 0;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(39,88,178,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,88,178,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,182,209,0.15) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(40px);
  z-index: 0;
}

/* SLIDER DE TEXTO */
.hero-text-slider {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-text-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1), transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.hero-text-slide.active {
  opacity: 1 !important;
  transform: translateX(0) !important;
  pointer-events: auto;
}

.hero-text-slide.exit {
  opacity: 0 !important;
  transform: translateX(-60px) !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--secondary);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--secondary), #7dd9ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* BOTONES FIJOS */
.hero-fixed-actions {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 32px;
  align-items: center;
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

/* FLECHAS — ocultas por defecto */
.hero-arrow {
  display: none !important;
}

/* RESPONSIVE BOTONES */
@media (max-width: 900px) {
  .hero-fixed-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero-fixed-actions {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 40px;
  }
  .hero-fixed-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }
}

.hero-dots {
  display: none !important;
}