*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root{
    --very-light-pink: #c7c7c7;
    --white: #ffffff;
    --black:#000000;
    --Light-Sky-Blue:#87CEFA;
    --Deep-Sky-Blue: #00BFFF;
    --sm: 14px;
    --md: 16px;
    --lg: 18px
}

body{
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}


h1:hover {
    color:#00BFFF;
}
h2:hover {
    color:#00BFFF;
}
h3:hover {
    color:#00BFFF;
}

nav{
    background: #EAECEE  ;
    position: sticky;
    justify-content: center;

}


.nav-item  {
    text-decoration: none;
    list-style: none;
    font-weight: bold;
}

.nav-item a:hover{
    color:#00BFFF;
 
}

.dropdown-menu li:last-child{
    border-top: 1px solid var(--very-light-pink);
    
}

.description-header p{

    text-align: center;

}

.cards-container{
    display: grid;
    grid-template-columns: repeat(auto-fill, 270px);
    gap: 20px;
    place-content: center;
    margin: 1rem;
    
}

.product-card{
    width: 210px;
    border-radius: 15px;
    box-shadow: -1px -1px 3px 0 var(--Deep-Sky-Blue), 4px 4px 16px 2px RGB(179, 182, 183) ;
    transition: all ease 800ms ;  
    margin: 10px;  
}

.product-card img {
    width: 200px;
    height: 160px;
    border-radius: 20px;
    object-fit: cover;
    margin: 3px;
}


.product-card:hover {
    transform: scale(1.2);
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-left: 10PX;
}

.product-info figure {
    margin: 0;
    padding-right: 10px;
}

.product-info figure img {
    width: 28px;
    height: 28px;
}

.product-info div p:nth-child(1) {
    font-weight: bold;
    font-size: var(--md);
    margin-top: 0;
    margin-bottom: 4px;
}

.product-info div p:nth-child(2) {
    font-size: var(--sm);
    margin-top: 0;
    margin-bottom:1rem;
    color: var(--very-light-pink);
}

.product-info div p:hover{
    color:#00BFFF
}

.container-fluid{
    display: grid;
    justify-items: center;
    margin-bottom: 10px;
}

.form-container{
    width: 100%;
    height: 100%;
    display: grid;
    justify-items: center;
    padding: 5px;
    font-weight: bold;
    font-family: sans-serif
}

.formulario{
    color: white;
    width: 50%;
    height: auto;
    padding: 10px;
    background-color: black; 
    border-radius: 8px;
    overflow: hidden;
    display: grid;

}

.formControl{
    align-content: center;
    display: inline;
    padding: 5px;
    margin: 5px;

}


.formulario p{
    text-align: center;
    padding: auto;
    margin: auto;
}


.formulario-Contacto{
    width: 100%;
    height: auto;
    background-color:black;
}

.warnings{
    font-family: Arial, Helvetica, sans-serif;
    width: 300px ;
    color: var(--Deep-Sky-Blue);
    font-size: var(--sm);
}


.footer{
    margin: 20px;
    text-align: center;
}

.footer p{
    font-size: var(--sm);
}


.footer a{
    text-decoration: none;
    list-style: none;
    outline: none;
    color: #000000;
    
}

.footer a:hover{
    color: var(--Deep-Sky-Blue);
}

.footer p:hover{
    color: var(--Deep-Sky-Blue);
}

#carousel{

    overflow: hidden;

}

.redesSociales{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px;
}

.redesSociales p {
    text-align: right;
    padding-top:0;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 0;

    margin: 0;
}


.redesSociales a img{
   width: 50PX;
   height: 50px;
   transition: all ease 300ms;
   
}

.redesSociales a img:hover{
    
    transform: scale(1.2);
    
}


@media (max-width: 640px){

    .cards-container{
        grid-template-columns: repeat(auto-fill, 140px );
        gap: 26px;
    }

    .product-card{
        width: 140px;
    }
    
    .product-card img {
        width: 140px;
        height: 140px;
    }

}
