/* =====================================================
   ASOCIACIÓN VIVIMOS PARA CAMBIAR - ESTILOS PRINCIPALES
===================================================== */

/* =====================================================
   TOKENS & VARIABLES
===================================================== */
:root {
  --pal-blue:    #429DDB;
  --pal-green:   #27C489;
  --pal-teal:    #2C6281;
  --pal-purple:  #7745F6;
  --pal-navy:    #163D5C;

  --base:        #035599;
  --blue:        #429DDB;
  --green:       #27C489;
  --teal:        #2C6281;
  --purple:      #7745F6;
  --navy:        #163D5C;
  --magenta:     #7745F6;
  --white:       #ffffff;
  --text-dim:    rgba(255,255,255,0.92);
  --card-bg:     rgba(44, 98, 129, 0.22);
  --card-border: rgba(66, 157, 219, 0.22);
  --radius:      6px;     /* Elimina recuadros redondeados repetitivos en cascada */
  --radius-sm:   4px;
  --objetivo-bg: #031c33;
}

/* =====================================================
   RESET & GLOBAL UPPERCASE HEADINGS
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--base);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, .section-heading, .card h3, .obj-clean-title, .leader-name, .leader-role, .tag {
  text-transform: uppercase !important;
}

/* Ocultar todos los mini subtítulos */
.eyebrow, .hero-eyebrow, .pull-quote {
  display: none !important;
}

/* =====================================================
   NAVBAR
===================================================== */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.4s ease;
}

#navbar.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#navbar.solid {
  background: rgba(3, 85, 153, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-brand img {
  height: 44px;
  width: auto;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-text strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-brand-text span {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.nav-location {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* =====================================================
   HERO — SCROLL-DRIVEN VIDEO
===================================================== */
#hero-track {
  position: relative;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
}

#hero-sticky {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3,85,153,0.15) 0%,
    rgba(3,85,153,0.05) 40%,
    rgba(3,85,153,0.55) 85%,
    var(--base) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 1.5rem 2rem;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1050px;
  margin: 0 auto;
}

.hero-text-side {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-logo-side {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: clamp(140px, 16vw, 230px);
  height: auto;
  filter: drop-shadow(0 0 35px rgba(66,157,219,0.4));
  animation: floatY 6s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.45s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--white);
}

.hero-tagline {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
  margin-top: 0.5rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-sub strong { color: var(--white); font-weight: 600; }

@media (max-width: 700px) {
  .hero-content { 
    flex-direction: column; 
    text-align: center; 
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
  }
  .hero-text-side { align-items: center; text-align: center; }
  .hero-logo-side { order: -1; }
  .hero-logo { width: clamp(110px, 28vw, 170px); }
  .hero-title { font-size: clamp(2rem, 7.5vw, 3rem); text-align: center; }
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.scroll-cue span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: lineGrow 2s ease-in-out infinite;
}

@keyframes lineGrow {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   MAIN CONTENT
===================================================== */
#site-body {
  position: relative;
  z-index: 10;
  background: var(--base);
}

/* =====================================================
   AMBIENT BLOBS
===================================================== */
.blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.22;
}

.blob-1 { width: 480px; height: 480px; background: var(--purple);  top: 0;   left: -8%;  }
.blob-2 { width: 420px; height: 420px; background: var(--blue);    top: 25%; right: -5%; }
.blob-3 { width: 360px; height: 360px; background: var(--magenta); top: 55%; left: 15%;  }
.blob-4 { width: 300px; height: 300px; background: var(--blue);    top: 80%; right: 10%; }

/* =====================================================
   LAYOUT
===================================================== */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  position: relative;
  z-index: 2;
  padding: 7rem 0;
}

section:first-child { padding-top: 5rem; }

/* =====================================================
   TYPE SYSTEM — TITULOS EXAGERADOS Y LETRA VISIBLE
===================================================== */
.section-heading {
  font-size: clamp(2.7rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase !important;
  letter-spacing: -0.015em;
}

.section-heading .accent-blue    { color: var(--pal-blue); }
.section-heading .accent-green   { color: var(--pal-green); }
.section-heading .accent-teal    { color: var(--pal-teal); }
.section-heading .accent-purple  { color: var(--pal-purple); }
.section-heading .accent-magenta { color: var(--pal-purple); }

.rule {
  width: 60px;
  height: 4px;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

.rule-blue    { background: var(--pal-blue); }
.rule-green   { background: var(--pal-green); }
.rule-teal    { background: var(--pal-teal); }
.rule-purple  { background: var(--pal-purple); }
.rule-magenta { background: var(--pal-purple); }
.rule-center  { margin-left: auto; margin-right: auto; }

.body-text {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.94);
}

/* =====================================================
   GLASS CARD & MEDIA CARDS
===================================================== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(66,157,219,0.5);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 30px rgba(66,157,219,0.2);
}

.card-accent {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.card-accent-blue    { background: linear-gradient(90deg, var(--pal-blue), transparent); }
.card-accent-green   { background: linear-gradient(90deg, var(--pal-green), transparent); }
.card-accent-teal    { background: linear-gradient(90deg, var(--pal-teal), transparent); }
.card-accent-purple  { background: linear-gradient(90deg, var(--pal-purple), transparent); }
.card-accent-magenta { background: linear-gradient(90deg, var(--pal-purple), transparent); }

.card h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase !important;
  color: var(--white);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.card p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.90);
}

/* Tarjetas con Foto Integrada */
.card-photo-header {
  position: relative;
  width: calc(100% + 4.5rem);
  margin: -2.25rem -2.25rem 1.75rem -2.25rem;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
}

.card-photo-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover .card-photo-header img {
  transform: scale(1.08);
}

.card-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 85, 153, 0.9) 0%, rgba(3, 85, 153, 0.25) 50%, transparent 100%);
  pointer-events: none;
}

