/* ── Fix full-width COB-RD ── */
body,
.WaArea, .WaAreaContent, .WaAreaInner,
.contentArea, .contentAreaInner,
.pageContent, .pageContentInner,
.WaGadgetCustomHtml,
.gadget, .gadgetContent,
.zone, .zoneContent,
.container, .container-fluid {
  max-width: 100% !important;
  overflow: visible !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#cobrd-root {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}
/* Forzar full-width en el placeholder de Wild Apricot */
#id_Content,
#id_Content > div,
.WaArea, .WaAreaContent, .WaAreaInner,
.WaLayout, .WaLayoutRow, .WaLayoutCell {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
  overflow: visible !important;
}
/* ============================================================
   COB-RD — Wild Apricot Compatible Stylesheet
   Converted from React + Tailwind to vanilla CSS
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --navy: #0B1A3E;
  --teal: #1BB3A3;
  --teal-dark: #159a8c;
  --off-white: #F6F7FB;
  --slate: #5A6585;
  --light-slate: #B8C0D6;
  --white: #FFFFFF;
  --radius: 0.625rem;
  --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* ── Selection ── */
::selection {
  background-color: rgba(27, 179, 163, 0.3);
  color: var(--navy);
}

/* ── Focus ── */
*:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-5xl {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-6xl {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-3xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--teal);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 179, 163, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  background-color: var(--white);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--teal);
  color: var(--white);
}

/* ── Card Shadow ── */
.card-shadow {
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* ── Section Tag ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── Grain Overlay ── */
.grain-overlay {
  position: relative;
}

.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* ── Vignette ── */
.vignette {
  position: relative;
}

.vignette::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(11, 26, 62, 0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Dot Pattern ── */
.dot-pattern {
  background-image: radial-gradient(circle, rgba(27, 179, 163, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── Text Gradient ── */
.text-gradient-teal {
  background: linear-gradient(135deg, #1BB3A3 0%, #0B1A3E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Line Clamp ── */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Animations ── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(27, 179, 163, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(27, 179, 163, 0.5);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ── Pin spacer fix for GSAP ── */
.pin-spacer {
  overflow: visible !important;
}

section {
  position: relative;
}

/* ── Form Focus ── */
input:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(27, 179, 163, 0.15);
  border-color: var(--teal) !important;
  outline: none;
}

/* ── Image Zoom ── */
.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom:hover img {
  transform: scale(1.05);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 1px 0 #e5e7eb, 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 2px solid var(--teal);
}

.site-nav.scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 #e5e7eb, 0 8px 28px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--teal);
}

.nav-inner {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nav-logo-icon span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.nav-logo-icon .accent-bar {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  background: var(--teal);
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.3s;
}

.site-nav.scrolled .nav-logo-text {
  color: var(--navy);
}

.nav-logo-text .teal {
  color: var(--teal);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--teal);
}

.site-nav.scrolled .nav-links a {
  color: var(--navy);
}

.site-nav.scrolled .nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.mobile-toggle {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--navy);
  transition: color 0.3s;
}

.site-nav.scrolled .mobile-toggle {
  color: var(--navy);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 1.5rem 1rem;
  opacity: 0;
  transform: translateY(-1rem);
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu a {
  display: block;
  color: var(--navy);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--teal);
}

.mobile-menu .btn-primary {
  width: 100%;
  margin-top: 1rem;
  font-size: 0.875rem;
  padding: 0.75rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#inicio {
  width: 100%;
  min-height: 100vh;
  padding: 6rem 0;
  background-color: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: 25%;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(27, 179, 163, 0.1);
  filter: blur(48px);
}

.hero-glow-2 {
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(27, 179, 163, 0.05);
  filter: blur(48px);
}

.hero-glow-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 179, 163, 0.08) 0%, transparent 70%);
}

.hero-dot-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(27, 179, 163, 0.1);
  border: 1px solid rgba(27, 179, 163, 0.3);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge-text {
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-headline {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-headline .teal {
  color: var(--teal);
}

.hero-subheadline {
  font-size: 1.125rem;
  color: var(--light-slate);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--navy), transparent);
  z-index: 5;
}

/* ============================================================
   PROPOSITO SECTION
   ============================================================ */
.section-proposito {
  width: 100%;
  min-height: 100vh;
  padding: 6rem 0;
  background-color: var(--off-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proposito-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 1rem;
}

.proposito-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.proposito-left {
  flex: 1;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proposito-left h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.proposito-left p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.proposito-right {
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  min-height: 300px;
}

.proposito-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proposito-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(11, 26, 62, 0.3), rgba(27, 179, 163, 0.2));
}

.proposito-stat-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.proposito-stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(27, 179, 163, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proposito-stat-icon span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.proposito-stat-text p:first-child {
  font-weight: 600;
  color: var(--navy);
}

.proposito-stat-text p:last-child {
  font-size: 0.875rem;
  color: var(--slate);
}

/* ============================================================
   IMPACTO SECTION
   ============================================================ */
.section-impacto {
  width: 100%;
  min-height: 100vh;
  padding: 6rem 0;
  background-color: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impacto-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.impacto-glow-1 {
  position: absolute;
  top: 33%;
  left: -8rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(27, 179, 163, 0.1);
  filter: blur(48px);
}

.impacto-glow-2 {
  position: absolute;
  bottom: 33%;
  right: -8rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(27, 179, 163, 0.05);
  filter: blur(48px);
}

.impacto-card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.impacto-card-inner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.impacto-header {
  text-align: center;
  margin-bottom: 3rem;
}

.impacto-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.impacto-big-number {
  text-align: center;
  margin-bottom: 3rem;
}

.impacto-big-number .number {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.impacto-big-number p {
  font-size: 1.25rem;
  color: var(--light-slate);
  margin-top: 1rem;
}

.impacto-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
}

.stat-item:hover {
  border-color: rgba(27, 179, 163, 0.3);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(27, 179, 163, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--teal);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--light-slate);
}

/* ============================================================
   NOSOTROS SECTION
   ============================================================ */
#nosotros {
  width: 100%;
  padding: 6rem 0;
  background-color: var(--white);
  overflow: hidden;
}

.nosotros-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 1rem;
}

