/*Estilos del Body*/
body{
    background-color: var(--blanco);
}
/*Estilos del Main somos*/
.mainlogobotones{
    position: relative;
    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 h1{
    position: absolute;
    font-family: 'Zodiak';
    color: var(--guinda1);
}
.mainlogobotones img{
    width: 65%;
    filter: opacity(60%);
}
@media (min-width: 768px) {
    .mainlogobotones img{
        width: 45%;
    }
}
@media (min-width: 1024px) {
    .mainlogobotones img{
        width: 70%;
    }
}
@media (min-width: 1200px) {
    .mainlogobotones img{
        width: 75%;
    }
}
.mainlogobotones a{
    width: 90%;
    font-family: 'OpenSans';
    background-color: var(--guinda2);
    color: var(--blanco);
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
}
@media (min-width: 768px) {
    .mainlogobotones a{
        width: 80%;
    }
}
.mainlogobotones a:hover,
.mainlogobotones a:active,
.mainlogobotones a:focus,
.mainlogobotones a:focus-visible{
    background-color: var(--guinda2) !important;
    border: none !important;
}
.divcajas{
    width: 75%;
}
@media (min-width: 768px) {
    .divcajas{
        width: 85%;
    }
}
@media (min-width: 1024px) {
    .divcajas{
        width: 100%;
    }
}
.divcajas .cardopcion{
    position: relative;
    background-color: var(--blanco) !important;
    border: none !important;
    transition: all ease 0.2s;
}
.divcajas .cardopcion:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.divcajas .cardopcion img{
    width: 25%;
}
.divcajas .cardopcion h5{
    font-family: 'OpenSans';
    transition: font-weight 0.2s linear;
}
.divcajas .cardopcion:hover h5{
    font-weight: 700 !important;
}
.divcajas .cardopcion a{
    position: absolute;
    z-index: 2;
    font-size: 0;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: black;
}
.card-body{
    padding-left: 0 !important;
}
.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%;
}