/* ==========================================
   OSCARITO - ESTILOS GENERALES
========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Variables */

:root{

    --color-principal:#111111;
    --color-secundario:#e63946;
    --color-fondo:#f5f5f5;
    --color-blanco:#ffffff;
    --color-gris:#777777;

    --radio:14px;

}

/* Scroll suave */

html{

    scroll-behavior:smooth;

}

/* Body */

body{

    font-family:'Poppins',sans-serif;

    background:var(--color-fondo);

    color:var(--color-principal);

}

/* Links */

a{

    text-decoration:none;

}

img{

    max-width:100%;

    display:block;

}

/* ==========================================
            BANNER
========================================== */

.banner{

    width:100%;
    min-height:700px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url("../img/banners/banner.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.banner-content{

    color:white;

    max-width:700px;

    padding:20px;

}

.banner-content h2{

    font-size:60px;

    margin-bottom:20px;

    font-weight:800;

}

.banner-content p{

    font-size:20px;

    margin-bottom:35px;

    line-height:1.7;

}

.banner-btn{

    display:inline-block;

    padding:16px 45px;

    background:var(--color-secundario);

    color:white;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

.banner-btn:hover{

    background:white;

    color:black;

    transform:translateY(-5px);

}

/* ==========================================
        PRODUCTOS DESTACADOS
========================================== */

.featured-products{

    max-width:1400px;

    margin:80px auto;

    padding:0 30px;

}

.featured-products .products-grid{

    grid-template-columns:repeat(4, 1fr);

}

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:42px;

    margin-bottom:15px;

}

.section-title p{

    color:var(--color-gris);

    font-size:18px;

}

/* Aquí aparecerán las tarjetas */

.products-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

/* ==========================================
            BOTONES
========================================== */

button{

    font-family:'Poppins',sans-serif;

}

/* ==========================================
      ANIMACIÓN SUAVE
========================================== */

.banner-content{

    animation:mostrar .9s ease;

}

@keyframes mostrar{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}