/* =====================================================
   GRIDS
===================================================== */
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.centered { text-align: center; }

/* =====================================================
/* =====================================================
   SECTION: ¿QUIÉNES SOMOS? — FULL WIDTH BLENDED BANNER
===================================================== */
.section-quienes {
  padding: 0 0 4rem 0 !important;
  position: relative;
  overflow: hidden;
  background: var(--base);
}

.quienes-full-banner {
  position: relative;
  width: 100%;
  min-height: clamp(680px, 86vh, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(13rem, 24vh, 18rem);
  overflow: hidden;
  cursor: pointer;
}

.quienes-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 6%;
  display: block;
  z-index: 1;
  /* Máscara de desvanecimiento superior progresivo para eliminar todo corte brusco */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 4%, rgba(0,0,0,0.55) 10%, rgba(0,0,0,0.9) 18%, black 28%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 4%, rgba(0,0,0,0.55) 10%, rgba(0,0,0,0.9) 18%, black 28%);
  transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: filter, transform;
}

/* Al pasar por la zona de quienes somos, la imagen se difumina con un blur */
.quienes-full-banner:hover .quienes-banner-img,
.section-quienes:hover .quienes-banner-img {
  filter: blur(10px) brightness(0.85);
  transform: scale(1.035);
}

/* Transición suave y gradual entre el azul superior y el cielo de la fotografía */
.quienes-fade-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom, 
    var(--base) 0%, 
    rgba(3, 85, 153, 0.85) 5%, 
    rgba(3, 85, 153, 0.42) 12%, 
    rgba(3, 85, 153, 0.10) 20%, 
    transparent 30%
  );
}

/* WAVE ENTRE LA IMAGEN Y EL TEXTO DE PIE */
.quienes-wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(65px, 8vw, 110px);
  background: var(--base);
  z-index: 3;
  pointer-events: none;
  clip-path: polygon(
    100% 100%, 0% 100% , 0.00% 45.81%, 1.05% 44.91%, 2.11% 44.03%, 3.16% 43.17%, 4.21% 42.36%, 5.26% 41.58%, 6.32% 40.84%, 7.37% 40.14%, 8.42% 39.49%, 9.47% 38.89%, 10.53% 38.35%, 11.58% 37.86%, 12.63% 37.42%, 13.68% 37.04%, 14.74% 36.73%, 15.79% 36.48%, 16.84% 36.28%, 17.89% 36.16%, 18.95% 36.09%, 20.00% 36.10%, 21.05% 36.16%, 22.11% 36.29%, 23.16% 36.49%, 24.21% 36.74%, 25.26% 37.06%, 26.32% 37.44%, 27.37% 37.88%, 28.42% 38.38%, 29.47% 38.93%, 30.53% 39.53%, 31.58% 40.18%, 32.63% 40.88%, 33.68% 41.62%, 34.74% 42.40%, 35.79% 43.22%, 36.84% 44.07%, 37.89% 44.96%, 38.95% 45.86%, 40.00% 46.79%, 41.05% 47.74%, 42.11% 48.70%, 43.16% 49.68%, 44.21% 50.65%, 45.26% 51.63%, 46.32% 52.60%, 47.37% 53.57%, 48.42% 54.52%, 49.47% 55.46%, 50.53% 56.38%, 51.58% 57.28%, 52.63% 58.14%, 53.68% 58.98%, 54.74% 59.78%, 55.79% 60.54%, 56.84% 61.26%, 57.89% 61.93%, 58.95% 62.55%, 60.00% 63.12%, 61.05% 63.64%, 62.11% 64.11%, 63.16% 64.51%, 64.21% 64.86%, 65.26% 65.14%, 66.32% 65.37%, 67.37% 65.53%, 68.42% 65.62%, 69.47% 65.65%, 70.53% 65.62%, 71.58% 65.52%, 72.63% 65.36%, 73.68% 65.13%, 74.74% 64.84%, 75.79% 64.49%, 76.84% 64.08%, 77.89% 63.62%, 78.95% 63.09%, 80.00% 62.52%, 81.05% 61.89%, 82.11% 61.22%, 83.16% 60.50%, 84.21% 59.73%, 85.26% 58.93%, 86.32% 58.10%, 87.37% 57.23%, 88.42% 56.33%, 89.47% 55.41%, 90.53% 54.47%, 91.58% 53.52%, 92.63% 52.55%, 93.68% 51.58%, 94.74% 50.60%, 95.79% 49.62%, 96.84% 48.65%, 97.89% 47.69%, 98.95% 46.74%, 100.00% 45.81%
  );
}

