@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: #131315;
    font-family: 'Roboto', sans-serif;
    /* min-height: 100vh; */
}


/*============================MODAL======================================= */

.modal-content { 
    border: 2px solid #1C3C2A;
}

.modal-footer .btn-primary {
    background-color: #1C3C2A;
    border-color: #131315;
}


.modal-footer .btn-primary:active {
    background-color: #59C788;
    border-color: #131315;
}


/*---------------------------------------NAVBAR ---------------------------------------*/

.navbar-1 {
    background-color: #1F1F1F;
}

.navbar-2 a, .registro a {
    color: #D9D9D9;
}

.navbar-2 {
    background-color: #1F1F1F;
    font-weight: 450;
    font-size: 1.1rem;
}

.navbar-brand {
    font-size: 1.7rem;
}

.navbar-2 .btn {
    background-color: #1C3C2A;
    border: 1px solid #D9D9D9;
    color: #D9D9D9;
} 

.navbar-2 a:hover, .navbar-2 a:focus {
    color: #59C788;
}


.navbar-2 .btn:hover {
    background-color: #3F604D;
    border: 1px solid #D9D9D9;
} 

 .navbar-2 .btn:active {
    background-color: #59C788 !important;
    border: 1px solid #D9D9D9 !important;
 } 

 .nav .nav-link:hover, .nav .nav-link:focus {
    color: #59C788;
 }

 .registro {
    font-size: 1rem;
    margin-right: 0 !important;
 }
 
 @media (max-width: 800px) {
   
    .registro {
        flex-direction: row;
        margin-right: 0;
    }

    .registro li {
        margin-right: 1rem;
    }
}
 
 
/*---------------------------------------MAIN ---------------------------------------*/

main {
    padding-bottom: 2%;
    background-color: #131315;
}

.principal {
    padding: 0;
}



/*---------------------------------------CARRUSEL---------------------------------------*/



.carousel-item img{
    width: 100%;
    object-fit: cover;
    object-position: 100% 0;
    border-radius: 10px;
    outline: 5px transparent solid;
    outline-offset: -5px;
    transition: 300ms ease-out;
    
    
}

.carousel-item img:hover {
    outline: 5px whitesmoke solid;
    outline-offset: -5px;
}

.carousel-inner {
    border-radius: 10px;
}


@media screen and (min-width:768px){
    .carousel-item img{
        max-height: 500px;
    }
}


/*---------------------------------------CATEGORIAS---------------------------------------*/


.titulo-categoria{
    margin-top: 2%;
    margin-bottom: 0;
    cursor: pointer;
    transition: 300ms ease-out;  
}

.titulo-categoria:hover {
    color:#D9D9D9 !important;
    
}

.img-categorias img {
    outline-offset: -4px;
    border-radius: 8px;
    outline: 4px transparent solid;
    transition: all 300ms ease-out;
    
}

.img-categorias img:hover {
    transform: scale(1.1);
    outline-offset: -4px;
    outline: 4px solid whitesmoke;
}

a {
text-decoration:none;

}

/*---------------------------------------FOOTER ---------------------------------------*/

footer{
    padding: 0.5rem 0;
    background-color: #1F1F1F;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
}

.class-redes img{
    max-width: 35px;
    height: 100%;
}

.class-acerca a{
    color: #D9D9D9;
    list-style: none;
    text-decoration: none;
}

.class-contactanos a{
    color: #D9D9D9;
    list-style: none;
    text-decoration: none;
}

.class-logo img{
     width: 20%;
 }

.class-redes{
    margin: 5px 0;
}

@media screen and (min-width:600px){
    footer{
        height: 100px;
        grid-template-rows: 1fr;
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
    }

    .class-logo img {
        width: 23%;
        object-fit: cover;
    }

    .class-redes img{
        width: 30%;
        height: 100%;
        object-fit: cover;
    }

    .class-contactanos{
        margin-top: 0px;
    }

    .class-acerca{
        margin-top: 0px;
    }
}
