/***** Definiendo estilo a los enlace ******/
a{
color: white;
text-decoration: none;

}
a:link{
    color: white;
}

a:hover{
    color:yellow;
    text-decoration: underline;
}

a:active {
    color:red;
    }

    a:visited {
        color:white

    }
       
/******** Declarando Clases *******/
 
.margenes{
    margin-top: 0%;
    margin-bottom: 0%;
    margin-left: 0%;
    margin-right: 0%;
        
    }

 .logo{
    border: 2px;
   /* border-color: rgb(5, 5, 66) ;*/
    /* border-color: gray; */
    /* border-style: solid; */
    /* border-width: 2px; */
    /* border-radius: 10px; */
    height: 94px;
    width:  94px;

 }   
.titulo{
    display: grid;
    grid-template-columns: 100px 100px 100px;
    background-color: rgb(5, 5, 66);
    font-size:larger;
    font-family: Arial, Helvetica, sans-serif;
    font-style:italic;
    color: white;
    align-items:center ;
    align-content: center;
    height: 108px;
}

.contenedor_header{

background-color: gray;

}



.menu{
    display: flex;
    /* display: grid; */
    /* grid-template-columns: 100px 100px 100px 100px; */
    justify-content:space-evenly;
    
    gap: 10px;
    background-color: rgb(5, 5, 66);
    font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    color: white;
    align-items:center ;
    align-content: center;
    height: auto;  
    width: auto;    
}

.texto_Principal{
    align-items:center;
    align-content: center;
    background-color: #4945ff;
    color:#ffffff;
    padding: 15px;
    width: 75%;
    height: 50%;
   /* height: 50%; */
   border-radius: 4px;
}

.contenedor{
    display: flex;
    justify-content:space-evenly;
    padding: 10px;
    gap: 15px;
    align-content:space-between;
    align-items: center; 
    height: auto;
    width: auto;

}

.productos{
    background-color: gray;
    color:white;
    width: 345px;
    height:345px;
    padding: 2px;
    align-content: center;
    align-items: center;
    
}

.img_productos{

    border-width: 1px;
    border-color:gray;
    border-style: solid;
    /* border-radius: 10px; */
    height: 380px;
    width: 340px;
       
}

.img_carousel{

    border-width: 1px;
    border-color:gray;
    border-style: solid;
    border-radius: 10px;
    height: 340px;
    width: 390px;
       
}
.img_productos_detalles{

    border-width: 1px;
    border-color:gray;
    border-style: solid;
    border-radius: 14px;
    height: 340px;
    width: 340px;
    align-items: center;   
}




.contenedor_footer{
   display:flex;
    display: grid;
    grid-template-columns: 64px 64px 64px;
    /*gap: 15px;*/
    background-color:rgb(32, 32, 32);
    justify-content:space-around;
    font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-style: normal;
    padding: 10px;
    align-content:space-evenly;
    align-items: center; 
    height: auto;
    
    }

.elemento_footer{
        align-content:center;
        align-items: center;
    }

.imgRedesSociales{
    border-radius: 5px;
    height: 32px;
    width: 32px;
}


.menu_footer{
 align-items: center;
 align-content: center;      
}


.fondo_card{
    background-color: rgb(228, 226, 226);
}   

/*** Media Queries *************/

/* XX-Large devices (larger desktops, 1400px and up) */
@media only screen and (max-width: 1400px) {
    .menu {
        background-color: rgb(5, 5, 66);
    }
    .img_productos{

        border-width: 1px;
        border-color:gray;
        border-style: solid;
        /* border-radius: 20px; */
        height: 340px;
        width: 340px;
    }

    main{
        display: flex;
        flex-flow:wrap;
        justify-content:space-evenly;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {

    /* .menu {
        background-color: rgb(24, 3, 50);
    
    } */

    main{
        display: flex;
        flex-flow:wrap;
        justify-content:space-evenly;
    }

    
}

/* Large devices (desktops, 992px and up) */
@media only screen and (max-width: 992px) {

    /* .menu {
        background-color: rgb(47, 0, 255);   
        
    } */

   
    .img_productos{

        border-width: 1px;
        border-color:gray;
        border-style: solid;
        /* border-radius: 20px; */
        height: 300px;
        width: 300px;
        align-items: center;


    }

    main{
        display: flex;
        flex-flow:wrap;
        justify-content:space-evenly;
    }
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (max-width: 768px) {

    /* .menu {
        background-color: rgb(58, 66, 114);
        flex-flow:wrap;
        justify-content:space-evenly;
        flex-direction: column;

    } */

    
    main{
        display: flex;
        flex-flow:wrap;
        justify-content:space-evenly;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (max-width: 576px) {

     
    /* .menu {
        background-color: blue;
        height: 100px;
        flex-direction: column;
    } */
    
    main{
        display: flex;
        flex-flow:wrap;
        justify-content:space-evenly;
    }

}

/*X-Small devices (portrait phones, less than 576px)*/
@media only screen and (max-width: 320px) {

    /* .menu {
        background-color: grey;
    } */

    
    main{
        display: flex;
        flex-flow:wrap;
        justify-content:space-evenly;
    }
}