.nosotros-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.nosotros-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.nosotros-header p {
  font-size: 1.125rem;
  color: var(--slate);
}

/* Misión + Visión duo */
.nosotros-duo {
  max-width: 72rem;
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.nosotros-card {
  background: var(--off-white);
  border-radius: 22px;
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.nosotros-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(27, 179, 163, 0.15);
  transform: translateY(-4px);
}

.nosotros-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.nosotros-card-icon.gradient-1 {
  background: linear-gradient(135deg, var(--teal), var(--navy));
}

.nosotros-card-icon.gradient-2 {
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.nosotros-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.nosotros-card p {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* Valores header */
.nosotros-valores-header {
  text-align: center;
  margin-bottom: 2rem;
}

.nosotros-valores-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
}

/* Valores grid */
.nosotros-valores-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.valor-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.valor-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-color: rgba(27, 179, 163, 0.15);
  transform: translateY(-2px);
}

.valor-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(27, 179, 163, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1rem;
}

.valor-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.valor-card p {
  font-size: 0.8125rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ============================================================
   BENEFICIOS SECTION
   ============================================================ */
#beneficios {
  width: 100%;
  padding: 6rem 0;
  background-color: var(--off-white);
  overflow: hidden;
}

.beneficios-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 1rem;
}

.beneficios-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.beneficios-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.beneficios-header p {
  font-size: 1.125rem;
  color: var(--slate);
}

.beneficios-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: all 0.5s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-0.5rem);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.5s;
  color: var(--white);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon.gradient-1 {
  background: linear-gradient(to bottom right, #1BB3A3, #0B1A3E);
}

.benefit-icon.gradient-2 {
  background: linear-gradient(to bottom right, #0B1A3E, #1BB3A3);
}

.benefit-icon.gradient-3 {
  background: linear-gradient(to bottom right, #1BB3A3, #159a8c);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefit-link {
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-weight: 600;
  transition: gap 0.3s;
  gap: 0.5rem;
}

.benefit-link:hover {
  gap: 0.75rem;
}

.beneficios-cta {
  text-align: center;
  margin-top: 4rem;
}

.beneficios-cta p {
  color: var(--slate);
  margin-bottom: 1.5rem;
}

/* ============================================================
   NOTICIAS SECTION
   ============================================================ */
#noticias {
  width: 100%;
  padding: 6rem 0;
  background-color: var(--white);
  overflow: hidden;
}

.noticias-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 1rem;
}

.noticias-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.noticias-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.noticias-header p {
  font-size: 1.125rem;
  color: var(--slate);
}

.noticias-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.news-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s ease;
}

.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-0.5rem);
}

.news-card-image {
  position: relative;
  height: 13rem;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 62, 0.6), transparent);
}

.news-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.news-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.news-card:hover h3 {
  color: var(--teal);
}