.quienes-title-container {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 1.5rem;
}

.quienes-hero-heading {
  font-size: clamp(2.8rem, 7vw, 5.4rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 !important;
  text-shadow: none !important; /* Sin sombra según lo solicitado */
  transition: transform 0.4s ease, letter-spacing 0.4s ease;
  cursor: default;
}

.quienes-full-banner:hover .quienes-hero-heading {
  letter-spacing: 0.04em;
  transform: scale(1.02);
}

@media (max-width: 600px) {
  .quienes-full-banner {
    min-height: 480px;
    padding-top: 7rem;
  }
  .quienes-text-wrap {
    padding-top: 1.5rem !important;
  }
}

/* TEXTO DEBAJO — LOOK PROFESIONAL Y EDITORIAL SIN SOMBRA */
.quienes-text-wrap {
  padding-top: 2rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.quienes-text-block {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.quienes-desc {
  font-size: clamp(1.15rem, 2vw, 1.25rem) !important;
  font-weight: 300 !important;
  line-height: 1.9 !important;
  color: rgba(255, 255, 255, 0.94) !important;
  margin-bottom: 1.5rem !important;
  text-shadow: none !important; /* Sin sombra, diseño editorial limpio y profesional */
  letter-spacing: 0.012em;
}

.quienes-desc:last-child {
  margin-bottom: 0 !important;
}

.quienes-desc strong {
  color: var(--white);
  font-weight: 600;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}

/* =====================================================
   SECTION: BIG STAT
===================================================== */
.stat-block {
  margin-top: 2rem;
}

.stat-block .number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #0bd691, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-block .label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 0.35rem;
}

/* =====================================================
   SECTION: MISIÓN / VISIÓN
   Recuadro grande color sólido (#163D5C), Títulos Exagerados, Letras Azul Clarito (#429DDB), Esquinas Sutilmente Redondeadas
===================================================== */
.section-mision {
  padding: 6rem 0;
  position: relative;
}

.mision-container-wide {
  width: 95vw;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mision-solid-box {
  background: var(--pal-navy);
  border: 2px solid var(--pal-teal);
  border-radius: 14px; /* Sutilmente redondeado */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding: clamp(4rem, 6vw, 6.5rem) clamp(2.5rem, 5vw, 5.5rem);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}

.mv-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mv-mega-title {
  font-size: clamp(3.2rem, 6.5vw, 5.4rem) !important;
  font-weight: 900 !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.02em;
  line-height: 1.0;
  text-transform: uppercase !important;
}

.mv-title-blue {
  color: #ffffff !important;
  text-shadow: 0 0 25px rgba(66, 157, 219, 0.45);
}

.mv-title-green {
  color: #ffffff !important;
  text-shadow: 0 0 25px rgba(39, 196, 137, 0.45);
}

.mv-paragraph {
  font-size: clamp(1.18rem, 1.7vw, 1.38rem);
  font-weight: 500;
  line-height: 1.85;
  color: var(--pal-blue) !important; /* Letras azul clarito de la paleta */
}

.mv-paragraph .mv-strong {
  color: #ffffff !important;
  font-weight: 800;
  border-bottom: 2px solid var(--pal-green);
  padding-bottom: 2px;
}

.mv-solid-divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--pal-teal) 15%, var(--pal-blue) 85%, transparent);
}

