.hero-section{

    margin-top:30px;

    margin-bottom:40px;

}

.hero-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:25px;

    align-items:start;

}

.hero-main{

    position:relative;

    overflow:hidden;

    border-radius:15px;

}

.hero-main img{

    width:100%;

    height:460px;

    object-fit:contain;

    display:block;

}

.hero-main:hover img{

    transform:scale(1.05);

}

.hero-overlay{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    padding:35px;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.9)

    );

}

.hero-overlay h2{

    color:#fff;

    font-size:42px;

    font-weight:bold;

    margin-top:15px;

}

.hero-overlay p{

    color:#ddd;

}

.categoria{

    background:#E30613;

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:bold;

}

.hero-side{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.hero-card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.hero-card:hover{

    transform:translateY(-5px);

}

.hero-card img{

    width:100%;

    height:180px;

    object-fit:contain;

    display:block;

}

.hero-card div{

    padding:15px;

}

.hero-card span{

    color:#153D8A;

    font-size:13px;

    font-weight:bold;

}

.hero-card h3{

    font-size:18px;

    margin-top:8px;

    line-height:1.4;

}

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

}

.hero-main img{

height:350px;

}

.hero-overlay h2{

font-size:28px;

}

}