.hero-content h1,
.hero-content p,
.hero-content a{
    opacity:0;
    transform:translateY(25px);
    animation:heroText .9s ease forwards;
}

.hero-content p{
    animation-delay:.25s;
}

.hero-content a{
    animation-delay:.45s;
}

@keyframes heroText{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-slider{
    height:85vh;
}

.hero-slide{
    height:85vh;
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    height:85vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.hero-content h1{
    font-size:3.6rem;
    font-weight:700;
    color:white;
}

.hero-content p{
    font-size:1.3rem;
    color:white;
    margin-bottom:25px;
}

@media(max-width:768px){
    .hero-slider,
    .hero-slide,
    .hero-content{
        height:70vh;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

    .hero-content p{
        font-size:1rem;
    }
}

.promo-section{
    background:linear-gradient(90deg,#111,#222);
    color:white;
    padding:20px 0;
    border-radius:0 0 20px 20px;
}

.categoria-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:320px;
    box-shadow:0 15px 35px rgba(0,0,0,.14);
    transition:.35s;
}

.categoria-card:hover{
    transform:translateY(-8px);
}

.categoria-img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.categoria-card:hover .categoria-img{
    transform:scale(1.08);
}

.categoria-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.15));
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:end;
    padding:28px;
}

.categoria-overlay h3{
    font-size:32px;
    font-weight:700;
}

.oferta-card{
    background:#fffaf5;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    transition:.3s;
}

.oferta-card:hover{
    transform:translateY(-7px);
}

.confianza-home{
    background:#fffaf5;
    border-radius:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    padding:25px;
}

@media(max-width:768px){
    .hero h1{
        font-size:2.4rem;
    }

    .hero{
        height:70vh;
    }
}