.news-card-body>p {
  color: var(--slate);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.875rem;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.news-link:hover {
  gap: 0.75rem;
}

.noticias-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   EVENTOS SECTION
   ============================================================ */
#eventos {
  width: 100%;
  padding: 6rem 0;
  background-color: var(--off-white);
  overflow: hidden;
}

.eventos-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 1rem;
}

.eventos-header {
  max-width: 48rem;
  margin-bottom: 4rem;
}

.eventos-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.eventos-header p {
  font-size: 1.125rem;
  color: var(--slate);
}

.eventos-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.event-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-date-badge {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  background: rgba(27, 179, 163, 0.1);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-date-badge .day {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.event-date-badge .month {
  font-size: 0.75rem;
  color: var(--slate);
  text-transform: uppercase;
}

.event-content {
  flex: 1;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.event-type-tag {
  padding: 0.25rem 0.75rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.event-status-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(27, 179, 163, 0.1);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.event-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.event-card:hover .event-content h3 {
  color: var(--teal);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--slate);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.event-cta {
  white-space: nowrap;
}

.eventos-cta {
  text-align: center;
  margin-top: 3rem;
}

.eventos-announcement {
  margin-top: 2.5rem;
}

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(27, 179, 163, 0.06);
  border: 1px solid rgba(27, 179, 163, 0.2);
  border-radius: 1rem;
}

.announcement-inner p {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.announcement-inner strong {
  color: var(--navy);
}

/* ── Eventos Coming Soon ── */
.eventos-coming-soon {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Hero Card — dark navy with glows */
.coming-soon-hero {
  position: relative;
  background: var(--navy);
  border-radius: 22px;
  overflow: hidden;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-glow-1 {
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(27, 179, 163, 0.15);
  filter: blur(60px);
}

.cs-glow-2 {
  position: absolute;
  bottom: -4rem;
  left: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(27, 179, 163, 0.08);
  filter: blur(60px);
}

.coming-soon-hero-content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  margin: 0 auto;
}

.cs-icon-wrapper {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  background: rgba(27, 179, 163, 0.12);
  border: 1px solid rgba(27, 179, 163, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.5rem;
  animation: float 4s ease-in-out infinite;
}

.coming-soon-hero-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.coming-soon-hero-content p {
  color: var(--light-slate);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(27, 179, 163, 0.1);
  border: 1px solid rgba(27, 179, 163, 0.3);
  border-radius: 9999px;
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cs-pill-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

/* Feature cards */
.coming-soon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cs-feature-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.cs-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 179, 163, 0.2);
}

.cs-feature-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cs-feature-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.cs-feature-card p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
}

/* CTA bar */
.coming-soon-cta-bar {
  background: var(--white);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  border: 1px solid rgba(27, 179, 163, 0.12);
}

.cs-cta-text {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* Responsive — Coming Soon */
@media (min-width: 640px) {
  .coming-soon-hero {
    padding: 3.5rem;
  }

  .coming-soon-hero-content h3 {
    font-size: 1.75rem;
  }

  .coming-soon-hero-content p {
    font-size: 1rem;
  }

  .coming-soon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .coming-soon-cta-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1.25rem 2rem;
  }
}

@media (min-width: 1024px) {
  .coming-soon-hero {
    padding: 4rem;
    min-height: 22rem;
  }

  .coming-soon-hero-content h3 {
    font-size: 2rem;
  }

  .coming-soon-hero-content p {
    font-size: 1.0625rem;
  }

  .coming-soon-grid {
    gap: 1.5rem;
  }

  .cs-feature-card {
    padding: 2rem;
  }
}

/* ============================================================
   CONTACTO SECTION
   ============================================================ */
#contacto {
  width: 100%;
  height: 100vh;
  background-color: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contacto-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.contacto-glow-1 {
  position: absolute;
  top: 25%;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(27, 179, 163, 0.1);
  filter: blur(48px);
}

.contacto-glow-2 {
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(27, 179, 163, 0.05);
  filter: blur(48px);
}

.contacto-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 1rem;
}

.contacto-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.contacto-left {
  color: var(--white);
}

.contacto-left h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contacto-left>p {
  font-size: 1.125rem;
  color: var(--light-slate);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(27, 179, 163, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-info-item .label {
  font-size: 0.875rem;
  color: var(--light-slate);
}

.contact-info-item .value {
  color: var(--white);
  font-weight: 500;
}

.contacto-form-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}

.contacto-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e4e9;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  transition: all 0.3s;
  background: var(--white);
  height: 3rem;
}

.form-group textarea {
  height: auto;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0a7b8;
}

.form-submit {
  width: 100%;
  height: 3rem;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.form-submit:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 25px rgba(27, 179, 163, 0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  width: 100%;
  background: var(--off-white);
  border-top: 1px solid rgba(11, 26, 62, 0.1);
  padding: 4rem 1rem;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand p {
  color: var(--slate);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-brand .tagline {
  color: var(--teal);
  font-weight: 500;
  font-size: 0.875rem;
}

.footer-section h4 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Sora', sans-serif;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section a {
  color: var(--slate);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--teal);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(11, 26, 62, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11, 26, 62, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--slate);
  font-size: 0.875rem;
}

/* ============================================================
   RESPONSIVE — Tablet (>=640px)
   ============================================================ */
@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .nav-inner {
    padding: 0 1.5rem;
  }

  .hero-headline {
    font-size: 3rem;
  }

  .hero-subheadline {
    font-size: 1.25rem;
  }

  .hero-cta {
    flex-direction: row;
  }

  .proposito-left {
    padding: 2.5rem;
  }

  .proposito-left h2 {
    font-size: 1.875rem;
  }

  .impacto-card-inner {
    padding: 3rem;
  }

  .impacto-header h2 {
    font-size: 1.875rem;
  }

  .impacto-big-number .number {
    font-size: 6rem;
  }

  .impacto-big-number p {
    font-size: 1.5rem;
  }

  .stat-value {
    font-size: 1.875rem;
  }

  .nosotros-header h2 {
    font-size: 2.25rem;
  }

  .nosotros-duo {
    grid-template-columns: repeat(2, 1fr);
  }

  .nosotros-valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beneficios-header h2 {
    font-size: 2.25rem;
  }

  .noticias-header h2 {
    font-size: 2.25rem;
  }

  .eventos-header h2 {
    font-size: 2.25rem;
  }

  .contacto-left h2 {
    font-size: 2.25rem;
  }

  .contacto-form-card {
    padding: 2rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================================
   RESPONSIVE — Tablet landscape (>=768px)
   ============================================================ */
@media (min-width: 768px) {
  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .noticias-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — Desktop (>=1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .nav-inner {
    padding: 0 2rem;
  }

  .nav-links {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .hero-headline {
    font-size: 3.75rem;
  }

  .proposito-grid {
    flex-direction: row;
    gap: 2rem;
  }

  .proposito-left {
    padding: 3rem;
  }

  .proposito-left h2 {
    font-size: 2.25rem;
  }

  .proposito-left p {
    font-size: 1.125rem;
  }

  .proposito-right {
    min-height: 0;
  }

  .impacto-card-inner {
    padding: 4rem;
  }

  .impacto-header h2 {
    font-size: 2.25rem;
  }

  .impacto-big-number .number {
    font-size: 8rem;
  }

  .impacto-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .nosotros-header h2 {
    font-size: 3rem;
  }

  .nosotros-duo {
    gap: 2rem;
  }

  .nosotros-card {
    padding: 2.5rem;
  }

  .nosotros-valores-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .beneficios-header h2 {
    font-size: 3rem;
  }

  .beneficios-grid {
    gap: 2rem;
  }

  .noticias-header h2 {
    font-size: 3rem;
  }

  .noticias-grid {
    gap: 2rem;
  }

  .eventos-header h2 {
    font-size: 3rem;
  }

  .event-card {
    padding: 2rem;
  }

  .event-card-inner {
    flex-direction: row;
    align-items: center;
  }

  .contacto-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contacto-left h2 {
    font-size: 3rem;
  }

  .contacto-form-card {
    padding: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE — Large Desktop (>=1280px)
   ============================================================ */
@media (min-width: 1280px) {
  .nav-inner {
    padding: 0 3rem;
  }

  .hero-headline {
    font-size: 4.5rem;
  }

  .proposito-inner,
  .beneficios-inner,
  .noticias-inner,
  .eventos-inner,
  .contacto-inner {
    padding: 0 3rem;
  }

  .site-footer {
    padding: 4rem 3rem;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ============================================================
   EMPRESAS FUNDADORAS GRID
   ============================================================ */
.fundadoras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.fundadora-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(27, 179, 163, 0.2);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  line-height: 1.4;
  transition: background 0.2s, border-color 0.2s;
}
.fundadora-item:hover {
  background: rgba(27, 179, 163, 0.12);
  border-color: rgba(27, 179, 163, 0.45);
}
@media (min-width: 640px) {
  .fundadoras-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .fundadoras-grid { grid-template-columns: repeat(4, 1fr); }
}
