*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Montserrat, sans-serif;
    background:#f5f5f5;
    color:#222;

}

.span{
    font-style: bold;
}

/* =========================
   HEADER
========================= */

header{

    padding:40px;
    text-align:center;

}

.logo{

    width:320px;
    transition:.3s;

}

.logo:hover{

    transform:scale(1.04);

}


/* =========================
   HERO
========================= */

.hero{

    width:90%;
    max-width:1200px;

    margin:50px auto;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:60px;

    padding:45px 60px;

    border-radius:25px;

    background:linear-gradient(135deg,#1a1a1a,#303030);

    color:white;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.hero-logo img{

    width:220px;

}

.hero-info{

    flex:1;

}

.hero-info h1{

    font-size:58px;

    font-weight:900;

    letter-spacing:2px;

    margin-bottom:5px;

}

.hero-info h2{

    font-size:34px;

    font-weight:500;

    color:#d8d8d8;

    margin-bottom:18px;

}

.hero-info p{

    font-size:20px;

    color:#bbbbbb;

    letter-spacing:1px;

}


/* =========================
   CATEGORÍAS
========================= */

.categoria{

    width:90%;
    max-width:1200px;

    margin:70px auto 35px;

    text-align:center;

}

.categoria span{

    color:#777;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:14px;

}

.categoria h2{

    font-size:42px;

    margin-top:10px;

    font-weight:900;

    position:relative;

    display:inline-block;

}

.categoria h2::after{

    content:"";

    display:block;

    width:70%;

    height:5px;

    margin:12px auto 0;

    background:#25D366;

    border-radius:50px;

}

.subcategoria{

    margin-top:12px;

    font-size:18px;

    font-weight:400;

    color:#666;

    letter-spacing:1px;

}


/* =========================
   REDES
========================= */

.redes{

    display:flex;

    justify-content:center;
    align-items:center;

    gap:25px;

    margin:45px 0 60px;

}

.redes a{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    width:220px;
    height:60px;

    text-decoration:none;

    color:#fff;

    border-radius:14px;

    font-size:18px;
    font-weight:700;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.redes a i{

    font-size:24px;

}

.instagram{

    background:linear-gradient(
        135deg,
        #833AB4,
        #FD1D1D,
        #FCAF45
    );

}

.whatsapp{

    background:linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );

}

.redes a:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(0,0,0,.22);

}


/* =========================
   CATÁLOGO
========================= */

.catalogo{

    width:90%;
    max-width:900px;

    margin:50px auto;

    display:flex;

    flex-direction:column;

    gap:40px;

}


/* =========================
   TARJETAS
========================= */

.card{

    width:100%;

    aspect-ratio:1 / 1;

    background:#fff;

    border:1px solid #e6e6e6;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

}


/* La imagen es clickeable */

.card img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    cursor:pointer;

    transition:opacity .2s ease,
               transform .35s ease;

}


/* Efecto al pasar el mouse */

.card:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 45px rgba(0,0,0,.16);

}

.card:hover img{

    transform:scale(1.03);

}


/* =========================
   INFORMACIÓN DE TARJETA
========================= */

.card-info{

    padding:15px 20px 25px;

}


/* =========================
   FOOTER
========================= */

footer{

    background:#111;

    color:white;

    text-align:center;

    padding:35px;

    margin-top:60px;

}


/* =========================
   TABLET
========================= */

@media(max-width:900px){

    .catalogo{

        width:92%;
        max-width:700px;

    }

}


/* =========================
   CELULAR
========================= */

@media(max-width:700px){

    header{

        padding:25px 15px;

    }

    .logo{

        width:180px;

    }


    /* HERO */

    .hero{

        width:92%;

        flex-direction:column;

        text-align:center;

        padding:35px 25px;

        gap:30px;

        margin:30px auto 45px;

    }

    .hero-logo img{

        width:170px;

    }

    .hero-info h1{

        font-size:42px;

    }

    .hero-info h2{

        font-size:24px;

    }

    .hero-info p{

        font-size:17px;

        line-height:1.5;

    }


    /* REDES */

    .redes{

        flex-direction:column;

        align-items:center;

        gap:15px;

        margin:35px 0 50px;

    }

    .redes a{

        width:90%;
        max-width:300px;

    }


    /* CATEGORÍAS */

    .categoria{

        width:92%;

        margin:55px auto 30px;

    }

    .categoria h2{

        font-size:34px;

    }

    .categoria span{

        font-size:12px;

        letter-spacing:3px;

    }

    .subcategoria{

        font-size:16px;

    }


    /* CATÁLOGO */

    .catalogo{

        width:92%;

        margin:35px auto;

        gap:25px;

    }


    /* TARJETAS */

    .card{

        width:100%;

        aspect-ratio:1 / 1;

        border-radius:18px;

    }

    .card img{

        width:100%;

        height:100%;

        object-fit:cover;

    }


    /* FOOTER */

    footer{

        padding:25px 15px;

        font-size:14px;

    }

}