:root {
  --naranja: #FF8500;
  --naranja-claro: #FF9E26;
  --naranja-medio: #FFA42B;
  --rojo: #C12900;
  --amarillo: #FCCA33;
  --marron: #BF5A38;
  --blanco: #ffffff;
  --oscuro: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
/* BOTÓN */
.btn-video {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 0.95rem;
  cursor: pointer;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.btn-video:hover {
  background: #fff;
  color: #000;
}

/* =============================
   MODAL DE VIDEO MEJORADO
============================= */
.modal-video {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-video.activo {
    display: flex;
}

.modal-contenido {
    background: #ffffff;
    width: 95%;
    max-width: 1100px;
    border-radius: 24px;
    position: relative;
    padding: 40px 40px 50px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Botón cerrar */
.cerrar {
    position: absolute;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

.cerrar:hover {
    color: #C12900;
    background: rgba(193, 41, 0, 0.1);
    transform: rotate(90deg);
}

/* =============================
   PESTAÑAS (TABS)
============================= */
.modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: #C12900;
    background: rgba(193, 41, 0, 0.05);
}

.tab-btn.active {
    color: #C12900;
    background: rgba(193, 41, 0, 0.05);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #C12900;
    border-radius: 3px;
}

/* =============================
   CONTENIDO DE PESTAÑAS
============================= */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeTab 0.5s ease;
}

@keyframes fadeTab {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

.video-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Texto del video */
.video-texto {
    padding-right: 20px;
}

.video-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C12900, #FF8500);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(193, 41, 0, 0.3);
}

.video-texto h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.video-texto .destacar {
    color: #C12900;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.video-texto .destacar::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(193, 41, 0, 0.2);
    z-index: -1;
}

.video-descripcion {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.video-descripcion strong {
    color: #C12900;
    font-weight: 600;
}

/* Frame del video */
.video-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(193, 41, 0, 0.25);
    border: 4px solid transparent;
    background: linear-gradient(135deg, #C12900, #FF8500);
    padding: 4px;
}

.video-frame iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 16px;
    display: block;
}

/* Responsive */
@media (max-width: 800px) {
    .modal-contenido {
        padding: 30px 20px;
    }
    
    .video-contenido {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-texto {
        padding-right: 0;
        text-align: center;
    }
    
    .video-frame iframe {
        height: 220px;
    }
    
    .modal-tabs {
        justify-content: center;
    }
    
    .tab-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-frame iframe {
        height: 200px;
    }
}

.modal-contenido {
  background: #fff;
  width: 90%;
  max-width: 900px;
  padding: 30px;
  border-radius: 16px;
  position: relative;
}

.modal-contenido h3 {
  text-align: center;
  margin-bottom: 20px;
}

/* VIDEOS */
.videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.videos iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  border: none;
}

/* CERRAR */
.cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .videos {
    grid-template-columns: 1fr;
  }

  .videos iframe {
    height: 220px;
  }
}

body {
  color: var(--oscuro);
}
.hero-quote {
  margin: 0 auto 30px;
  max-width: 600px;
  text-align: center;

  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: #f5f5f5;
}

.hero-quote span {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  font-style: normal;
  opacity: 0.85;
}




.hero-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BOTÓN DEL BANNER */
.btn-hero {
  display: inline-block;
  background-color: #FF8500;
  color: #fff;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-hero:hover {
  background-color: #BF5A38;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
background: rgba(255, 255, 255, 0.95);  /* Blanco con 95% opaco */
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);  /* Sombra suave para destacar */
}


.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 45px;
}

nav a {
  color:#C12900;
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.9rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background:  #FF8500;
  transition: width 0.3s;
}
nav a.active {
  color: #FF8500;  /* Naranja más claro para el activo */
  font-weight: 600;
}

nav a.active::after {
  width: 100%;  /* Línea siempre visible para el activo */
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}



@keyframes latido {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.2); }
  50%  { transform: scale(1); }
  75%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}


