*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
   
}
body{
    font-family: raleway,roboto,arial;
}
.animated-section {
    opacity: 0; /* Inicialmente invisible */
    transform: translateY(20px); /* Desplazamiento hacia abajo */
    animation: fadeInUp 0.5s ease forwards; /* Duración y tipo de animación */
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/* Asegura que la barra roja cubra todo el ancho */
.top-bar {
  width: 100%;
  position: relative;
}

/* Navbar sticky al hacer scroll */
.navbar {
  transition: all 0.3s ease-in-out;
}
.navbar.fixed-top {
  top: 50px;
  width: 100%;
  z-index: 1030;
}
.btn-report{
  background-color: #fff100;
  border: none;
  padding: 12px;
}
.btn-report:hover{
  background-color: #8a840f;
 
}
.navbar-nav{
  gap: 15px;
}

/* Ajusta el slider para que mantenga proporciones en cualquier dispositivo */
#hero .carousel-item {
  height: auto; /* Usa el 80% de la altura del viewport */

}

#hero .carousel-item img {
  width: 100%;
  max-height: 80vh; 
  object-fit: cover; /* Hace que la imagen se ajuste sin perder proporción */
  margin-top: 100px;
  object-position: top;
}
/* Tamaño de los botones del slider */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  border-radius: 50%;
}


/* Tamaño de los botones del slider */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  border-radius: 50%;
}

.servicio-card {
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  padding: 5px;
}

.servicio-card:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.icono {
  font-size: 50px;
}
#quienes-somos {
  padding: 50px 20px;
}

#quienes-somos h2 {
  font-weight: bold;
  margin-bottom: 30px;
}

#quienes-somos p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.valores-iconos {
  margin: 10px 0;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
}

