@charset "utf-8";
 body {
  font-family: Helvetica, sans-serif;
  background-color: #202020;
  margin: 0;
  padding: 0;
  color: #dcdcdc;
  font-size: 18px; /* Aumentamos un poco el tamaño base */
  line-height: 1.6;
}
.descripcion, .descripcion b, .descripcion strong, .descripcion * {
  max-width: 100%;
  margin: auto;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.6;
  font-family: Arial, sans-serif !important;
}
.negrita-especial {
  font-weight: bold;
  color: inherit; /* heredará el color del padre */
}

.descripcion audio.audio-responsive {
  display: block;
  margin: 1rem auto;
}	
.responsive-iframe {
  width: 100%;
  aspect-ratio: 4/3;
  border: none;
}

.audio-responsive {
  width: 100%;
  max-width: 600px;
  height: 48px;
  outline: none;
  margin: 10px 0;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .audio-responsive {
    height: 64px;
  }
}

.botton-buscar {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #0070d2;
  border-radius: 0.5rem;
  border: 3px solid #e9e9e9;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  min-width: 120px;
  transition: all 0.3s ease;
}

/* Hover opcional */
.botton-buscar:hover {
  background-color: #005fb2;
  border-color: #d43131;
}

/* 📱 Ajustes para móviles */
@media (max-width: 768px) {
  .botton-buscar {
    font-size: 16px;
    padding: 0.4rem 0.8rem;
    border-width: 2px;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .botton-buscar {
    font-size: 14px;
    padding: 0.3rem 0.6rem;
    border-width: 2px;
    min-width: 90px;
  }
}


.botton-buscar:hover {
  background-color: #005fb2;
  border-color: #d43131;
}

.img-limitada {
  width: 60%;
}

.img-pequena {
  width: 60%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .img-limitada,
  .img-pequena {
    width: 100%;
    max-width: 100%;
  }
}

/* CAMBIO PRINCIPAL AQUÍ: eliminamos max-width para usar ancho total */
.container {
  width: 100%;
  max-width: none;
  margin: auto;
  padding: 1.5rem;
  text-align: center;
}

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

.a2a_kit {
  margin: 1.5rem auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
	
	.iframe-pdf {
  width: 100%;
  border: none;
  height: 50px;
}

@media (max-width: 768px) {
  .iframe-pdf {
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .pdf-responsive {
    height: 200px !important;
    max-height: 200px !important;
  }
}


/* CONTENEDOR PRINCIPAL centrado */
.contenedor-principal {
  flex-grow: 1;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
}

/* PANTALLAS MÁS PEQUEÑAS */
@media screen and (max-width: 1600px) {
  .contenedor-principal {
    max-width: 1100px;
  }
}
@media screen and (max-width: 1440px) {
  .contenedor-principal {
    max-width: 980px;
  }
}
@media screen and (max-width: 1280px) {
  .contenedor-principal {
    max-width: 860px;
  }
}
@media screen and (max-width: 1152px) {
  .contenedor-principal {
    max-width: 780px;
  }
}
.contenedor-principal {
  text-align: center;
}