/* HERO */
/* HERO */
.hero {
  height: 100vh;
  background:
    linear-gradient(
      rgba(193, 41, 0, 0.65),
      rgba(255, 133, 0, 0.65)
    ),
    url("../IMG/PORTADA\ DE\ PAGUINA.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center 30%;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
  margin: 0 auto;
  color: var(--blanco);
  text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-quote {
    margin: 0 auto 30px;
    max-width: 700px;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #f5f5f5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Contenedor para los botones (los mantiene juntos) */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Ajustes para los botones existentes */
.btn-hero {
    display: inline-block;
    background-color: #FF8500;
    color: #fff;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background-color: #BF5A38;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-video {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-video:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* =============================
   VIDEO DESTACADO EN PÁGINA (VERSIÓN VERTICAL)
============================= */
.video-destacado {
    padding: 80px 6%;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    position: relative;
    overflow: hidden;
}

.video-destacado::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(193, 41, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.video-destacado-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-destacado-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(193, 41, 0, 0.1);
}

.video-destacado-texto {
    padding-right: 20px;
}

.video-destacado-texto .video-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C12900, #FF8500);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(193, 41, 0, 0.3);
}

.video-destacado-texto h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.video-destacado-texto .destacar {
    color: #C12900;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.video-destacado-texto .destacar::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(193, 41, 0, 0.2);
    z-index: -1;
}

.video-destacado-texto .video-descripcion {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.video-destacado-texto .video-descripcion strong {
    color: #C12900;
}

/* CONTENEDOR DEL VIDEO - ADAPTADO PARA VERTICAL */
.video-destacado-frame {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(193, 41, 0, 0.25);
    border: 4px solid transparent;
    background: linear-gradient(135deg, #C12900, #FF8500);
    padding: 4px;
}

.video-destacado-frame video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 26px;
    display: block;
    background: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .video-destacado-contenido {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .video-destacado-texto {
        padding-right: 0;
        text-align: center;
    }
    
    .video-destacado-texto h3 {
        font-size: 1.8rem;
    }
    
    .video-destacado-frame {
        max-width: 350px;
    }
}

@media (max-width: 600px) {
    .video-destacado {
        padding: 50px 4%;
    }
    
    .video-destacado-contenido {
        padding: 20px;
    }
    
    .video-destacado-texto h3 {
        font-size: 1.5rem;
    }
    
    .video-destacado-texto .video-descripcion {
        font-size: 1rem;
    }
    
    .video-destacado-frame {
        max-width: 280px;
    }
}

/* INTRO */
.intro {
  padding: 80px 20px;
  text-align: center;
}

.intro h3 {
  font-size: 1.8rem;
  color: var(--rojo);
  margin-bottom: 15px;
}

.intro p {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
}

/* EQUIPO */
.equipo {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.equipo h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.equipo span {
  color: var(--naranja);
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.card {
  background: var(--blanco);
  padding: 30px;
  border-left: 5px solid var(--naranja);
}

/* FOOTER */
.footer {
  background: var(--rojo);
  color: var(--blanco);
  text-align: center;
  padding: 25px;
  font-size: 0.85rem;
}

/* ================= FOOTER ================= */
.site-footer {
  background: linear-gradient(135deg, #0b1220, #101c33);
  color: #cfd6e4;
  padding-top: 70px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-logo {
  font-size: 26px;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.site-footer h4 {
  color: white;
  margin-bottom: 15px;
}

.site-footer p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col a {
  display: block;
  color: #cfd6e4;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
}

/* REDES */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #444;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
}

/* NEWSLETTER */
.newsletter input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
}

.newsletter button {
  width: 100%;
  padding: 12px;
  background: #C12900;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-legal a {
  margin-left: 15px;
  color: #cfd6e4;
  text-decoration: none;
}

/* RESPONSIVE */

/* =========================
   PATROCINADORES
========================= */
.patrocinadores {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.patrocinadores h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #222;
}

/* CONTENEDOR */
.patro-carousel {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

/* TRACK */
.patro-track {
  display: flex;
  gap: 50px;
  transition: transform 0.4s ease;
}

/* LOGOS */
.patro-track img {
  flex: 0 0 180px;
  max-height: 90px;
  object-fit: contain;
  opacity: 0.8;
  transition: .3s;
}

.patro-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.cta-donar {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-contenido {
  max-width: 900px;
  text-align: center;
  color: #2c2c2c;
}

.cta-contenido h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-contenido p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}


/* =========================
   SECCIÓN HOY ES EL DÍA
========================= */
.hoy-dia {
  padding: 90px 20px;
  background: linear-gradient(
    135deg,
    #FF8500,
    #C12900
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Glow sutil */
.hoy-dia::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.15),
    transparent 60%
  );
}

.hoy-contenido {
  position: relative;
  max-width: 700px;
  margin: auto;
  color: #fff;
}

.hoy-contenido h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.hoy-contenido h2 span {
  text-decoration: underline;
}

.hoy-contenido p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* BOTÓN */
.btn-hoy {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 14px 36px;
  background: #ffffff;
  color: #C12900;

  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;

  border-radius: 30px;

  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-hoy:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}


.que-hacemos {
  width: 100%;
  padding: 80px 20px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.qh-contenido {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.qh-porcentaje {
  text-align: center;
}

.qh-porcentaje .numero {
  font-size: 7rem;
  font-weight: 800;
  color: #FF8500;
  display: block;
  line-height: 1;
}

.qh-porcentaje p {
  margin-top: 15px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #444;
}

.qh-texto h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.qh-texto p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .qh-contenido {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qh-porcentaje .numero {
    font-size: 5.5rem;
  }
}


/* BOTONES */
.patro-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f3f3f3;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.patro-btn.prev {
  left: -20px;
}

.patro-btn.next {
  right: -20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .patro-btn {
    display: none;
  }

  .patro-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .patro-track img {
    scroll-snap-align: center;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .nav nav {
    display: none;
  }

  .banner h2 {
    font-size: 32px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hero h2 {
    font-size: 2rem;
  }
  
}
.patrocinadores h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: 600;
}

.highlight-orange {
  color: #FF8500;
}
/* ===== SECCIÓN IMPACTO ===== */
.impacto {
  padding: 80px 8%;
  background: #111111;
}

.impacto-header h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 600;
  color: #090909;
}

.impacto-header span {
  color: #FF8500;
  font-weight: 700;
}

/* GRID */
.impacto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD BASE */
.impacto-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

/* OVERLAY */
.impacto-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15)
  );
}

/* CONTENT */
.impacto-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  color: #fff;
}

.impacto-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.impacto-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.95;
}

.impacto-link {
  display: inline-block;
  margin-bottom: 15px;
  color: #fff;
  text-decoration: underline;
  font-size: 0.9rem;
}

.impacto-btn {
  display: block;
  margin: 10px auto 0;
  padding: 14px 32px;

  background: #C12900;
  color: #fff;
  border: none;

  font-size: 0.95rem;
  font-weight: 600;

  border-radius: 12px;
  cursor: pointer;

  transition: 
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.impacto-btn:hover {
  background: #BF5A38;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* IMÁGENES DE FONDO (cámbialas si quieres) */
.card-uno {
  background-image: url("../IMG/Imagen\ de\ WhatsApp\ 2025-06-12\ a\ las\ 20.36.43_99d5d603.jpg");
}

.card-dos {
  background-image: url("../IMG/PORTADA\ DE\ PAGUINA.jpg");
}

.card-tres {
  background-image: url("../IMG/Imagen\ de\ WhatsApp\ 2025-06-12\ a\ las\ 20.36.42_208ac746.jpg");
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .impacto-grid {
    grid-template-columns: 1fr;
  }

  .impacto-card {
    height: 380px;
  }
}
/* ===== SECCIÓN EQUIPO ===== */
.equipo {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.equipo h3 {
  font-size: 2.3rem;
  margin-bottom: 50px;
  font-weight: 600;
}

.equipo h3 span {
  color: #FF8500;
  font-weight: 700;
}

/* GRID */
.equipo-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.card-equipo {
  background: #ffffff;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-equipo:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGEN RECTANGULAR */
.card-equipo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* INFO */
.info-equipo {
  padding: 20px;
}

.info-equipo h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.info-equipo p {
  font-size: 0.95rem;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .equipo-grid {
    grid-template-columns: 1fr;
  }

  .card-equipo img {
    height: 220px;
  }
}
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}

/* Botones juntos */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Nueva sección inferior */
.hero-extra {
  margin-top: 60px;
  padding: 0 20px 60px;
  text-align: center;
}

.hero-extra h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.hero-extra h1 span {
  color: #FF8500;
}

.hero-extra h1 strong {
  color: #ffffff;
}

/* Métricas */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stat h3 {
  font-size: 2.5rem;
  color: #FF8500;
  margin-bottom: 5px;
}

.stat p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* SECCIÓN IMPACTO */
.impacto {
  background: #ffffff;
  color: #0d0d0d;
  padding: 70px 20px;
  text-align: center;
}

.impacto-texto {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.3;
}

.impacto-texto strong {
  color: #FF8500;
}

.impacto-datos {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.impacto-datos span {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #FF8500;
}

.impacto-datos p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 5px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .impacto-datos {
    gap: 30px;
  }

  .impacto-datos span {
    font-size: 2.4rem;
  }
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 4px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
body {
  padding-top: 65px;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);  /* Blanco al hacer scroll */
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);  /* Sombra para dar profundidad */
}

/* =============================
   SECCIÓN
============================= */
.patrocinadores {
  padding: 70px 0;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.patrocinadores h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.patrocinadores h3 span {
  color: #FF8500;
}

/* =============================
   CARRUSEL
============================= */
.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.carousel-track img {
  height: 80px;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s;
}

.carousel-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* =============================
   ANIMACIÓN
============================= */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
  .carousel-track img {
    height: 60px;
  }
}
/* =========================
   CONTACTO
========================= */
.contacto {
  padding: 90px 6%;
  background: #f9f9f9;
}

.contacto-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* INFO */
.contacto-info h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.contacto-info h3 span {
  color: #FF8500;
}

.contacto-info p {
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contacto-datos {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contacto-datos li {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.contacto-datos strong {
  display: block;
}

.contacto-datos span {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ICONOS SIMPLES */
.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FF8500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.correo::before { content: "✉"; }
.telefono::before { content: "☎"; }
.direccion::before { content: "📍"; }

/* REDES */
.redes p {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Iconos en sección de contacto - VERSIÓN PARA ICONOS CON FONDO */
.redes-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.redes-icono {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* ELIMINAMOS filter: brightness(0) invert(1); */
    background: transparent; /* Aseguramos fondo transparente */
}

.redes-icons a:hover .redes-icono {
    transform: scale(1.15);
    /* ELIMINAMOS filter */
}

/* =========================
   FORMULARIO
========================= */
.contacto-form {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.contacto-form h4 {
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.contacto-form label {
  font-size: 0.85rem;
  margin-top: 15px;
  display: block;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.privacidad {
  display: flex;
  align-items: center;
  gap: 1px;
  margin: 15px 0;
  font-size: 0.85rem;
}
.privacidad input[type="checkbox"] {
  margin: 0;             
  transform: translateY(1px); 
}

.privacidad a {
  color: #FF8500;
  text-decoration: none;
  font-weight: 600;
}

/* BOTÓN */
.btn-enviar {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #C12900;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-enviar:hover {
  background: #BF5A38;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contacto-container {
    grid-template-columns: 1fr;
  }
}
/* BOTÓN DONAR EN EL NAV */
.btn-donar-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  color: #fff;
  background-color: #FF8500;
  border-radius: 18px;
  text-decoration: none;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* CORAZÓN */
.btn-donar-nav .heart {
  font-size: 0.9rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

/* HOVER DEL BOTÓN */
.btn-donar-nav:hover {
  background-color: #C12900;
  transform: translateY(-1px);
}

/* LATIDO DEL CORAZÓN */
.btn-donar-nav:hover .heart {
  animation: latido 0.9s infinite;
}

/* ANIMACIÓN LATIDO */
@keyframes latido {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.25);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
.esencia {
  padding: 90px 6%;
  background: #ffffff;
}

.esencia-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.esencia-tag {
  display: inline-block;
  background: rgba(193, 41, 0, 0.05);
  color: #C12900;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.esencia-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.esencia-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.esencia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: auto;
}

.esencia-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.esencia-box .icono {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.esencia-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.esencia-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

/* VALORES */
.valores ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.valores li {
  margin-bottom: 18px;
}

.valores strong {
  display: block;
  font-weight: 600;
  color: #111;
}

.valores span {
  font-size: 0.9rem;
  color: #555;
}

.ver-mas {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #C12900;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .esencia-grid {
    grid-template-columns: 1fr;
  }
}
.equipo-ubicacion {
  padding: 100px 6%;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

.equipo-contenido {
  text-align: center;
}

.equipo-logo {
  max-width: 180px;
  margin-bottom: 30px;
}

.equipo-contenido h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.equipo-contenido p {
  font-size: 1.05rem;
  color: #555;
  max-width: 520px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.btn-equipo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #C12900;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-equipo:hover {
  background: #BF5A38;
  transform: translateY(-2px);
}

/* MAPA */
.equipo-mapa {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.equipo-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .equipo-ubicacion {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .equipo-mapa {
    height: 300px;
  }
}
/* =============================
   PAGE HERO (para subpáginas)
============================= */
.page-hero {
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 65px;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero-content h1 span {
    color: #FF8500;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* =============================
   SECCIÓN HISTORIA
============================= */
.historia {
    padding: 100px 6%;
    background: #fff;
}

.historia-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.historia-texto .seccion-tag {
    display: inline-block;
    background: rgba(193, 41, 0, 0.05);
    color: #C12900;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.historia-texto h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.historia-texto h2 span {
    color: #FF8500;
}

.historia-texto p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.historia-imagen img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* =============================
   VALORES AMPLIADO
============================= */
.valores-ampliado {
    padding: 80px 6% 100px;
    background: #f9f9f9;
    text-align: center;
}

.valores-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.valores-header .seccion-tag {
    display: inline-block;
    background: rgba(193, 41, 0, 0.05);
    color: #C12900;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.valores-header h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
}

.valores-header h2 span {
    color: #FF8500;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.valor-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(193, 41, 0, 0.1);
}

.valor-icono {
    font-size: 3rem;
    margin-bottom: 20px;
}

.valor-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #C12900;
}

.valor-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}
/* FIN VALORES */

/* =============================
   PROGRAMAS
============================= */
.programas-intro {
    text-align: center;
    padding: 60px 20px 20px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #555;
}

.programas-lista {
    padding: 20px 6% 80px;
    background: #fff;
}

.programas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.programa-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.programa-card:hover {
    transform: translateY(-8px);
}

.programa-img {
    height: 220px;
    overflow: hidden;
}

.programa-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.programa-card:hover .programa-img img {
    transform: scale(1.05);
}

.programa-contenido {
    padding: 30px 25px;
}

.programa-contenido h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #C12900;
}

.programa-descripcion-corta {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.programa-detalles {
    margin: 20px 0;
    padding-top: 15px;
    border-top: 2px solid #FF8500;
}

.programa-detalles p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.programa-detalles ul {
    padding-left: 20px;
    list-style-type: disc;
}

.programa-detalles li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

.btn-ver-programa {
    background: transparent;
    border: 2px solid #FF8500;
    color: #FF8500;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: 10px;
}

.btn-ver-programa:hover {
    background: #FF8500;
    color: #fff;
}
.mapa-contacto {
    width: 100%;
    height: 450px;
    margin-top: -40px;
}

.mapa-contacto iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* =============================
   PÁGINA NOSOTROS
============================= */

/* Hero de página */
.page-hero {
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 65px;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero-content h1 span {
    color: #FF8500;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Badge genérico para secciones */
.seccion-badge {
    display: inline-block;
    background: rgba(193, 41, 0, 0.05);
    color: #C12900;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Contenedor genérico */
.nosotros-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECCIÓN 1: ESENCIA */
.nosotros-esencia {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.nosotros-titulo-grande {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
}

.nosotros-texto-grande {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* SECCIÓN 2: TRAYECTORIA */
.nosotros-trayectoria {
    padding: 100px 20px;
    background: #f9f9f9;
    text-align: center;
}

.trayectoria-titulo-grande {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
}

.trayectoria-titulo-grande span {
    color: #FF8500;
    display: block;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.trayectoria-texto-grande {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}


/* =============================
   MISIÓN Y VISIÓN (2 RECTÁNGULOS)
============================= */
.mision-vision {
    padding: 60px 20px 100px;
    background: #ffffff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* EFECTO HOVER PRINCIPAL */
.mv-card:hover {
    transform: translateY(-15px);
    border-color: #C12900;
    box-shadow: 0 30px 50px rgba(193, 41, 0, 0.15);
}

.mv-icono {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.mv-card:hover .mv-icono {
    transform: scale(1.1);
}

.mv-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

/* Línea decorativa debajo del título */
.mv-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #C12900, #FF8500);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.mv-card:hover h3::after {
    width: 100px;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

/* EFECTO DE FONDO SUTIL AL HACER HOVER */
.mv-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 41, 0, 0.03), rgba(255, 133, 0, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.mv-card:hover .mv-hover-effect {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-card {
        padding: 40px 25px;
    }
    
    .mv-card h3 {
        font-size: 1.8rem;
    }
}
/* =============================
   MODAL CARRUSEL
============================= */
.modal-video {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-video.activo {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-contenido {
    background: #ffffff;
    width: 95%;
    max-width: 1000px;
    border-radius: 24px;
    position: relative;
    padding: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Botón cerrar */
.cerrar {
    position: absolute;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

.cerrar:hover {
    color: #C12900;
    background: rgba(193, 41, 0, 0.1);
    transform: rotate(90deg);
}

/* Flechas de navegación */
.nav-flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
    color: #C12900;
}

.nav-flecha:hover {
    background: #C12900;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.nav-flecha.prev {
    left: -20px;
}

.nav-flecha.next {
    right: -20px;
}

/* Carrusel */
.carrusel-contenedor {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.carrusel-item {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.carrusel-item.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Contenido del video */
.video-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.video-texto {
    padding-right: 20px;
}

.video-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C12900, #FF8500);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(193, 41, 0, 0.3);
}

.video-texto h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.video-texto .destacar {
    color: #C12900;
    font-weight: 700;
    position: relative;
}

.video-texto .destacar::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(193, 41, 0, 0.2);
    z-index: -1;
}

.video-descripcion {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.video-descripcion strong {
    color: #C12900;
}

.video-frame {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(193, 41, 0, 0.25);
    border: 4px solid transparent;
    background: linear-gradient(135deg, #C12900, #FF8500);
    padding: 4px;
}

.video-frame iframe,
.video-frame video {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 12px;
    display: block;
    background: #000;
}

/* Indicadores */
.indicadores {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #C12900;
    transform: scale(1.3);
    width: 30px;
    border-radius: 20px;
}

.dot:hover {
    background: #FF8500;
}

/* Responsive */
@media (max-width: 800px) {
    .modal-contenido {
        padding: 30px 20px;
    }
    
    .nav-flecha {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .nav-flecha.prev {
        left: -10px;
    }
    
    .nav-flecha.next {
        right: -10px;
    }
    
    .video-contenido {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .video-texto {
        padding-right: 0;
        text-align: center;
    }
    
    .video-frame iframe,
    .video-frame video {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .video-frame iframe,
    .video-frame video {
        height: 200px;
    }
}
/* =============================
   PÁGINA PROGRAMAS
============================= */

/* Hero de programas */
.page-hero {
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 65px;
}

.page-hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-hero-content .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-content h1 span {
    color: #FF8500;
    display: block;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Introducción programas */
.programas-intro {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.programas-intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.programas-intro-texto {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
}

.programas-intro-texto::before,
.programas-intro-texto::after {
    content: '"';
    font-size: 3rem;
    color: #C12900;
    opacity: 0.3;
    position: absolute;
}

.programas-intro-texto::before {
    top: -20px;
    left: -30px;
}

.programas-intro-texto::after {
    bottom: -40px;
    right: -30px;
    transform: rotate(180deg);
}

/* Lista de programas */
.programas-destacados {
    padding: 80px 6% 100px;
    background: #ffffff;
}

.programas-container {
    max-width: 1200px;
    margin: 0 auto;
}

.programa-item {
    margin-bottom: 100px;
    position: relative;
}

.programa-item:last-child {
    margin-bottom: 0;
}

/* Número grande decorativo */
.programa-numero {
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(193, 41, 0, 0.05);
    z-index: 1;
    line-height: 1;
    user-select: none;
}

/* Grid de cada programa */
.programa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.programa-grid.reverse {
    direction: rtl;
}

.programa-grid.reverse .programa-contenido {
    direction: ltr;
}

/* Imagen */
.programa-imagen {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid transparent;
    background: linear-gradient(135deg, #C12900, #FF8500);
    padding: 4px;
}

.programa-imagen img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: transform 0.6s ease;
}

.programa-item:hover .programa-imagen img {
    transform: scale(1.05);
}

.imagen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(193, 41, 0, 0.2), transparent);
    pointer-events: none;
}

/* Contenido */
.programa-contenido {
    padding: 20px;
}

.programa-contenido h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
}

.programa-contenido h3 span {
    color: #FF8500;
    display: block;
    font-size: 1.6rem;
    margin-top: 5px;
}

.programa-descripcion {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Características (tags) */
.programa-caracteristicas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.programa-caracteristicas span {
    background: rgba(193, 41, 0, 0.05);
    color: #C12900;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.programa-caracteristicas span:hover {
    background: #C12900;
    color: #fff;
    transform: translateY(-2px);
}

/* Link */
.programa-link {
    display: inline-block;
    color: #C12900;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.programa-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #C12900;
    transition: width 0.3s ease;
}

.programa-link:hover {
    color: #FF8500;
}

.programa-link:hover::after {
    width: 100%;
    background: #FF8500;
}

/* CTA final */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-hoy.secundario {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-hoy.secundario:hover {
    background: #fff;
    color: #C12900;
}

/* Responsive */
@media (max-width: 900px) {
    .programa-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .programa-grid.reverse {
        direction: ltr;
    }
    
    .programa-numero {
        font-size: 6rem;
        top: -20px;
        left: 0;
    }
    
    .programa-imagen img {
        height: 280px;
    }
    
    .programa-contenido h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .programa-numero {
        font-size: 4rem;
    }
    
    .programa-imagen img {
        height: 220px;
    }
    
    .programa-caracteristicas span {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}
/* =============================
   PÁGINA EQUIPO
============================= */

/* PORTADA CON LOGO GRANDE */
.equipo-portada {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 100px 20px;
    margin-top: 65px;
}

.equipo-portada-container {
    max-width: 800px;
    margin: 0 auto;
}

.equipo-logo-grande {
    max-width: 300px;
    margin-bottom: 40px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.equipo-titulo-principal {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.equipo-titulo-principal span {
    color: #C12900;
    position: relative;
    display: inline-block;
}

.equipo-titulo-principal span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(193, 41, 0, 0.2);
    z-index: -1;
}

.equipo-descripcion-principal {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-equipo-conocer {
    background: linear-gradient(135deg, #C12900, #FF8500);
    color: #fff;
    border: none;
    padding: 16px 42px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(193, 41, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-equipo-conocer:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(193, 41, 0, 0.4);
}

.btn-equipo-conocer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-equipo-conocer:hover::before {
    left: 100%;
}

/* SECCIÓN EQUIPO COMPLETO */
.equipo-completo {
    padding: 80px 6% 100px;
    background: #ffffff;
    position: relative;
}

.equipo-container {
    max-width: 1300px;
    margin: 0 auto;
}

.equipo-linea-decorativa {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #C12900, #FF8500);
    margin: 0 auto 60px;
    border-radius: 2px;
}

/* Niveles organizacionales */
.nivel-organizacional {
    margin-bottom: 80px;
    position: relative;
}

.nivel-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 25px;
}

.nivel-linea {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #C12900, #FF8500, #C12900, transparent);
    z-index: -1;
}

/* Grid para tarjetas */
.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.equipo-grid-centrado {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Tarjeta destacada (para dirección) */
.equipo-card-destacada {
    max-width: 350px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(193, 41, 0, 0.15);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.equipo-card-destacada:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(193, 41, 0, 0.25);
}

.equipo-card-destacada .card-imagen {
    height: 300px;
    overflow: hidden;
}

.equipo-card-destacada .card-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.equipo-card-destacada:hover .card-imagen img {
    transform: scale(1.1);
}

/* Tarjeta normal */
.equipo-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
}

.equipo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(193, 41, 0, 0.15);
}

.card-imagen {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-imagen::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(193, 41, 0, 0.2), transparent);
    pointer-events: none;
}

.card-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.equipo-card:hover .card-imagen img {
    transform: scale(1.1);
}

.card-info {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.card-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.card-cargo {
    font-size: 0.9rem;
    color: #C12900;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-descripcion {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    font-style: italic;
    position: relative;
    padding-top: 10px;
    border-top: 1px dashed #f0f0f0;
}

/* Mensaje final */
.equipo-mensaje-final {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(193, 41, 0, 0.05), #fff);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.equipo-mensaje-final::before {
    content: '❤️';
    position: absolute;
    font-size: 100px;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.equipo-mensaje-final p {
    font-size: 1.3rem;
    color: #C12900;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .equipo-logo-grande {
        max-width: 200px;
    }
    
    .nivel-titulo {
        font-size: 1.6rem;
        background: transparent;
        left: 0;
        transform: none;
        display: block;
        text-align: center;
    }
    
    .nivel-linea {
        display: none;
    }
    
    .equipo-card-destacada {
        max-width: 100%;
    }
    
    .equipo-card-destacada .card-imagen {
        height: 250px;
    }
    
    .card-imagen {
        height: 220px;
    }
    
    .equipo-mensaje-final p {
        font-size: 1.1rem;
    }
}
/* =============================
   PÁGINA DONAR
============================= */

/* Sección principal */
.donar-principal {
    padding: 60px 6% 80px;
    background: #ffffff;
}

.donar-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Datos bancarios */
.donar-datos-bancarios {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 50px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.donar-datos-bancarios h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.donar-subtitulo {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.datos-banco {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    border-left: 5px solid #C12900;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.banco-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.banco-item:last-child {
    border-bottom: none;
}

.banco-label {
    font-weight: 600;
    width: 180px;
    color: #1a1a1a;
}

.banco-valor {
    flex: 1;
    color: #555;
    font-family: monospace;
    font-size: 1rem;
}

.donar-nota {
    background: rgba(255, 133, 0, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #FF8500;
}

.donar-nota p {
    color: #C12900;
    font-size: 0.95rem;
    margin: 0;
}

/* Pasos */
.donar-pasos {
    margin-bottom: 50px;
}

.donar-pasos h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.pasos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.paso-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.paso-numero {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C12900, #FF8500);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(193, 41, 0, 0.3);
}

.paso-contenido h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.paso-contenido p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Botón WhatsApp */
.donar-contacto {
    text-align: center;
    background: #f0f9f0;
    padding: 40px;
    border-radius: 30px;
    border: 2px dashed #25D366;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    margin-bottom: 20px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.donar-email {
    font-size: 1rem;
    color: #555;
}

.donar-email a {
    color: #C12900;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #C12900;
}

.donar-email a:hover {
    color: #FF8500;
    border-bottom-color: #FF8500;
}

/* Mensaje final inspirador */
.donar-mensaje-final {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(255, 133, 0, 0.03), #fff);
    border-radius: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.donar-mensaje-final::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: rgba(193, 41, 0, 0.05);
    border-radius: 50%;
}

.donar-mensaje-final::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: rgba(255, 133, 0, 0.05);
    border-radius: 50%;
}

.mensaje-corazones {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mensaje-corazones span {
    font-size: 2rem;
    animation: latido 1.5s infinite;
}

.mensaje-corazones span:nth-child(2) {
    animation-delay: 0.3s;
}

.mensaje-corazones span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes latido {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); color: #C12900; }
}

.mensaje-grande {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Otras formas de apoyar */
.donar-otras-formas {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 30px;
}

.donar-otras-formas h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.otras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.otra-forma {
    text-align: center;
}

.otra-icono {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.otra-forma p {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.otras-contacto {
    font-size: 0.9rem;
    color: #999;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .donar-datos-bancarios {
        padding: 25px;
    }
    
    .banco-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .banco-label {
        width: 100%;
    }
    
    .pasos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn-whatsapp {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .mensaje-grande {
        font-size: 1.2rem;
    }
    
    .otras-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .otra-forma {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .otra-icono {
        margin-bottom: 0;
    }
}
/* =============================
   VALORES Y AMORES DE MAMA
============================= */
.valores-corazon {
    padding: 80px 6% 100px;
    background: linear-gradient(135deg, #fff 0%, #fef9f7 100%);
    position: relative;
    overflow: hidden;
}

.valores-corazon::before {
    content: '❤️';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.valores-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.valores-titulo-principal {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.valores-titulo-principal span {
    color: #C12900;
    position: relative;
    display: inline-block;
}

.valores-titulo-principal span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(193, 41, 0, 0.2);
    z-index: -1;
}

/* CORAZÓN DE VALORES */
.corazon-valores {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 40px 0;
}

.corazon-centro {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #C12900, #FF8500);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(193, 41, 0, 0.3);
    animation: palpitar 2s infinite;
    z-index: 5;
}

@keyframes palpitar {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.corazon-icono {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 5px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.corazon-centro h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    max-width: 120px;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Valores alrededor */
.valores-circulo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.valor-item {
    position: absolute;
    background: #fff;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #C12900;
    box-shadow: 0 5px 20px rgba(193, 41, 0, 0.15);
    border: 2px solid #FF8500;
    white-space: nowrap;
    transition: all 0.3s ease;
    z-index: 10;
}

.valor-item:hover {
    background: #C12900;
    color: #fff;
    transform: scale(1.1) translateY(-5px);
    border-color: #fff;
    box-shadow: 0 10px 25px rgba(193, 41, 0, 0.4);
}

/* Posiciones de los valores alrededor del corazón */
.pos-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.pos-2 { top: 15%; right: 15%; }
.pos-3 { top: 30%; right: 5%; }
.pos-4 { bottom: 30%; right: 5%; }
.pos-5 { bottom: 15%; right: 15%; }
.pos-6 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.pos-7 { bottom: 15%; left: 15%; }
.pos-8 { bottom: 30%; left: 5%; }
.pos-9 { top: 30%; left: 5%; }

/* Grid de valores (visible en móvil) */
.valores-grid-lista {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.valor-cuadro {
    background: rgba(193, 41, 0, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #C12900;
    border: 1px solid #FF8500;
    transition: all 0.3s ease;
}

.valor-cuadro:hover {
    background: #C12900;
    color: #fff;
    transform: translateY(-3px);
}

/* AMORES DE MAMA */
.amores-mama {
    margin-top: 80px;
    text-align: center;
}

.amores-titulo {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin: 20px 0 50px;
    color: #1a1a1a;
}

.amores-titulo span {
    color: #C12900;
}
/* AMORES DE MAMA - VERSIÓN CON IMÁGENES */
.amores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.amor-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f5f5f5;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.amor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(193, 41, 0, 0.2);
    border-color: #FF8500;
}

.amor-imagen {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.amor-imagen::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

.amor-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.amor-card:hover .amor-imagen img {
    transform: scale(1.1);
}

.amor-contenido {
    padding: 25px 20px 30px;
    background: #fff;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.amor-contenido h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #C12900;
    position: relative;
    padding-bottom: 10px;
}

.amor-contenido h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #C12900, #FF8500);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.amor-card:hover .amor-contenido h3::after {
    width: 80px;
}

.amor-contenido p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .amores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .amor-imagen {
        height: 180px;
    }
    
    .amor-contenido {
        padding: 20px 15px 25px;
    }
    
    .amor-contenido h3 {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .amores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.amores-corazon {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.amores-corazon span {
    font-size: 2rem;
    animation: latido 1.5s infinite;
}

.amores-corazon span:nth-child(2) {
    animation-delay: 0.3s;
    font-size: 2.5rem;
}

.amores-corazon span:nth-child(3) {
    animation-delay: 0.6s;
}

/* =============================
   LÍNEA DEL TIEMPO PROGRESIVA (UNIFICADA)
============================= */
.nosotros-linea-tiempo {
    padding: 80px 6% 100px;
    background: linear-gradient(135deg, #fcfcfc, #fff);
    position: relative;
    overflow: hidden;
}

.nosotros-linea-tiempo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M50 20 L65 40 L55 40 L55 60 L45 60 L45 40 L35 40 Z" fill="%23C12900"/></svg>');
    background-size: 80px;
    pointer-events: none;
}

.linea-tiempo-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    font-style: italic;
}

/* Contenedor principal de la línea progresiva */
.timeline-progresiva {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
}

/* Línea vertical central */
.timeline-progresiva::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        #FF8500 0%, 
        #C12900 30%, 
        #C12900 70%, 
        #FF8500 100%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(193, 41, 0, 0.3);
    z-index: 1;
}

/* Cada bloque de la línea - OCULTOS POR DEFECTO */
.timeline-bloque {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    display: none;
    justify-content: flex-start;
    z-index: 5;
}

/* Alternar izquierda y derecha */
.timeline-bloque:nth-child(even) {
    justify-content: flex-end;
}

/* Bloques visibles */
.timeline-bloque.visible {
    display: flex;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Marcador (año) */
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.timeline-bloque:hover .timeline-marker {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 15px 35px rgba(193, 41, 0, 0.4);
}

.timeline-year {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Colores de los marcadores */
.marker-rojo { background: linear-gradient(135deg, #C12900, #BF5A38); }
.marker-naranja { background: linear-gradient(135deg, #FF8500, #FF9E26); }
.marker-rosa { background: linear-gradient(135deg, #FF9E26, #FFA42B); }
.marker-verde { background: linear-gradient(135deg, #4caf50, #2e7d32); }
.marker-azul { background: linear-gradient(135deg, #2196f3, #1565c0); }
.marker-dorado { background: linear-gradient(135deg, #FCCA33, #FFA42B); }
.marker-gris { background: linear-gradient(135deg, #9e9e9e, #616161); }
.marker-corazon { 
    background: linear-gradient(135deg, #C12900, #FF8500);
    animation: palpitar-marcador 2s infinite;
}

@keyframes palpitar-marcador {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.15); }
}

/* Caja de contenido */
.timeline-content-box {
    width: 45%;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border-left: 5px solid #C12900;
    z-index: 15;
}

.timeline-bloque:nth-child(even) .timeline-content-box {
    border-left: none;
    border-right: 5px solid #C12900;
}

.timeline-content-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(193, 41, 0, 0.15);
}

.timeline-content-box.destacado {
    background: linear-gradient(135deg, #fff6f0, #fff);
    border-left: 5px solid #FF8500;
    border-right: 5px solid #FF8500;
}

/* Flechas */
.timeline-bloque:nth-child(odd) .timeline-content-box::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    border-width: 10px 0 10px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.1));
    z-index: 16;
}

.timeline-bloque:nth-child(even) .timeline-content-box::after {
    content: '';
    position: absolute;
    top: 25px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    filter: drop-shadow(-2px 2px 3px rgba(0,0,0,0.1));
    z-index: 16;
}

/* Header del contenido */
.content-header {
    margin-bottom: 15px;
    border-bottom: 2px dashed #f0f0f0;
    padding-bottom: 10px;
}

.content-year {
    display: inline-block;
    background: #C12900;
    color: #fff;
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.content-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.timeline-content-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.content-quote {
    font-style: italic;
    color: #C12900;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    margin-top: 10px;
}

/* Items ocultos inicialmente */
.timeline-items-ocultos .timeline-bloque {
    display: none;
}

.timeline-items-ocultos .timeline-bloque.visible {
    display: flex;
}

/* Botón de carga */
.timeline-load-more {
    text-align: center;
    margin: 40px 0 20px;
    position: relative;
    z-index: 10;
}

.btn-cargar-mas {
    background: linear-gradient(135deg, #C12900, #FF8500);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(193, 41, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cargar-mas:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(193, 41, 0, 0.4);
}

.btn-cargar-mas span {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Resumen final */
.timeline-resumen {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(193, 41, 0, 0.1);
    border: 2px solid #FF8500;
}

.timeline-resumen p {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 20px;
}

.resumen-corazones span {
    font-size: 2rem;
    margin: 0 5px;
    animation: latido 1.5s infinite;
    display: inline-block;
}

.resumen-corazones span:nth-child(2) {
    animation-delay: 0.3s;
    font-size: 2.5rem;
}

.resumen-corazones span:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-progresiva::before {
        left: 30px;
    }
    
    .timeline-bloque {
        justify-content: flex-start !important;
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
    }
    
    .timeline-year {
        font-size: 0.8rem;
    }
    
    .timeline-content-box {
        width: 100%;
    }
    
    .timeline-bloque:nth-child(odd) .timeline-content-box::after,
    .timeline-bloque:nth-child(even) .timeline-content-box::after {
        display: none;
    }
    
    .timeline-content-box {
        border-left: 5px solid #C12900 !important;
        border-right: none !important;
    }
    
    .content-header h3 {
        font-size: 1.1rem;
    }
    
    .timeline-items-ocultos .timeline-bloque.visible {
        padding-left: 60px;
    }
}
/* =============================
   SUBNIVELES PARA EQUIPO
============================= */
.subnivel {
    margin-top: 40px;
    margin-bottom: 50px;
}

.subnivel:first-of-type {
    margin-top: 20px;
}

.subnivel-titulo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #C12900;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 20px;
}

.subnivel-titulo::before,
.subnivel-titulo::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, transparent, #FF8500, #C12900);
}

.subnivel-titulo::before {
    right: 100%;
}

.subnivel-titulo::after {
    left: 100%;
    background: linear-gradient(to left, transparent, #FF8500, #C12900);
}

/* Ajuste responsive */
@media (max-width: 768px) {
    .subnivel-titulo::before,
    .subnivel-titulo::after {
        display: none;
    }
    
    .subnivel-titulo {
        font-size: 1.2rem;
        padding: 0;
        background: transparent;
    }
}
/* =============================
   OTRAS FORMAS DE APOYAR - ENLACES
============================= */
.otra-forma-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.otra-forma-link:hover {
    transform: translateY(-5px);
}

.otra-forma {
    text-align: center;
    padding: 20px 15px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.otra-forma-link:hover .otra-forma {
    background: linear-gradient(135deg, #f0f9f0, #fff);
    border-color: #25D366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.otra-icono {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.otra-forma-link:hover .otra-icono {
    transform: scale(1.1);
}

.otra-forma p {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    margin: 0;
}

.otras-contacto {
    font-size: 0.9rem;
    color: #C12900;
    margin-top: 20px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .otras-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .otra-forma {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        padding: 15px;
    }
    
    .otra-icono {
        margin-bottom: 0;
        font-size: 2rem;
    }
}
/* =============================
   INFORME ANUAL 2025
============================= */
.informe-anual {
    padding: 80px 6%;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

.informe-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* TEXTO DEL INFORME */
.informe-texto {
    padding-right: 30px;
}

.informe-texto .seccion-badge {
    display: inline-block;
    background: rgba(193, 41, 0, 0.05);
    color: #C12900;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.informe-texto h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.informe-texto h2 span {
    color: #FF8500;
}

.informe-descripcion {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.informe-descripcion strong {
    color: #C12900;
}

.informe-destacados {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.destacado-item {
    text-align: center;
    padding: 15px 10px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.destacado-item:hover {
    transform: translateY(-5px);
    border-color: #FF8500;
}

.destacado-numero {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #C12900;
    line-height: 1.2;
    margin-bottom: 5px;
}

.destacado-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-informe {
    display: inline-block;
    background: linear-gradient(135deg, #C12900, #FF8500);
    color: #fff;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(193, 41, 0, 0.2);
}

.btn-informe:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(193, 41, 0, 0.3);
}

/* CARRUSEL DE IMÁGENES */
.informe-carrusel {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    background: #f5f5f5;
    aspect-ratio: 16/9; /* Proporción horizontal */
}

.carrusel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Muestra la imagen completa sin recortar */
    background: #fff;
}

/* Controles del carrusel */
.carrusel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
    color: #C12900;
}

.carrusel-control:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(193, 41, 0, 0.2);
}

.carrusel-control.prev {
    left: 20px;
}

.carrusel-control.next {
    right: 20px;
}

/* Indicadores (puntos) */
.carrusel-indicadores {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carrusel-indicadores .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carrusel-indicadores .dot.active {
    background: #C12900;
    transform: scale(1.3);
    border-color: #fff;
}

.carrusel-indicadores .dot:hover {
    background: #FF8500;
}

/* Responsive */
@media (max-width: 900px) {
    .informe-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .informe-texto {
        padding-right: 0;
        text-align: center;
    }
    
    .informe-destacados {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .informe-carrusel {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .informe-destacados {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .carrusel-control {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .carrusel-control.prev {
        left: 10px;
    }
    
    .carrusel-control.next {
        right: 10px;
    }
}

/* =============================
   ICONOS DE REDES SOCIALES - CORREGIDO
============================= */

/* Para la sección de contacto (iconos grandes) */
.redes-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.redes-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden; /* Esto es clave: recorta la imagen en círculo */
    background: white; /* Fondo blanco para que no se vea feo */
    border: 2px solid #FF8500; /* Borde naranja institucional */
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.redes-icons a:hover {
    transform: translateY(-3px);
    border-color: #C12900;
    box-shadow: 0 8px 15px rgba(193, 41, 0, 0.3);
}

.redes-icono {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen al círculo */
    display: block;
}

/* Para el footer (iconos pequeños) */
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden; /* Recorta la imagen en círculo */
    background: white;
    border: 2px solid #FF8500;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    border-color: #C12900;
}

.footer-social-icono {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Si los iconos son de color (no blancos), elimina filter */

/* Para Opción 1 (más items en la misma grid) */
@media (max-width: 768px) {
    .otras-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en móvil */
    }
}

@media (min-width: 769px) {
    .otras-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas en desktop */
    }
}

/* Para Opción 2 (nueva sección) */
.donar-plataformas {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 30px;
    margin-top: 30px;
    border: 1px solid #f0f0f0;
}

.donar-plataformas h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.plataformas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.plataforma-link {
    text-decoration: none;
    color: inherit;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.plataforma-link:hover {
    transform: translateY(-5px);
    border-color: #FF8500;
    box-shadow: 0 10px 20px rgba(255,133,0,0.1);
}

.plataforma-icono {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.plataforma-link span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

/* Responsive */
@media (max-width: 600px) {
    .plataformas-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}/* =============================
   BOTONES DE PROGRAMAS
============================= */
.programa-botones {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.programa-link {
    display: inline-block;
    color: #C12900;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.programa-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #C12900;
    transition: width 0.3s ease;
}

.programa-link:hover {
    color: #FF8500;
}

.programa-link:hover::after {
    width: 100%;
    background: #FF8500;
}

.programa-btn-donar {
    display: inline-block;
    background: linear-gradient(135deg, #C12900, #FF8500);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(193, 41, 0, 0.2);
}

.programa-btn-donar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(193, 41, 0, 0.3);
}
/* =============================
   PÁGINAS INDIVIDUALES DE PROGRAMAS
============================= */

/* Hero del programa */
.programa-hero {
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 65px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.programa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 41, 0, 0.85), rgba(255, 133, 0, 0.85));
    z-index: 1;
}

.programa-hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.programa-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.programa-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.programa-hero h1 span {
    color: #FCCA33;
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-top: 10px;
}

/* Contenedor principal */
.programa-detalle {
    padding: 80px 6%;
    background: #fff;
}

.programa-detalle-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Grid principal */
.programa-detalle-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    margin-bottom: 60px;
}

/* Información principal */
.programa-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.programa-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #C12900, #FF8500);
    border-radius: 2px;
}

.programa-info-descripcion {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #FF8500;
}

.programa-info-block {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.programa-info-block h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #C12900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.programa-info-block h3 i {
    font-size: 2rem;
}

.programa-info-block p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.programa-info-block ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.programa-info-block ul li {
    padding: 12px 15px;
    background: #f9f9f9;
    border-radius: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid #FF8500;
}

.programa-info-block ul li:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.programa-info-block ul li i {
    font-size: 1.3rem;
    min-width: 30px;
    color: #FF8500;
}

/* Sidebar */
.programa-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(193, 41, 0, 0.1);
    border-color: #FF8500;
}

.sidebar-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #C12900;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #C12900, #FF8500);
    border-radius: 2px;
}

.sidebar-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Botones del sidebar */
.sidebar-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    border: none;
    cursor: pointer;
}

.sidebar-btn-donar {
    background: linear-gradient(135deg, #C12900, #FF8500);
    color: #fff;
    box-shadow: 0 8px 20px rgba(193, 41, 0, 0.2);
}

.sidebar-btn-donar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(193, 41, 0, 0.3);
}

.sidebar-btn-voluntario {
    background: transparent;
    border: 2px solid #FF8500;
    color: #FF8500;
}

.sidebar-btn-voluntario:hover {
    background: #FF8500;
    color: #fff;
    transform: translateY(-3px);
}

/* Información del sidebar */
.sidebar-info {
    list-style: none;
    padding: 0;
}

.sidebar-info li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-info li:last-child {
    border-bottom: none;
}

.sidebar-info li i {
    font-size: 1.2rem;
    color: #FF8500;
    min-width: 25px;
}

.sidebar-info strong {
    color: #C12900;
    font-weight: 600;
    margin-right: 5px;
}

/* Redes sociales */
.sidebar-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

.sidebar-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #C12900;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.sidebar-social a:hover {
    background: #C12900;
    color: #fff;
    transform: translateY(-5px);
    border-color: #C12900;
}

/* Galería */
.programa-galeria {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.programa-galeria h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.programa-galeria h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #C12900, #FF8500);
    border-radius: 2px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.galeria-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.galeria-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 30px rgba(193, 41, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .programa-detalle-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programa-info-block ul {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid img {
        height: 200px;
    }
    
    .programa-info-descripcion {
        font-size: 1.1rem;
        padding: 20px;
    }
}
/* =============================
   MENÚ HAMBURGUESA PARA MÓVIL
============================= */

/* Estilos para el botón hamburguesa */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #C12900;
    background: none;
    border: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
    line-height: 1;
}

.menu-toggle:hover {
    color: #FF8500;
}

/* Ajustes del nav para móvil */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 20px 20px;
        z-index: 1000;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    nav.active {
        display: flex;
    }
    
    nav a {
        margin: 12px 0;
        font-size: 1.1rem;
        text-align: center;
        padding: 10px;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    nav a:hover {
        background: rgba(255, 133, 0, 0.1);
    }
    
    nav a.btn-donar-nav {
        margin-top: 15px;
        justify-content: center;
        background: linear-gradient(135deg, #C12900, #FF8500);
        color: white;
        border: none;
    }
    
    nav a.btn-donar-nav:hover {
        background: #C12900;
        transform: translateY(-2px);
    }
    
    /* Ajuste para que el botón donar se vea bien */
    .btn-donar-nav {
        width: 100%;
        padding: 12px !important;
        font-size: 1rem !important;
    }
}

/* =============================
   FOOTER RESPONSIVE
============================= */

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
        padding: 0 20px 40px;
    }
    
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .footer-col p {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
    }
    
    .footer-col h4 {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .footer-col a {
        display: inline-block;
        margin: 5px 10px;
    }
    
    .newsletter {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-legal a {
        margin: 0 5px;
    }
}

/* Ajustes para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px;
    }
}

/* =============================
   AJUSTES GENERALES PARA MÓVIL
============================= */

@media (max-width: 768px) {
    /* Hero section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .hero-quote {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-hero, .btn-video {
        width: 100%;
        max-width: 280px;
        margin: 0 !important;
    }
    
    /* Esencia section */
    .esencia-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .esencia-box {
        padding: 30px 20px;
    }
    
    /* Impacto datos */
    .impacto-datos {
        flex-direction: column;
        gap: 30px;
    }
    
    .impacto-datos div span {
        font-size: 2.5rem;
    }
    
    /* Patrocinadores */
    .carousel-track img {
        height: 50px;
    }
    
    /* Qué hacemos */
    .qh-contenido {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .qh-porcentaje .numero {
        font-size: 4rem;
    }
    
    /* Cards de impacto */
    .impacto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impacto-card {
        height: 350px;
    }
    
    /* Contacto */
    .contacto-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contacto-info {
        text-align: center;
    }
    
    .contacto-datos li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .redes-icons {
        justify-content: center;
    }
    
    /* Equipo ubicación */
    .equipo-ubicacion {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .equipo-contenido {
        text-align: center;
    }
    
    .equipo-mapa {
        height: 300px;
    }
    
    /* Informe anual */
    .informe-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .informe-texto {
        padding-right: 0;
        text-align: center;
    }
    
    .informe-destacados {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .informe-carrusel {
        aspect-ratio: 4/3;
    }
    
    .carrusel-control {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .carrusel-control.prev {
        left: 10px;
    }
    
    .carrusel-control.next {
        right: 10px;
    }
    
    /* Programas en móvil */
    .programa-grid, .programa-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
    
    .programa-numero {
        font-size: 4rem;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .programa-imagen img {
        height: 250px;
    }
    
    .programa-contenido {
        text-align: center;
    }
    
    .programa-caracteristicas {
        justify-content: center;
    }
    
    .programa-botones {
        justify-content: center;
    }
    
    /* Páginas de programas individuales */
    .programa-detalle-grid {
        grid-template-columns: 1fr;
    }
    
    .programa-info-block ul {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid img {
        height: 200px;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 480px) {
    .nav-container {
        padding: 10px 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .menu-toggle {
        font-size: 24px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .informe-carrusel {
        aspect-ratio: 3/4;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
}
/* =============================
   IMAGEN EN MODAL DE VIDEO
============================= */
.modal-imagen {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background: #f0f0f0;
    transition: transform 0.3s ease;
}

.modal-imagen:hover {
    transform: scale(1.02);
}

/* Ajustes responsive */
@media (max-width: 800px) {
    .modal-imagen {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .modal-imagen {
        height: 200px;
    }
}