@media (max-width: 900px) {
  .mision-solid-box {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.75rem;
  }
  .mv-solid-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--pal-blue), transparent);
  }
}

/* =====================================================
   SECTION: NUESTROS PRINCIPALES SERVICIOS (MEGA GRID 4X FULL WIDTH)
   Efecto Acordeón al pasar el mouse: se agranda el activo, los demás se reducen
===================================================== */
.section-servicios-full {
  padding: 6rem 0 0 0 !important;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.servicios-mega-grid {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  flex-direction: row;
  min-height: clamp(560px, 72vh, 780px);
  border-top: 2px solid var(--pal-teal);
  border-bottom: none; /* Transición limpia y directa a la siguiente sección */
  background: var(--pal-navy);
  overflow: hidden;
}

.serv-quad {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem 2.25rem;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(44, 98, 129, 0.45);
  transition: flex 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.serv-quad:last-child {
  border-right: none;
}

/* EFECTO ACORDEÓN: Al pasar el cursor por el mega recuadro */
.servicios-mega-grid:hover .serv-quad {
  flex: 0.65;
  opacity: 0.8;
}

.servicios-mega-grid .serv-quad:hover,
.servicios-mega-grid .serv-quad:focus-within {
  flex: 2.15;
  opacity: 1;
}

.serv-quad-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.serv-quad-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.serv-quad:hover .serv-quad-bg img,
.serv-quad:focus .serv-quad-bg img {
  transform: scale(1.08);
  filter: saturate(1.25);
}

.serv-quad-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* 4 Paneles con la paleta de colores */
.serv-quad-blue .serv-quad-overlay {
  background: linear-gradient(to top, rgba(22, 61, 92, 0.98) 0%, rgba(22, 61, 92, 0.88) 35%, rgba(66, 157, 219, 0.55) 75%, rgba(66, 157, 219, 0.25) 100%);
}

.serv-quad-green .serv-quad-overlay {
  background: linear-gradient(to top, rgba(22, 61, 92, 0.98) 0%, rgba(22, 61, 92, 0.88) 35%, rgba(39, 196, 137, 0.55) 75%, rgba(39, 196, 137, 0.25) 100%);
}

.serv-quad-teal .serv-quad-overlay {
  background: linear-gradient(to top, rgba(22, 61, 92, 0.98) 0%, rgba(22, 61, 92, 0.88) 35%, rgba(44, 98, 129, 0.70) 75%, rgba(44, 98, 129, 0.35) 100%);
}

.serv-quad-purple .serv-quad-overlay {
  background: linear-gradient(to top, rgba(22, 61, 92, 0.98) 0%, rgba(22, 61, 92, 0.88) 35%, rgba(119, 69, 246, 0.55) 75%, rgba(119, 69, 246, 0.25) 100%);
}

.serv-quad:hover .serv-quad-overlay {
  opacity: 0.92;
}

.serv-quad-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.serv-quad-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.serv-quad-blue   .serv-quad-num { color: var(--pal-blue); }
.serv-quad-green  .serv-quad-num { color: var(--pal-green); }
.serv-quad-teal   .serv-quad-num { color: #5dade2; }
.serv-quad-purple .serv-quad-num { color: var(--pal-purple); }

.serv-quad:hover .serv-quad-num {
  opacity: 1;
  transform: translateY(-4px);
}

.serv-quad-title {
  font-size: clamp(1.35rem, 1.8vw, 1.7rem) !important;
  font-weight: 900 !important;
  color: var(--white) !important;
  text-transform: uppercase !important;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.serv-quad-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
}

.serv-quad-bar {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.serv-quad-blue   .serv-quad-bar { background: var(--pal-blue); box-shadow: 0 0 14px var(--pal-blue); }
.serv-quad-green  .serv-quad-bar { background: var(--pal-green); box-shadow: 0 0 14px var(--pal-green); }
.serv-quad-teal   .serv-quad-bar { background: var(--pal-teal); box-shadow: 0 0 14px var(--pal-teal); }
.serv-quad-purple .serv-quad-bar { background: var(--pal-purple); box-shadow: 0 0 14px var(--pal-purple); }

.serv-quad:hover .serv-quad-bar {
  width: 100%;
}

@media (max-width: 960px) {
  .servicios-mega-grid {
    flex-direction: column;
    min-height: auto;
  }
  .servicios-mega-grid:hover .serv-quad {
    flex: 1;
    opacity: 1;
  }
  .serv-quad {
    min-height: 400px;
    border-right: none;
    border-bottom: 1px solid rgba(44, 98, 129, 0.45);
  }
  .servicios-mega-grid .serv-quad:hover {
    flex: 1;
  }
}

/* =====================================================
   SECTION: MÁS DE LO QUE HACEMOS
   Sin Waves (Transición directa a fondo sólido #2C6281) + Bento 1 Grande y 2 Chicos Sutilmente Redondeados
===================================================== */
.section-hacemos {
  padding: 7rem 0 !important;
  position: relative;
  background: var(--pal-teal) !important; /* Cambio de color sólido directo sin wave */
  z-index: 6;
}

.hacemos-main-content {
  background: transparent;
  padding: 0;
  position: relative;
}

.wrap-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.heading-exaggerated {
  font-size: clamp(2.8rem, 6.2vw, 4.4rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

/* BENTO DINÁMICO: 1 Grande + Columna con 2 Chicos */
.hacemos-bento-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Cuadro Grande Destacado */
.bento-card-large {
  background: var(--pal-navy);
  border: 2px solid var(--pal-blue);
  border-radius: 14px; /* Sutilmente redondeado */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.bento-card-large:hover {
  transform: translateY(-4px);
  border-color: #ffffff;
}

.bento-large-media {
  position: relative;
  width: 100%;
  height: clamp(280px, 32vw, 360px);
  overflow: hidden;
}

.bento-large-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}

.bento-card-large:hover .bento-large-media img {
  transform: scale(1.04);
}

.bento-large-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--pal-navy) 0%, rgba(22, 61, 92, 0.35) 55%, transparent 100%);
}

.bento-large-info {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-title-large {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  text-transform: uppercase !important;
}

.bento-desc-large {
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

/* Columna de 2 Cuadros Chicos */
.bento-column-small {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bento-card-small {
  background: var(--pal-navy);
  border: 2px solid rgba(66, 157, 219, 0.35);
  border-radius: 14px; /* Sutilmente redondeado */
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.bento-card-small:hover {
  transform: translateY(-4px);
  border-color: var(--pal-green);
}

.bento-small-media {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.bento-small-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.bento-card-small:hover .bento-small-media img {
  transform: scale(1.05);
}

.bento-small-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--pal-navy) 0%, rgba(22, 61, 92, 0.25) 60%, transparent 100%);
}

.bento-small-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-title-small {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  text-transform: uppercase !important;
}

.bento-desc-small {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.90);
}

.bento-card-navidad {
  border-color: rgba(39, 196, 137, 0.45);
}

.navidad-metric-banner {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(39, 196, 137, 0.12);
  border-left: 4px solid var(--pal-green);
  border-radius: 8px; /* Sutilmente redondeado */
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navidad-metric-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pal-green);
  line-height: 1;
}

.navidad-metric-text {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .hacemos-bento-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   SECTION: PROYECTOS 2026 (LINEAL, SIMPLIFICADO, SUTILMENTE REDONDEADO)
===================================================== */
.section-proyectos-linear {
  padding: 7rem 0;
  position: relative;
}

.proyectos-linear-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.linear-project-box {
  background: var(--pal-navy);
  border: 2px solid var(--pal-teal);
  border-radius: 14px; /* Sutilmente redondeado */
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.project-a-box {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
}

.linear-project-media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.linear-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transition: transform 0.6s ease;
}

.linear-project-box:hover .linear-project-media img {
  transform: scale(1.035);
}

.linear-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--pal-navy) 100%);
}

.linear-project-body {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-b-body {
  border-left: 6px solid var(--pal-green);
}

.project-linear-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  text-transform: uppercase !important;
}

.project-linear-desc {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
}

.project-accent-line {
  width: 80px;
  height: 4px;
  border-radius: 2px;
}

.line-blue  { background: var(--pal-blue); }
.line-green { background: var(--pal-green); }

@media (max-width: 900px) {
  .project-a-box {
    grid-template-columns: 1fr;
  }
  .linear-project-overlay {
    background: linear-gradient(to top, var(--pal-navy) 0%, transparent 60%);
  }
}

/* =====================================================
   SECTION: CONCLUSIÓN / EQUIPO CON WAVE (SIN RECUADRO)
===================================================== */
.section-conclusion-wave {
  padding: 0 !important;
  position: relative;
  background: var(--base);
  z-index: 6;
}

.conclusion-wave-container {
  position: relative;
  min-height: clamp(620px, 78vh, 840px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  background: var(--base);
}

.conclusion-wave-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.conclusion-wave-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
  filter: saturate(1.08) brightness(1.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-conclusion-wave:hover .conclusion-wave-bg img {
  transform: scale(1.02);
}

/* Transición suave superior con el azul de la sección previa */
.conclusion-top-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(45px, 6vw, 80px);
  background: linear-gradient(
    to bottom,
    var(--base) 0%,
    rgba(3, 85, 153, 0.45) 40%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Blur suave de abajo hacia arriba que se desvanece suavemente */
.conclusion-blur-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.95) 18%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.08) 38%,
    transparent 45%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.95) 18%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.08) 38%,
    transparent 45%
  );
}

