* { margin:0; padding:0; box-sizing:border-box; font-family: 'Montserrat', sans-serif; }
body { color:#fff; background:#000; scroll-behavior: smooth; }
/* =========================
   SLIDER HERO PROFESIONAL
========================= */

/* =========================
   HERO SLIDER – FINAL PRO
========================= */

/* CONTENEDOR PRINCIPAL */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 95px);
  margin-top: 95px;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slider video {
  height: 100%;
  width: auto;      /* mantiene proporción 9:16 */
  max-width: 100%;
}


/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* MEDIA BASE */
.slide img,
.slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* muestra completo */
  object-position: center;
  background: #000;
}


/* =========================
   DESKTOP (PC)
========================= */

/* IMÁGENES COMPLETAS EN PC */
.slide img {
  object-fit: contain;   /* no se cortan */
  background: #2e6a3c;
}

/* VIDEO FULL EN PC */
.slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* muestra completo */
  background: #000;     /* fondo negro elegante */
}


/* =========================
   OVERLAY
========================= */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.7)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  z-index: 3;
}

/* TEXTO ANIMADO */
.animated-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

.overlay p {
  font-size: 1.2rem;
  margin: 15px 0;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

/* BOTÓN */
.overlay .btn {
  background: #d81f26;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.overlay .btn:hover {
  background: #fff;
  color: #d81f26;
}

/* =========================
   CONTROLES
========================= */

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(22, 51, 24, 0.4);
  border: none;
  font-size: 2rem;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s ease;
  z-index: 4;
}

.prev:hover,
.next:hover {
  background: rgba(18, 53, 17, 0.7);
}

.prev { left: 20px; }
.next { right: 20px; }

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  background: #d81f26;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1023px) {
  .hero-slider {
     height: 100vh;      /* ocupa toda la pantalla */
    margin-top: 0; 
  }

  .slide img,
  .slide video {
    object-fit: cover;
  }

  .slide video {
    object-position: center top;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {

  .hero-slider {
    height: 100dvh;
    margin-top: 0;
  }

  .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 llena toda la pantalla */
    object-position: center;
  }

}



/* dejamos 480px solo para texto */
@media (max-width: 480px) {

  .overlay h1 {
    font-size: 1.6rem;
  }

  .overlay p {
    font-size: 0.9rem;
  }

}


/* =========================
   ANIMACIÓN
========================= */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* TEXTO ANIMADO */
.animated-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

/* TEXTO */
.overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

.overlay p {
  font-size: 1.2rem;
  margin: 15px 0;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

/* BOTÓN */
.overlay .btn {
  background: #d81f26;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.overlay .btn:hover {
  background: #fff;
  color: #d81f26;
}

/* BOTONES PREV / NEXT */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  font-size: 2rem;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s ease;
  z-index: 4;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  background: #d81f26;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 50vh;
  }

  .overlay h1 {
    font-size: 1.6rem;
  }

  .overlay p {
    font-size: 0.9rem;
  }
}

.fecisc-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 20px;
  background: url(images/f5.png);
  max-width: 100%;
  overflow: hidden;
}

.fecisc-hero h1 {
  color: #fff;
  border-bottom: 3px solid white;
  padding-bottom: 15px;
  text-align: left;
  margin: 0;
}

.fecisc-hero p {
  margin-top: 0px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
}

.hero-girl {
  flex-shrink: 0;
  height: clamp(350px, 60vh, 700px);
  width: auto;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 250px;
  max-width: 100%;
  overflow: hidden;
}

