@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
}


.bg-section {
    background-image: url(../../images/bg-head-2-2.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: moveBg 20s ease-in-out infinite alternate;
}

@media (min-width: 1300px) {
    .bg-section {
        animation: moveBg 40s ease-in-out infinite alternate;
    }
}




@keyframes moveBg {
    0% {
        background-position: center bottom;
    }
    100% {
        background-position: center top;
    }
}




/* Borde animado */
#linecolor {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
            to right,
            red, orange, yellow, green, blue, purple, red, orange, yellow, green, blue, purple, red
    );
    background-size: 600% auto; /* grande para un desplazamiento fluido */
    animation: moveBorder 10s linear infinite; /* más lento y continuo */
}

@keyframes moveBorder {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.bg-line {
    background-image: url(../../images/bg-lines-1.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img-content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.img-content:hover{
    -webkit-transform: scale(1.235);
    -moz-transform: scale(1.235);
    -ms-transform: scale(1.235);
    -o-transform: scale(1.235);
    transform: scale(1.225);
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}
.linkModulo:hover{
    color: #0a58ca !important;
}
.linkModulo{
    color: #000000 !important;
}
