p{
    line-height:1.5rem;
}
.breadcrumb-modern {
  background-color: #e7ecf0;
  padding: 0.3rem 1rem;
  margin: auto;
  border-radius: 0.5rem;
  max-width: 95%;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.5rem;
  overflow-x: auto;
  width: 90vw;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  font-weight: 500;
  color: #1e88e5;
}

.breadcrumb-item a {
  color: #00BC6D;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #1565c0;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d;
  font-weight: 600;
  pointer-events: none;
}

.breadcrumb-separator {
  color: #adb5bd;
  font-weight: bold;
}
.fuenteParrafo{
    margin: auto;
    font-size: 16px;
    line-height: 1.6;
    font-family: sans-serif;
    text-align: left;
    width: 95%;
}
.texto-visible {
  max-height: 0; /* muestra solo una parte del texto */
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}

.texto-visible.expandido {
  max-height: 1200px;
}
.leer-mas-btn {
    background:#b1b1b1;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    margin-top: 8px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px;
    border: 1px solid;
    border-radius: 7px;
}

.leer-mas-btn:hover {
  text-decoration: underline;
}

.flecha-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

/* Flecha gira al expandirse */
.texto-visible.expandido + .leer-mas-btn .flecha-icon {
  transform: rotate(180deg);
}

@media only screen and (min-width: 1200px) {
    .breadcrumb-modern {
      width: 68vw;
    }
    .fuenteParrafo{
        width: 72%;
        margin-left: 0;
    }
}

/* Estilos para móviles medianos */
@media only screen and (max-width: 768px) {
.fuenteParrafo {
        margin: 0;
    }
}
