@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

:root{
    --title-color: #e73c32;
    --bg-color: #1d1d1b;
    --sub-tittle: #ad0443;
    --text-color: #fff;
    --extra-color: #f39200;
}

body {
    background-image: url('../../resorces/imagenes\ de\ fondo/flames.png');
    background-attachment: scroll; 
    background-size: 100%; 
    background-position: center; 
    background-repeat: no-repeat; 
    position: relative;
}


#logo{
    width: 5rem;
    height: auto;
}

/*CAROUSEL*/
.owl-carousel .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.owl-carousel span{
    color: #1d1d1b;
}

/*TIPOS DE PRODUCTOS*/
.container-productos img{
    width: 100%;
    margin-bottom: .5em;
    display: block;
    outline: 2px solid rgb(209, 148, 148);
    outline-offset: -10px;
    transition: all 0.3 ease;
}

@media (min-width: 1000px) {
    .container-productos img {
        width: 30%;
        height: auto;
    }
    .container-productos {
        display: flex;
        justify-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.container-productos{
    columns: 2 200px;
    column-gap: .5em;
    
}

/*POLITICAS*/
#politicas {
    background-color: #1d1d1b;
    color: #ccc;
    border-radius: 20px;
}

#politicas h3{
    text-align: center;
    color: var(--title-color);
    margin-top: 10px;
}

#politicas p{
    margin-top: 10px;
    text-align: center;
}

#politicas img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}



/*FOOTER*/

footer{
    margin-top: 10px;
    position: relative;
    display: grid;
    grid-template-columns: 400px repeat(3, 1fr);
    gap: 2rem;
    background-color: var(--bg-color);
}

footer .column{
    margin-top: 20px;
    margin-bottom: 20px;
}

footer .column img{
    max-width: 100px;
    margin-bottom: 2rem;
}

footer .column p{
    color: var(--text-color);
    margin-bottom: 2rem;
}

footer .column .socials{
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .column .socials a{
    color: var(--extra-color);
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 1.25rem;
    border-radius: 100%;
    transition:  all 0.3s ease;
}

footer .column .socials a:hover{
    color: var(--text-color);
    background-color: var(--title-color);
    border-color: var(--title-color);
}

.tittle{
    color: var(--title-color);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

footer .column > a{
    display: block;
    color: var(--text-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

footer .column > a:hover{
    color: var(--title-color);
}

.copyright{
    max-width: 1200px;
    margin: auto;
    padding:  1rem;
    color: var(--sub-tittle);
    font-size: 0.8rem;
    text-align: center;
}

@media(width<900px){
    footer{
        grid-template-columns: 1fr 200px;
    }
    footer .column p{
        color: var(--text-color);
        margin-bottom: 2rem;
        font-size: 13px;
    }
}

@media(width<600px){
    footer{
        grid-template-columns: 1fr 150px;
    }
}