.info-item {
  background: linear-gradient(135deg, #476d58, #628369);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.toggle-btn {
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-text {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

@media (max-width:768px) {
  .fecisc-hero {
    flex-direction: column;
    align-items: center;
  }
  .hero-content {
    width: 100%;
    gap: 15px;
  }
  .info-text {
    max-height: 0;
    opacity: 0;
  }
}


/* SECCION FESTIVAL */
.festival-edition{
  padding:60px 20px;
  background:#f5f5f5;
}

/* CONTENEDOR PRINCIPAL */
.festival-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:50px;
}

/* CONTENEDOR DEL FLYER */
.festival-flyer{
  flex:1;
  text-align:center;
}

/* IMAGEN DEL FLYER */
.festival-flyer img{
  width:100%;
  height:auto;
  display:block;
  margin:auto;
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* CONTENEDOR DEL TEXTO */
.festival-info{
  flex:1;
}

/* TITULO */
.festival-info h2{
  font-size:30px;
  margin-bottom:15px;
  color:#111;
  
}

/* LINEA DECORATIVA */
.line{
  width:60px;
  height:4px;
  background:#000;
  margin-bottom:20px;
}

/* TEXTO */
.festival-info p{
  font-size:16px;
  line-height:1.7;
  color:#333;
  margin-bottom:15px;
}

/* RESPONSIVO */
@media(max-width:768px){

  .festival-container{
    flex-direction:column;
    text-align:justify;
    gap:25px;
  }

  .festival-flyer img{
    max-width:280px; /* flyer más pequeño en celular */
  }

  .festival-info h2{
    font-size:24px;
  }

  .festival-info p{
    font-size:15px;
    text-align: justify;
  }

  .line{
  width:60px;
  height:4px;
  background:#000;
  margin-bottom:20px;
}
}
 
 
.convocatoria {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  background:url(images/f4.png);
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow: hidden;
  max-width: 100%;
}

.chica-hero {
  flex-shrink: 0;
  width: 250px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transition: transform 0.5s ease;
}

.chica-hero:hover {
  transform: scale(1.05);
}

.hero-content1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 250px;
  max-width: 100%;
  overflow: hidden;
}

.hero-content1 h2 {
  font-size: 2.5rem;
  font-weight: 800;
  border-bottom: 3px solid #fff;
  padding-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.btn-categorias {
  background-color: #fff;
  color: #68af7b;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-categorias:hover {
  background-color: #9fd1ad;
  color: #fff;
}

.lista-categorias {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.categoria-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: 8px;
  color: #739b7d;
  font-weight: 600;
}

.categoria-item img {
  width: 24px;
  height: 24px;
}

.botones-convocatoria {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn0-detalle {
  padding: 12px 25px;
  border-radius: 10px;
  background-color: #fff;
  color: #32a852;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn0-detalle:hover {
  background-color: #32a852;
  color: #fff;
}

.btn0-detalle.outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn0-detalle.outline:hover {
  background-color: #fff;
  color: #32a852;
}

.btn0-detalle.green {
  background-color: #32a852;
  color: #fff;
}

.btn0-detalle.green:hover {
  background-color: #74947d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .convocatoria {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }

  .chica-hero {
    width: 200px;
  }

  .hero-content1 {
    align-items: center;
    text-align: center;
  }

  .lista-categorias {
    width: 100%;
    max-width: 300px;
  }

  .btn-categorias {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 300px) {
  .convocatoria {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    padding: 20px 10px;
  }

  .chica-hero {
    width: 150px;
  }

  .hero-content1 {
    align-items: center;
    text-align: center;
  }

  .lista-categorias {
    width: 100%;
    max-width: 250px;
    gap: 8px;
  }

  .categoria-item {
    font-size: 0.85rem;
    padding: 6px 8px;
  }

  .categoria-item i {
    font-size: 18px;
  }

  .btn-categorias {
    width: 100%;
    max-width: 180px;
    font-size: 0.85rem;
    padding: 8px 15px;
  }

  .botones-convocatoria {
    flex-direction: column;
    gap: 10px;
  }

  .btn0-detalle {
    font-size: 0.85rem;
    padding: 8px 15px;
  }
}

/* ================= NAVBAR PROFESIONAL ================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    background 0.45s ease,
    backdrop-filter 0.45s ease;
  overflow: hidden;
}

#navbar.nav-visible {
  transform: translateY(0);
  opacity: 1;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

#navbar.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6%;
  max-width: 100%;
  overflow: hidden;
}

.nav-container .logo {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

/* Botón hamburguesa */
.menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 5px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  padding: 5px 10px;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #2e6a3c;
}

.nav-container nav {
  display: flex;
  gap: 20px;
}

.nav-container nav a {
  color: #fff;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-container nav a:hover {
  transform: scale(1.1);
}

.nav-container nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2e6a3c;
  transition: width 0.35s ease;
}

.nav-container nav a:hover::after {
  width: 100%;
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-container nav {
    display: none; /* Ocultar menú original en móvil */
  }
}

/* MODAL PARA MENÚ HAMBURGUESA */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modal-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.modal-nav a {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.modal-nav a:hover {
  color: #2e6a3c;
  transform: scale(1.1);
}

/* ================= FORMACIÓN ================= */
.formacion {
  padding: 60px 20px;
  background: url(images/f5.png);
  color: #fff;
  text-align: center;
}

.formacion .heading {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #fff;
}

.formacion .heading span {
  color: #fff4c7;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.box-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.btn {
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn.info {
  background: #2e6a3c;
  color: #fff4c7;
}

.btn.info:hover {
  background: #2e6a3c;
}

.btn.inscribirse {
  background: #fff4c7;
  color: #2e6a3c;
}

.btn.inscribirse:hover {
  background: #fff4c7;
}

.info-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  text-align: left;
}

.info-extra.active {
  max-height: 500px;
  opacity: 1;
}

.docente {
  margin-bottom: 10px;
}

.docente span {
  font-weight: 700;
  color: #fff4c7;
}

.info-extra p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.icon {
  color: #fff4c7;
  margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .box-container {
    grid-template-columns: 1fr;
  }

  .buttons {
    flex-direction: column;
  }

  .formacion .heading {
    font-size: 2rem;
  }
}

/* ===== SECCION ===== */

.film-section{
padding:60px 5%;
background:#000;
color:#fff;
}

/* ===== TITULO ===== */

.film-header{
text-align:center;
margin-bottom:40px;
}

.film-header h2{
font-size:38px;
margin-bottom:10px;
}

.film-header p{
color:#FFF4C7;
font-size:18px;
}

/* ===== GRID ===== */

.film-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* ===== TARJETAS ===== */

.film-card{
background:#111;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.5);
display:flex;
flex-direction:column;
}

/* ===== IMAGEN ===== */

.film-img{
width:100%;
}

.film-img img{
width:100%;
height:auto;
display:block;
}

/* ===== CONTENIDO ===== */

.film-info{
padding:20px;
text-align:center;
}

.film-info h3{
margin-bottom:8px;
}

.director{
font-size:13px;
color:#ccc;
margin-bottom:10px;
}

/* ===== BOTONES ===== */

.btn-sinopsis{
background:#444;
color:#fff;
border:none;
padding:8px 14px;
border-radius:6px;
cursor:pointer;
margin-bottom:10px;
}

.film-btn{
display:inline-block;
background:#fff4c7;
color:#000;
padding:10px 18px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
margin-top:8px;
}

/* ===== SINOPSIS ===== */



/* ===== TABLET ===== */

@media(max-width:1024px){

.film-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* ===== CELULAR ===== */

@media(max-width:768px){

.film-grid{
grid-template-columns:1fr;
gap:20px;
}

.film-card{
max-width:320px;
margin:auto;
}

.film-card.active .film-desc{
max-height:200px;
overflow-y:auto;
}
}
 
  

.sponsors-zone {
  background: #fff;
  padding: 60px 5%;
}

/* BLOQUE */
.sponsor-block {
  margin-bottom: 30px;
}

/* TITULO */
.sponsor-heading {
  color: #2E6A3C;
  text-align: center;
  margin-bottom: 15px;
  font-size: 26px;
}

.sponsor-heading span {
  color: #977e27;
}
/* =========================
   BLOQUE ORGANIZA
========================= */

.sponsor-block {
  width: 100%;
  padding: 30px 0; /* menos espacio arriba y abajo */
  text-align: center;
}

.sponsor-heading {
  font-size: 28px;
  margin-bottom: 15px; /* menos separación del logo */
}

/* CONTENEDOR CENTRADO REAL */
.static-logos {
  width: 100%;
  display: flex;
  justify-content: center; /* centra horizontal */
  align-items: center;     /* centra vertical */
}

/* IMAGEN */
.static-logos img {
  display: block;
  margin: 0 auto;          /* doble seguro de centrado */
  max-width: 200px;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sponsor-block {
    padding: 20px 0; /* aún menos espacio en celular */
  }

  .sponsor-heading {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .static-logos img {
    max-width: 140px;
  }
}


/* CARRUSEL */
.logo-carousel {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.logo-track {
  display: flex;
  gap: 50px;
  align-items: center;
  width: max-content;
}


/* LOGOS */
.logo-track img {
  height: 60px;
  object-fit: contain;
  transition: .3s;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .logo-track img {
    height: 45px;
  }
}

/*quiero ser voluntaria*/

.voluntariado-strip {
  width: 100%;
  padding: 35px 6%;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

/* TEXTO */
.voluntariado-texto {
  color: #fff;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.voluntariado-texto span {
  color: #fff4c7;
  text-decoration: underline;
}

/* BOTÓN */
.voluntariado-link {
  padding: 14px 34px;
  background: linear-gradient(135deg, #021b0c, #2e6a3c);
  color: #fff4c7;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(46,204,113,.4);
  transition: .3s ease;
}

.voluntariado-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(46,204,113,.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .voluntariado-strip {
    flex-direction: column;
    text-align: center;
  }

  .voluntariado-link {
    width: 100%;
    text-align: center;
  }
}
/* =========================
   EQUIPO
========================= */
.equipo {
  padding: 70px 5%;
  background: url(images/f4.png);
}

/* TITULO */
.equipo .heading {
  text-align: center;
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 50px;
  color: #fff;
}

.equipo .heading span {
  color: #fff4c7;
}

/* =========================
   GRID DESKTOP
========================= */
.equipo .box-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 28px;
}

/* =========================
   CARD
========================= */
.equipo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* IMAGEN CIRCULAR */
.equipo-box .img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(247, 202, 68, 0.6);
  box-shadow: 0 10px 25px rgba(0,0,0,.6);
  transition: transform .3s ease;
}

.equipo-box:hover .img {
  transform: scale(1.05);
}

.equipo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TEXTO AJUSTADO ===== */

/* CARGO */
.equipo-box h3 {
  margin: 10px auto 2px;     /* ⬅ menos espacio abajo */
  font-size: 11px;
  letter-spacing: .8px;
  color: #fff4c7;
  text-transform: uppercase;
  text-align: center;
  max-width: 130px;
  line-height: 1.15;
  word-break: normal;
  white-space: normal;      /* ⬅ permite ver COORDINADORA completo */
}

/* NOMBRE */
.equipo-box .cargo {
  margin-top: 0;            /* ⬅ pegado al cargo */
  font-size: 11px;
  color: #ddd;
  text-align: center;
  max-width: 130px;
  line-height: 1.25;
}


/* =========================
   BREAKPOINTS GRID
========================= */
@media (max-width: 1200px) {
  .equipo .box-container {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 900px) {
  .equipo .box-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================
   CARRUSEL EN MÓVIL
========================= */
@media (max-width: 768px) {
  .equipo .box-container {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .equipo .box-container::-webkit-scrollbar {
    display: none;
  }

  .equipo-box {
    min-width: 110px;
    max-width: 110px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .equipo-box .img {
    width: 110px;
    height: 110px;
  }
}

/* =========================
   MÓVIL PEQUEÑO
========================= */
@media (max-width: 480px) {
  .equipo-box {
    min-width: 95px;
    max-width: 95px;
  }

  .equipo-box .img {
    width: 95px;
    height: 95px;
  }
    .equipo-box h3,
  .equipo-box .cargo {
    max-width: 100px;
    font-size: 10px;
    line-height: 1.2;
  }
}













/* ================= CONTACTO ================= */
.contacto {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  text-align: center;
}

.contacto .heading {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #fff;
}

.contacto .heading span {
  color: #2e6a3c;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.map {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

form {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.inputBox {
  position: relative;
  margin-bottom: 20px;
}

.inputBox span {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e6a3c;
  font-size: 1.2rem;
}

.inputBox input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid #2e6a3c;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.inputBox input::placeholder {
  color: #ccc;
}

.inputBox input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

form .btn {
  width: 100%;
  padding: 15px;
  background: #2e6a3c;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

form .btn:hover {
  background: #5cc9a7;
}

/* Responsive */
@media (max-width: 400px) {
  .row {
    flex-direction: column;
  }

  .map {
    height: 300px;
  }

  .contacto .heading {
    font-size: 2rem;
  }
}






/* ================= CONTACTO - AJUSTES RESPONSIVE ================= */
@media (max-width: 768px) {
  .row {
    justify-content: center; /* Centrar contenido en móviles */
    text-align: center;
  }

  .map {
    height: 300px;
  }

  .contacto .heading {
    font-size: 2rem;
  }
}

/* ================= IMÁGENES DE FONDO PARA SECCIONES ================= */
/* Cambia las rutas por tus imágenes reales */

/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff4c7;
}

.footer-section p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #2e6a3c;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 0.8rem;
}

/* Responsive para footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
  }
}


/* =========================
   AUSPICIADORES
========================= */
.auspiciadores{
  background: linear-gradient(180deg, #2E6A3C, #203a43, #2e5364);
  padding: 80px 5%;
}

.bloque{
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 60px;
}

.titulo{
  text-align: center;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.titulo span{
  color: #FFF4C7;
}

  