/* Estilos para la sección Hero */
.hero.hero-apoyo {
  background-image: url('img/IMG_7614.jpg'); /* Ruta a tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Cambié a blanco para mejor contraste */
  text-align: center;
  position: relative;
  padding: 0 20px;
}

/* Overlay para mejor contraste (ajusté la opacidad) */
.hero.hero-apoyo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Reduje la opacidad */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  background-color: transparent !important; /* Fuerza transparencia */
  box-shadow: none !important; /* Elimina sombras */
  padding: 0; /* Opcional: ajusta si necesitas espacio */
}

.hero-text {
  background-color: transparent; /* Asegura que no haya fondo */
  padding: 20px;
  border-radius: 0; /* Elimina bordes redondeados si los hubiera */
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: white; /* Texto blanco */
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  color: white; /* Texto blanco */
}

.btn-hero {
  background-color: #e63946;
  color: white; /* Cambié a blanco para mejor contraste */
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: #c1121f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Sección de Impacto */
.impacto {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.estadisticas {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 50px 0;
}

.estadistica-item {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 200px;
}

.estadistica-numero {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Carrusel Impacto */
.carrusel-impacto {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carrusel-contenedor {
  display: flex;
  transition: transform 0.5s ease;
}

.carrusel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  position: relative;
}

.carrusel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.carrusel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 30px;
}

.carrusel-caption h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Programas */
.programas {
  padding: 80px 0;
  background-color: white;
}

.programas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.programa-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.programa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.programa-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.programa-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.btn-programa {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-programa:hover {
  background-color: var(--secondary-color);
}

/* Sección Donación */
.donacion {
  padding: 80px 0;
  background-color: var(--light-color);
}

.donacion-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.donacion-text {
  flex: 1;
  min-width: 300px;
}

.donacion-form {
  flex: 1;
  min-width: 300px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donacion-form h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 100px;
}

.btn-enviar {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-enviar:hover {
  background-color: var(--secondary-color);
}

.metodos-donacion {
  margin-top: 40px;
}

.metodos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.metodo {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.metodo i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.metodo h4 {
  margin-bottom: 10px;
}

/* Testimonios */
.testimonios {
  padding: 80px 0;
  background-color: white;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonio {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
}

.testimonio-img {
  height: 200px;
}

.testimonio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonio-content {
  padding: 25px;
  flex: 1;
}

.testimonio-content p {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
}

.testimonio-content h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonio-content span {
  color: #777;
  font-size: 0.9rem;
}

/* Modal Confirmación */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.modal-contenido {
  position: relative;
  background-color: white;
  margin: 10% auto;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  text-align: center;
  animation: modalFadeIn 0.4s;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-cerrar {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-cerrar:hover {
  color: var(--primary-color);
}

.modal-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.modal h3 {
  margin-bottom: 15px;
}

.btn-modal {
  padding: 12px 30px;
  margin-top: 25px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-modal:hover {
  background-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-apoyo {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-apoyo .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .donacion-content {
    flex-direction: column;
  }
  
  .carrusel-slide img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero-apoyo {
    height: 50vh;
    min-height: 300px;
  }
  
  .hero-apoyo .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-apoyo .hero-text p {
    font-size: 1.2rem;
  }
  
  .estadistica-item {
    min-width: 100%;
    margin-bottom: 20px;
  }
  
  .carrusel-slide img {
    height: 250px;
  }
}




/* Estilos generales para la sección */
.producciones {
  padding: 60px 0;
  background-color: #f9f9f9;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
  position: relative;
  padding-bottom: 15px;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #e74c3c;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #666;
  font-style: italic;
}

/* Estilos para las tarjetas de películas */
.pelicula-card {
  display: flex;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-wrap: wrap;
}

.pelicula-imagen {
  flex: 1 1 300px;
  min-height: 400px;
  overflow: hidden;
}

.pelicula-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pelicula-imagen:hover img {
  transform: scale(1.05);
}

.pelicula-contenido {
  flex: 2 1 500px;
  padding: 30px;
}

.pelicula-contenido h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #e74c3c;
}

.pelicula-genero {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pelicula-descripcion {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

.pelicula-contenido h4 {
  font-size: 1.3rem;
  margin: 25px 0 15px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.elenco-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.elenco-list li {
  padding: 8px 12px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 0.9rem;
}

.director-info {
  margin: 25px 0;
  padding: 15px;
  background: #f8f8f8;
  border-left: 4px solid #e74c3c;
  font-size: 0.95rem;
  line-height: 1.5;
}

.director-info strong {
  color: #e74c3c;
}

/* Estilos para los botones de enlaces */
.pelicula-enlaces {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.btn-enlace {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-enlace:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.btn-enlace i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Sección de apoyo */
.apoyo-cine {
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-top: 30px;
}

.apoyo-cine h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #e74c3c;
}

.apoyo-cine p {
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.btn-donar {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-donar:hover {
  background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .pelicula-card {
    flex-direction: column;
  }
  
  .pelicula-imagen {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  
  .pelicula-contenido {
    padding: 20px;
  }
  
  .elenco-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media (max-width: 576px) {
  .pelicula-enlaces {
    flex-direction: column;
  }
  
  .btn-enlace {
    justify-content: center;
  }
  
  .apoyo-cine {
    padding: 30px 20px;
  }
}