/*Estilos del Body*/
body{
    background-color: var(--blanco);
}
/*Estilos del Main somos*/
.mainlogobotones{
    width: 90%;
    height: 70vh;
    border-radius: 8px;
    background-image: url(../img/background/bg-2.png);
    background-repeat: no-repeat;
    background-size: cover;
}
@media (min-width: 1200px) {
    .mainlogobotones{
        width: 75%;
    }
}
.mainlogobotones img{
    width: 90%;
    filter: opacity(80%);
}
.mainlogobotones button{
    width: 90%;
    font-family: 'OpenSans';
    background-color: var(--guinda2);
    color: var(--blanco);
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
}
@media (min-width: 768px) {
    .mainlogobotones button{
        width: 70%;
    }
}
.mainlogobotones button:hover,
.mainlogobotones button:active,
.mainlogobotones button:focus,
.mainlogobotones button:focus-visible{
    background-color: var(--guinda2) !important;
    border: none !important;
}
@media (min-width: 1024px) {
    .mainlogobotones img{
        width: 90%;
    }
}
@media (min-width: 1200px) {
    .mainlogobotones img{
        width: 90%;
    }
}
/*Estilos del Modal de Marco Normativo*/
.modalmarco h2{
    font-family: 'OpenSans';
    color: var(--dorado1);
}
.modal-body img{
    width: 10%;
}
.divseparador div{
    border: 1px solid #d6d3ce;
    border-radius: 10px;
}
.modal-body a{
    font-family: 'OpenSans';
    color: var(--negro);
}
.modal-body p{
    font-family: 'OpenSans';
    color: var(--slategray);
}
.divseparador div{
    transition: all ease 0.2s;
}
.divseparador div:hover{
    transform: translateY(-4px);
}
@media (min-width: 768px) {
    .modal-custom{
        max-width: 98%;
    }
}
@media (min-width: 992px) {
    .modal-custom{
        max-width: 982px;
    }
}
@media (min-width: 1728px) {
    .modal-custom{
        max-width: 1200px;
    }
}

.subrayado-animado {
  position: relative;
  display: inline-block;
}

.subrayado-animado::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.subrayado-animado:hover::after {
  width: 100%;
}