/* =========================================================
   OFERTAS
========================================================= */

.offers-hero{
    min-height:420px;
    display:flex;
    align-items:center;
    position:relative;
    background:linear-gradient(135deg,#111827,#1f2937);
}

.offers-hero:after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 80% 50%,rgba(255,255,255,.08),transparent 40%);
    pointer-events:none;
}

.offers-hero .container{
    position:relative;
    z-index:1;
}

.offers-category{
    display:inline-block;
    margin-bottom:15px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    color:var(--accent-color);
}

.offers-hero h1{
    max-width:800px;
    margin:0 0 20px;
    font-size:48px;
    line-height:1.15;
    font-weight:700;
    color:#fff;
}

.offers-hero p{
    max-width:680px;
    margin:0;
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.8);
}

.offers-section{
    background:#fff;
}

.offer-card{
    height:100%;
    overflow:hidden;
    border:1px solid #e8e8e8;
    border-radius:14px;
    background:#fff;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
    transition:.3s ease;
}

.offer-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.offer-image{
    height:250px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#f6f7f9;
}

.offer-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.offer-card:hover .offer-image img{
    transform:scale(1.05);
}

.offer-badge{
    position:absolute;
    top:16px;
    left:16px;
    padding:7px 12px;
    border-radius:6px;
    background:var(--accent-color);
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:.5px;
}

.offer-content{
    padding:26px;
}

.offer-category{
    display:block;
    margin-bottom:9px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    color:var(--accent-color);
}

.offer-content h3{
    margin:0 0 12px;
    font-size:21px;
    font-weight:700;
    color:#222;
}

.offer-content p{
    min-height:72px;
    margin:0 0 22px;
    font-size:15px;
    line-height:1.7;
    color:#666;
}

.offer-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:600;
    color:var(--accent-color);
    text-decoration:none;
    transition:.3s ease;
}

.offer-btn i{
    transition:.3s ease;
}

.offer-btn:hover{
    color:#111;
}

.offer-btn:hover i{
    transform:translateX(4px);
}

.offer-categories{
    background:#f8f9fa;
}

.category-card{
    height:100%;
    display:flex;
    align-items:center;
    gap:24px;
    padding:30px;
    border:1px solid #e7e7e7;
    border-radius:14px;
    background:#fff;
    text-decoration:none;
    transition:.3s ease;
}

.category-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.category-icon{
    width:70px;
    height:70px;
    flex:0 0 70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(0,0,0,.05);
    color:var(--accent-color);
    font-size:30px;
}

.category-content h3{
    margin:0 0 8px;
    font-size:21px;
    font-weight:700;
    color:#222;
}

.category-content p{
    margin:0 0 12px;
    color:#666;
    line-height:1.6;
}

.category-content span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-size:14px;
    font-weight:600;
    color:var(--accent-color);
}

.category-content span i{
    transition:.3s ease;
}

.category-card:hover .category-content span i{
    transform:translateX(4px);
}

.offer-disclaimer{
    background:#fff;
}

.disclaimer-box{
    display:flex;
    align-items:flex-start;
    gap:25px;
    padding:35px;
    border:1px solid #e7e7e7;
    border-radius:14px;
    background:#f8f9fa;
}

.disclaimer-icon{
    width:55px;
    height:55px;
    flex:0 0 55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(0,0,0,.05);
    color:var(--accent-color);
    font-size:24px;
}

.disclaimer-box h2{
    margin:0 0 12px;
    font-size:22px;
    font-weight:700;
    color:#222;
}

.disclaimer-box p{
    margin:0 0 10px;
    font-size:14px;
    line-height:1.7;
    color:#666;
}

.disclaimer-box p:last-child{
    margin-bottom:0;
}

.offers-cta{
    background:linear-gradient(135deg,#111827,#1f2937);
}

.offers-cta h2{
    margin-bottom:15px;
    color:#fff;
}

.offers-cta p{
    max-width:650px;
    margin:0 auto 25px;
    color:rgba(255,255,255,.75);
    line-height:1.7;
}

.offers-cta-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.offers-cta .cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.offers-cta .cta-btn-secondary{
    background:transparent;
    border:1px solid rgba(255,255,255,.5);
}

.offers-cta .cta-btn-secondary:hover{
    background:#fff;
    color:#111;
}

@media(max-width:991px){
    .offers-hero{
        min-height:380px;
    }

    .offers-hero h1{
        font-size:40px;
    }
}

@media(max-width:767px){
    .offers-hero{
        min-height:350px;
    }

    .offers-hero h1{
        font-size:32px;
    }

    .offers-hero p{
        font-size:16px;
    }

    .offer-image{
        height:220px;
    }

    .category-card{
        padding:24px;
    }

    .disclaimer-box{
        flex-direction:column;
        padding:25px;
    }
}

@media(max-width:575px){
    .offers-hero h1{
        font-size:28px;
    }

    .offer-content{
        padding:22px;
    }

    .category-card{
        gap:18px;
    }

    .category-icon{
        width:58px;
        height:58px;
        flex-basis:58px;
        font-size:25px;
    }
}
