

.accordion {
  max-width: 800px;
  margin-left: 0;
}

/* Estilos del ítem del acordeón */
.accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 20px;
  overflow: hidden;
}

/* Estilos del botón del acordeón */
.accordion-button {
  width: 100%;
  background-color: transparent;
  color: rgb(0, 0, 0);
  font-weight: 520;
  padding: 1rem 5rem 1rem 1rem;
  transition: background-color 0.3s ease;
  border: none;
 
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
}

    .accordion-button strong, 
.accordion-button b {
  white-space: nowrap;
  display: inline !important;
}
  


.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: rgb(0, 0, 0);
  box-shadow: none;
}

/* Ícono + / - */
.accordion-button::after {
  content: "+";
  position: absolute;
  right: 15px;
   -webkit-text-stroke: 1.5px #000; /* Grosor y color del borde */
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #000000;
  font-weight: bold;
  transition: transform 0.3s ease;
  background-image: none;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  color: #000000;
}

.accordion-header {
  font-size: 6rem !important;
}

/* Cuerpo del acordeón */
.accordion-body {
  background-color: transparent;
  color: #000000;
  font-size: 1.1rem;
  text-align: justify;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .d-block {
    font-size: 3rem;
  }
  
  .img-fluid.w-200 {
    max-width: 180px;
    margin-bottom: 20px;
  }
  
  .accordion-button {
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .accordion-button::after {
    font-size: 1.2rem;
    right: 10px;
  }
}