/* =========================================
   NOTICIAS
========================================= */

.news-hero-section{
    padding:140px 0 90px;
    background:
    linear-gradient(
        180deg,
        #f4fbff 0%,
        #ffffff 100%
    );
}

.news-hero-content{
    max-width:850px;
    margin:auto;
}

.news-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#dff4ff;
    color:#1da8ea;
    padding:12px 24px;
    border-radius:100px;
    font-weight:700;
    margin-bottom:30px;
}

.news-hero-content h1{
    font-size:clamp(2.7rem,5vw,5rem);
    font-weight:800;
    line-height:1.1;
    color:#082c3d;
    margin-bottom:25px;
}

.news-hero-content h1 span{
    color:#1da8ea;
}

.news-hero-content p{
    font-size:1.1rem;
    line-height:1.9;
    color:#5f6f7a;
}

.news-grid-section{
    padding:20px 0 100px;
}

.news-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(0,0,0,.08);
    transition:.35s ease;
    border:1px solid rgba(0,0,0,.04);
}

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

.news-image-wrapper{
    position:relative;
    overflow:hidden;
}

.news-image-wrapper img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:transform .5s ease;
}

.news-card:hover .news-image-wrapper img{
    transform:scale(1.08);
}

.news-date{
    position:absolute;
    top:20px;
    left:20px;
    background:#1da8ea;
    color:#fff;
    padding:10px 16px;
    border-radius:100px;
    font-size:.85rem;
    font-weight:700;
}

.news-card-body{
    padding:35px;
}

.news-category{
    display:inline-block;
    background:#eef8fd;
    color:#1da8ea;
    padding:8px 16px;
    border-radius:100px;
    font-size:.85rem;
    font-weight:700;
    margin-bottom:18px;
}

.news-card-body h2{
    font-size:1.5rem;
    font-weight:800;
    color:#082c3d;
    line-height:1.4;
    margin-bottom:18px;
}

.news-card-body p{
    color:#5f6f7a;
    line-height:1.9;
    margin-bottom:28px;
}

.news-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#1da8ea;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:14px;
    font-weight:700;
    transition:.3s ease;
}

.news-btn:hover{
    background:#1189c2;
    color:#fff;
}

.news-social-section{
    padding:0 0 110px;
}

.news-social-card{
    background:
    linear-gradient(
        135deg,
        #1da8ea 0%,
        #0d7eb5 100%
    );
    border-radius:36px;
    padding:60px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.social-label{
    display:inline-block;
    background:rgba(255,255,255,.18);
    padding:10px 18px;
    border-radius:100px;
    margin-bottom:20px;
    font-weight:700;
}

.news-social-card h2{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
    margin-bottom:20px;
}

.news-social-card p{
    font-size:1.05rem;
    line-height:1.9;
    opacity:.95;
    max-width:700px;
}

.news-facebook-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#1da8ea;
    padding:18px 28px;
    border-radius:18px;
    text-decoration:none;
    font-weight:800;
    transition:.3s ease;
}

.news-facebook-btn:hover{
    transform:translateY(-3px);
    color:#1da8ea;
}

@media(max-width:991px){

    .news-hero-section{
        padding:120px 0 70px;
    }

    .news-social-card{
        padding:40px 30px;
        text-align:center;
    }

    .news-card-body{
        padding:28px;
    }

}