/* Sombreado suave únicamente en la zona de texto inferior */
.conclusion-shade-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(2, 28, 51, 0.90) 0%,
    rgba(2, 28, 51, 0.68) 18%,
    rgba(2, 28, 51, 0.25) 30%,
    rgba(2, 28, 51, 0.05) 38%,
    transparent 45%
  );
}

.conclusion-wave-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 880px;
  width: 100%;
  padding: 1.5rem 1.5rem clamp(4.5rem, 6.5vw, 6.2rem) 1.5rem;
}

.conclusion-wave-heading {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase !important;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75);
}

.conclusion-wave-text {
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.98);
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* Wave Inferior que corta directamente la imagen */
.conclusion-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(65px, 8vw, 110px);
  background: var(--base);
  z-index: 4;
  pointer-events: none;
  clip-path: polygon(
    100% 100%, 0% 100% , 0.00% 45.81%, 1.05% 44.91%, 2.11% 44.03%, 3.16% 43.17%, 4.21% 42.36%, 5.26% 41.58%, 6.32% 40.84%, 7.37% 40.14%, 8.42% 39.49%, 9.47% 38.89%, 10.53% 38.35%, 11.58% 37.86%, 12.63% 37.42%, 13.68% 37.04%, 14.74% 36.73%, 15.79% 36.48%, 16.84% 36.28%, 17.89% 36.16%, 18.95% 36.09%, 20.00% 36.10%, 21.05% 36.16%, 22.11% 36.29%, 23.16% 36.49%, 24.21% 36.74%, 25.26% 37.06%, 26.32% 37.44%, 27.37% 37.88%, 28.42% 38.38%, 29.47% 38.93%, 30.53% 39.53%, 31.58% 40.18%, 32.63% 40.88%, 33.68% 41.62%, 34.74% 42.40%, 35.79% 43.22%, 36.84% 44.07%, 37.89% 44.96%, 38.95% 45.86%, 40.00% 46.79%, 41.05% 47.74%, 42.11% 48.70%, 43.16% 49.68%, 44.21% 50.65%, 45.26% 51.63%, 46.32% 52.60%, 47.37% 53.57%, 48.42% 54.52%, 49.47% 55.46%, 50.53% 56.38%, 51.58% 57.28%, 52.63% 58.14%, 53.68% 58.98%, 54.74% 59.78%, 55.79% 60.54%, 56.84% 61.26%, 57.89% 61.93%, 58.95% 62.55%, 60.00% 63.12%, 61.05% 63.64%, 62.11% 64.11%, 63.16% 64.51%, 64.21% 64.86%, 65.26% 65.14%, 66.32% 65.37%, 67.37% 65.53%, 68.42% 65.62%, 69.47% 65.65%, 70.53% 65.62%, 71.58% 65.52%, 72.63% 65.36%, 73.68% 65.13%, 74.74% 64.84%, 75.79% 64.49%, 76.84% 64.08%, 77.89% 63.62%, 78.95% 63.09%, 80.00% 62.52%, 81.05% 61.89%, 82.11% 61.22%, 83.16% 60.50%, 84.21% 59.73%, 85.26% 58.93%, 86.32% 58.10%, 87.37% 57.23%, 88.42% 56.33%, 89.47% 55.41%, 90.53% 54.47%, 91.58% 53.52%, 92.63% 52.55%, 93.68% 51.58%, 94.74% 50.60%, 95.79% 49.62%, 96.84% 48.65%, 97.89% 47.69%, 98.95% 46.74%, 100.00% 45.81%
  );
}

