/* =====================================================
   CATEGORÍAS DESTACADAS
===================================================== */

.home-categories{

    width:90%;
    max-width:1400px;

    margin:80px auto;

}

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-family:'Great Vibes',cursive;

    font-size:58px;

    color:#D4AF37;

    margin-bottom:10px;

}

.section-title p{

    color:#E8C76A;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

}

/* GRID */

.categories-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* TARJETA */

.category-card{

    position:relative;

    display:block;

    overflow:hidden;

    border-radius:25px;

    text-decoration:none;

    min-height:350px;

    background:#221133;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

    transition:.4s;

}

/* IMAGEN */

.category-card img{

    width:100%;

    height:350px;

    object-fit:cover;

    transition:.6s;

}

/* OVERLAY */

.category-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    background:linear-gradient(
        to top,
        rgba(20,8,31,.92),
        rgba(20,8,31,.15)
    );

}

/* TÍTULO */

.category-overlay h3{

    color:#D4AF37;

    font-size:34px;

    margin:0 0 10px 0;

    font-family:'Great Vibes',cursive;

}

/* BOTÓN */

.category-overlay span{

    color:#F7F2E9;

    font-size:15px;

    letter-spacing:1px;

}

/* HOVER */

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 60px rgba(90,42,131,.45);

}

.category-card:hover img{

    transform:scale(1.10);

}

/* RESPONSIVE */

@media(max-width:1000px){

    .categories-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:700px){

    .categories-grid{

        grid-template-columns:1fr;

    }

    .section-title h2{

        font-size:42px;

    }

}