.amarillo { background-color: #FFD700; }
.verde { background-color: #4CAF50; }
.rojo { background-color: #D32F2F; }

.video-card {
  text-align: center;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.video-card img {
  width: 100%;
  border-radius: 10px;
}

.video-card p {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.video-card:hover {
  transform: scale(1.05);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 14px;
}

.tab-btn:hover {
  background: #0056b3;
}

.tab-btn.active {
  background: #ff9800;
}

.tab-container {
  max-width: 800px;
  margin: auto;
}

.tab-content {
  display: none;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.gallery img {
  width: 280px;
  height: auto;
  border-radius: 5px;
}
.mi-slider {
  margin-top: 40px;
  background-color: whitesmoke;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.mi-slide a {
  display: block;
}

.mi-slide-track {
  display: flex;
  gap: 3em;
  width: max-content;
  animation: mi-scroll 20s linear infinite;
}

.mi-slide {
  flex: 0 0 auto;
}

.mi-slide img {
  width: 100px;
  height: 100px;
}

/* 🔁 Animación del scroll infinito */
@keyframes mi-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.enlaces-interes {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
}
/* Lightbox (fondo oscuro y centrado) */
.lightbox {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

/* Imagen dentro del lightbox */
.lightbox-content {
  width: 500px;
  height: auto;
  max-width: 95vw; /* 95% del ancho de la pantalla */
  max-height: 95vh; /* 95% del alto de la pantalla */
  object-fit: contain; /* Asegura que la imagen no se deforme */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

/* Botón de cerrar */
.close {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 40px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: red;
}
.cursos-capacitaciones {
  text-align: center;
  padding: 20px;
}

.cursos-capacitaciones h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cursos-capacitaciones p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.cursos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.curso-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.curso-card img {
  width: 100%;
  border-radius: 10px;
}

.curso-card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.btn-interesa {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-interesa:hover {
  background-color: #cc0000;
}
 /* 🟡 Botón flotante */
 .btn-incidente {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffcc00;
  color: black;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  z-index: 1000;
}
.btn-incidente:hover {
  transform: scale(1.1);
}

/* 🚨 Ícono de alarma */
.btn-incidente svg {
  width: 30px;
  height: 30px;
}

/* 📋 Estilos del modal */
.modal-incidente {
  display: none;
  position: fixed;
  z-index: 100000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-contenido-incidente {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cerrar-incidente {
  float: right;
  font-size: 20px;
  cursor: pointer;
  color: red;
}
@keyframes latido {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.2);
  }
  100% {
      transform: scale(1);
  }
}

/* Aplica la animación a los botones */
.btn-incidente.btn-report-call {
  animation: latido 1.5s infinite;
}

.cerrar-incidente:hover {
  color: darkred;
}

.form-group-incidente {
  margin-bottom: 15px;
  text-align: left;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input, select, textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
ul li{
  text-align: start;
  list-style: none;
}

textarea {
  resize: none;
  height: 60px;
}

.btn-enviar-incidente {
  background-color: #ffcc00;
  color: black;
  border: none;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
}

.btn-enviar-incidente:hover {
  background-color: #e6b800;
}
.bomberos-cursos {
  background: linear-gradient(135deg, #0b1f3a, #152f4d);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.bomberos-contenido {
  max-width: 600px;
  margin: 0 auto;
}

.bomberos-logo {
  width: 120px;
  margin-bottom: 20px;
}

.bomberos-cursos h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.bomberos-cursos p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.btn-palpitante {
  background-color: #ff3333;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  text-decoration: none;
  animation: latido 1.2s infinite;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-palpitante:hover {
  background-color: #cc0000;
}

@keyframes latido {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.unidad-card{
  display: flex;
  gap:20px;
  align-items: center;
}

.card-imagen img{
    height: 200px;
    width: auto;
}
#paso-a-paso h2, .cursos-capacitaciones h2{
  font-weight: bold;
  margin: 30px 0px !important;
  text-align: center;
}
.donaciones {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.donaciones .capa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(113, 4, 4, 0.88); /* Rojo con opacidad */
  z-index: 1;
}

.donaciones .contenido {
  position: relative;
  z-index: 2;
}

.donaciones {
  background: url('./assets/bomberos2.jpeg') no-repeat center center/cover;
}

.btn-donar {
  background: #ff4500;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-donar:hover {
  background: #d83600;
}

input[type="number"] {
  padding: 10px;
  font-size: 16px;
  width: 200px;
  margin-top: 10px;
  text-align: center;
  border-radius: 5px;
}
.footer {
  background-color: #7D0C0C; /* Rojo oscuro */
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

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

.footer-left, .footer-center, .footer-right {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  text-align: center;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.emergency-number {
  font-size: 20px;
  font-weight: bold;
}

.emergency-btn {
  display: inline-block;
  background-color: white;
  color: #7D0C0C;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.emergency-btn:hover {
  background-color: #ffcccc;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.email-list a {
  color: white;
  text-decoration: none;
}

.email-list a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid white;
  padding-top: 10px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffcccc;
}
/* MODAL ESTILO */
.modal-install {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-install-content {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.close-install {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

/* BOTÓN ESTILO */
.btn-install {
  background-color: #cc1c5982;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.btn-install:hover {
  background-color: #cc1c59;
}

/* BOTÓN FLOTANTE */
.floating-install-btn {
  display: none;
  position: fixed;
  bottom: 80px; /* Justo arriba del botón de reportar incidente */
  right: 20px;
  background-color: #cc1c5982;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.floating-install-btn:hover {
  background-color: #cc1c59;
}

/* General */
.validador-certificados-section {
  background-color: #f9fafc;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.validador-certificados-container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.validador-certificados-titulo {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #d12525;
}

.validador-certificados-descripcion {
  text-align: center;
  margin-bottom: 2rem;
  color: #444;
}

/* Formulario */
.validador-certificados-formulario {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.validador-certificados-grupo {
  display: flex;
  flex-direction: column;
}

.validador-certificados-grupo label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.validador-certificados-grupo input,
.validador-certificados-grupo select {
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.validador-btn {
  margin-top: 0.8rem;
  background-color: #d12525;
  color: #fff;
  border: none;
  padding: 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.validador-btn:hover {
  background-color: #a91c1c;
}

/* Resultado */
.validador-certificados-resultado {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f1f5f9;
  border: 1px dashed #999;
  border-radius: 8px;
  font-size: 1rem;
  color: #222;
}


@media (max-width: 768px) {

  #hero .carousel-item {
    height: auto; /* Ajusta la altura automáticamente */
    margin-top: 110px;
  }
  #hero .carousel-item img {
      height: 320px; /* Mantiene proporciones sin cortar */
      object-fit: contain; /* Evita que se recorte la imagen */
      margin-top: 0px;
  }
  .cursos-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .curso-card {
      width: 90%;
  }
  .bomberos-cursos h2 {
    font-size: 1.5em;
  }

  .btn-palpitante {
    padding: 12px 25px;
    font-size: 1em;
  }
  .cursos-container {
    flex-direction: column;
    align-items: center;
}

.curso-card {
    width: 90%;
}
.validador-certificados-container {
  padding: 1.5rem 1rem;
}

.validador-btn {
  width: 100%;
  text-align: center;
}
.unidad-card{
  display: flex;
  flex-direction: column;
  gap:20px;
  align-items: center;
}

.card-imagen img{
    height: 120px;
    width: auto;
}


}

@media (max-width: 410px) {
  #hero .carousel-item img {
    height: 280px; /* Mantiene proporciones sin cortar */
    object-fit: fill; /* Evita que se recorte la imagen */
    margin-top: 0px;
}
}