/* =====================================================
   SECTION: NUESTROS LÍDERES (SIMPLIFICADO LINEAL, SUTILMENTE REDONDEADO)
===================================================== */
.section-lideres-linear {
  padding: 6rem 0 8rem 0;
}

.lideres-linear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.leader-linear-card {
  background: var(--pal-navy);
  border: 2px solid var(--pal-teal);
  border-radius: 14px; /* Sutilmente redondeado */
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.leader-linear-card:hover {
  transform: translateY(-4px);
  border-color: var(--pal-blue);
}

/* Avatares Cuadrados Arquitectónicos Sutilmente Redondeados */
.leader-linear-avatar {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 10px; /* Sutilmente redondeado */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
}

.avatar-box-blue   { background: var(--pal-blue); }
.avatar-box-purple { background: var(--pal-purple); }

.leader-linear-data {
  display: flex;
  flex-direction: column;
}

.leader-linear-name {
  font-size: 1.45rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  margin-bottom: 0.25rem;
  text-transform: uppercase !important;
}

.leader-linear-role {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pal-blue);
  margin-bottom: 1.25rem;
}

.wa-btn-linear {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px; /* Botón sobrio sutilmente redondeado */
  background: #25D366;
  color: #031c33;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
  width: fit-content;
}

.wa-btn-linear:hover {
  background: #2fe671;
  transform: translateY(-2px);
}

.wa-btn-linear svg {
  width: 18px;
  height: 18px;
  fill: #031c33;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .lideres-linear-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   SECTION: BG-PHOTO sections
===================================================== */
.section-bg-photo {
  position: relative;
  overflow: hidden;
}

.section-bg-photo .bg-img {
  position: absolute;
  inset: 0;
  background: url('images/programa-deporte-futbol.jpg') center/cover no-repeat;
  z-index: 0;
  opacity: 0.13;
  filter: saturate(0.6) blur(1px);
}

.section-bg-photo .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--base) 0%, transparent 15%, transparent 85%, var(--base) 100%);
  z-index: 1;
}

.section-bg-photo .wrap {
  position: relative;
  z-index: 2;
}

/* =====================================================
   FOOTER
===================================================== */
#site-footer {
  position: relative;
  z-index: 10;
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  height: 40px;
  opacity: 0.75;
}

.footer-brand-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.footer-brand-text span {
  font-size: 0.62rem;
  color: var(--text-dim);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* =====================================================
   OBJETIVO SECTION (Wave, Imagen Prominente & Iconos Redondos)
===================================================== */
.section-objetivo {
  padding: 0 !important;
  position: relative;
  background: transparent;
  z-index: 5;
}

/* Wave Shape Dividers */
.wave-divider {
  width: 100%;
  height: clamp(65px, 8vw, 105px);
  background: var(--objetivo-bg);
  display: block;
  pointer-events: none;
  clip-path: polygon(
    100% 100%, 0% 100% , 0.00% 45.81%, 1.05% 44.91%, 2.11% 44.03%, 3.16% 43.17%, 4.21% 42.36%, 5.26% 41.58%, 6.32% 40.84%, 7.37% 40.14%, 8.42% 39.49%, 9.47% 38.89%, 10.53% 38.35%, 11.58% 37.86%, 12.63% 37.42%, 13.68% 37.04%, 14.74% 36.73%, 15.79% 36.48%, 16.84% 36.28%, 17.89% 36.16%, 18.95% 36.09%, 20.00% 36.10%, 21.05% 36.16%, 22.11% 36.29%, 23.16% 36.49%, 24.21% 36.74%, 25.26% 37.06%, 26.32% 37.44%, 27.37% 37.88%, 28.42% 38.38%, 29.47% 38.93%, 30.53% 39.53%, 31.58% 40.18%, 32.63% 40.88%, 33.68% 41.62%, 34.74% 42.40%, 35.79% 43.22%, 36.84% 44.07%, 37.89% 44.96%, 38.95% 45.86%, 40.00% 46.79%, 41.05% 47.74%, 42.11% 48.70%, 43.16% 49.68%, 44.21% 50.65%, 45.26% 51.63%, 46.32% 52.60%, 47.37% 53.57%, 48.42% 54.52%, 49.47% 55.46%, 50.53% 56.38%, 51.58% 57.28%, 52.63% 58.14%, 53.68% 58.98%, 54.74% 59.78%, 55.79% 60.54%, 56.84% 61.26%, 57.89% 61.93%, 58.95% 62.55%, 60.00% 63.12%, 61.05% 63.64%, 62.11% 64.11%, 63.16% 64.51%, 64.21% 64.86%, 65.26% 65.14%, 66.32% 65.37%, 67.37% 65.53%, 68.42% 65.62%, 69.47% 65.65%, 70.53% 65.62%, 71.58% 65.52%, 72.63% 65.36%, 73.68% 65.13%, 74.74% 64.84%, 75.79% 64.49%, 76.84% 64.08%, 77.89% 63.62%, 78.95% 63.09%, 80.00% 62.52%, 81.05% 61.89%, 82.11% 61.22%, 83.16% 60.50%, 84.21% 59.73%, 85.26% 58.93%, 86.32% 58.10%, 87.37% 57.23%, 88.42% 56.33%, 89.47% 55.41%, 90.53% 54.47%, 91.58% 53.52%, 92.63% 52.55%, 93.68% 51.58%, 94.74% 50.60%, 95.79% 49.62%, 96.84% 48.65%, 97.89% 47.69%, 98.95% 46.74%, 100.00% 45.81%
  );
}

.wave-top {
  margin-bottom: -2px;
}

.wave-bottom {
  margin-top: -2px;
  transform: scaleY(-1);
}

.objetivo-main-content {
  background: var(--objetivo-bg);
  padding: 3.5rem 0 5rem 0;
  position: relative;
}

.objetivo-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.objetivo-header .rule-center {
  margin-left: auto;
  margin-right: auto;
}

/* Imagen Sin Fondo Showcase — Máximo Protagonismo */
.objetivo-hero-showcase {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 3.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sinfondo-aura {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 85%;
  background: radial-gradient(ellipse at center, rgba(66, 157, 219, 0.42) 0%, rgba(3, 85, 153, 0.25) 50%, transparent 75%);
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.img-sinfondo-prominent {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-width: 840px;
  display: block;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.65));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.img-sinfondo-prominent:hover {
  transform: translateY(-6px) scale(1.015);
  filter: drop-shadow(0 28px 48px rgba(66, 157, 219, 0.45));
}

/* Lista Unboxed con Iconos Redondos y Letras Azul Claro */
.objetivo-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 3.5rem;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1rem;
}

.obj-clean-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: transparent;
  border: none;
  padding: 0;
  transition: transform 0.3s ease;
}

.obj-clean-item:hover {
  transform: translateX(6px);
}

.obj-round-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--blue);
  background: rgba(66, 157, 219, 0.16);
  color: var(--blue);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(66, 157, 219, 0.35);
  transition: all 0.35s ease;
  line-height: 1;
}

.obj-clean-item:hover .obj-round-icon {
  background: var(--blue);
  color: #031c33;
  box-shadow: 0 0 26px rgba(66, 157, 219, 0.75);
  transform: scale(1.08);
}

.obj-clean-content {
  flex: 1;
}

.obj-clean-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase !important;
  transition: color 0.3s ease;
}

.obj-clean-item:hover .obj-clean-title {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(66, 157, 219, 0.6);
}

.obj-clean-desc {
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.90);
  margin: 0;
}

@media (max-width: 860px) {
  .objetivo-clean-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .img-sinfondo-prominent {
    max-width: 95%;
  }
}

@media (max-width: 640px) {
  .wave-divider {
    height: 55px;
  }
  .objetivo-header {
    margin-bottom: 2rem;
  }
  .obj-round-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 0.95rem;
  }
  .obj-clean-title {
    font-size: 0.98rem;
  }
  .obj-clean-desc {
    font-size: 0.85rem;
  }
}

/* =====================================================
   PÚBLICO OBJETIVO LAYOUT
===================================================== */
.publico-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.publico-text { }

.publico-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pie-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  filter: drop-shadow(0 8px 32px rgba(11,214,145,0.25));
}

.pie-wrapper canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.pie-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.pie-pct {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: #0bd691;
  line-height: 1;
}

.pie-desc {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
  line-height: 1.4;
}

.pie-source {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 900px) {
  .publico-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .pie-wrapper { width: 260px; height: 260px; }
}

/* =====================================================
   SCROLL REVEAL
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* =====================================================
   CONCLUSION CARD
===================================================== */
.conclusion-card {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.conclusion-card .section-heading { margin-bottom: 1.5rem; }
.conclusion-card .body-text       { margin: 0 auto; max-width: 680px; }

/* =====================================================
   PROJECT NUMBER
===================================================== */
.project-letter {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  font-style: italic;
  user-select: none;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .quienes-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat-ring { width: 180px; height: 180px; }
}

@media (max-width: 640px) {
  #navbar { padding: 0.85rem 1.25rem; }
  .nav-location { display: none; }
  section { padding: 4.5rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card { padding: 1.75rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy { text-align: left; }
}
