/* ================================================================
   NOTICIAS PAGE — Isolated Styles (nt-* namespace)
   ================================================================ */

.nt-page {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    background: #FAFAFA;
}

.nt-social-hero {
    width: 100%;
    height: auto;
    min-height: 600px;
    padding: 120px 0 80px;
    text-align: center;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nt-social-hero h2 {
    color: #1A1A1A;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.531px;
    margin-bottom: 8px;
}

.nt-social-hero p {
    color: #666;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
    margin-bottom: 48px;
}

.nt-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    max-width: 100%;
}

.nt-carousel-card {
    width: 384px;
    height: 411px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    align-self: stretch;
}

.nt-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nt-carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #1A1A1A;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nt-carousel-prev {
    left: -24px;
}

.nt-carousel-next {
    right: -24px;
}

@media (max-width: 1352px) {
    .nt-carousel-prev { left: 16px; }
    .nt-carousel-next { right: 16px; }
}

.nt-btn-yellow {
    display: inline-flex;
    padding: 11.5px 22.188px 12.5px 24px;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    border-radius: 12px;
    background: #FFC600;
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    transition: all 0.2s;
}

.nt-btn-yellow:hover {
    box-shadow: 0 4px 12px rgba(255, 198, 0, 0.3);
    transform: translateY(-2px);
}

/* Noticias e Novidades Section */
.nt-news-section {
    width: 100%;
    max-width: 1352px;
    height: auto;
    margin: 0 auto;
    padding: 120px 0 80px 0;
    background: #FAFAFA;
}

.nt-news-header {
    margin-bottom: 48px;
}

.nt-tag-badge {
    display: inline-flex;
    padding: 10.5px 21.664px 9.5px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 16777200px;
    background: rgba(253, 185, 19, 0.10);
    color: #E5A711;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 19.5px;
    letter-spacing: 0.574px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.nt-news-header h1 {
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -1.099px;
    margin-bottom: 20px;
}

.nt-news-header p {
    width: 564px;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29.25px;
    letter-spacing: -0.439px;
    margin-bottom: 32px;
}

.nt-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.nt-filter-btn {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: 1px solid #E5E5E5;
    background: #FFF;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: all 0.2s;
}

.nt-filter-btn.active, .nt-filter-btn:hover {
    background: #1A1A1A;
    color: #FFF;
    border-color: #1A1A1A;
}

/* Featured News */
.nt-featured {
    display: flex;
    width: 100%;
    max-width: 1312px;
    height: auto;
    min-height: 500px;
    margin: 0 auto 120px;
    background: #FFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nt-featured-img {
    width: 55%;
    min-height: 400px;
    position: relative;
}

.nt-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nt-featured-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #FFF;
}

.nt-featured-content h2 {
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.531px;
    margin-bottom: 24px;
}

.nt-meta-featured {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    color: #999;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.nt-meta-featured span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nt-meta-featured i { color: #005CAA; }

.nt-meta-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nt-linkedin-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0A66C2;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.nt-tag-abs {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;
    padding: 8px 16px;
    border-radius: 6px;
    background: #FFF;
    color: #008A3D;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nt-btn-linkedin {
    display: inline-flex;
    width: fit-content;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #005CAA;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.nt-btn-linkedin:hover {
    background: #004a8a;
    transform: translateY(-2px);
}

/* News Grid V2 */
.nt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.nt-card {
    background: #FFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06), 0 4px 12px 0 rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

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

.nt-card-img-wrapper {
    position: relative;
    height: 256px;
}

.nt-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nt-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    padding: 6.5px 16.117px 5px 14px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.10);
    color: #4A90E2;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 16.5px;
    letter-spacing: 0.614px;
    text-transform: uppercase;
}

.nt-card-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nt-card-title {
    width: 100%;
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27.5px;
    letter-spacing: -0.949px;
    margin-bottom: 24px;
    flex: 1;
}

.nt-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.nt-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nt-card-date {
    color: #999;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.nt-card-linkedin-text {
    color: #0A66C2;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.nt-card-icon-sm {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nt-card-footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0A66C2;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.15px;
    text-decoration: none;
}

/* Pagination */
.nt-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 64px;
}

.nt-pag-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nt-pag-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    background: #FFF;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.nt-pag-btn.active, .nt-pag-btn:hover {
    background: #1A1A1A;
    color: #FFF;
    border-color: #1A1A1A;
}

.nt-pag-arrow {
    background: transparent;
    border: none;
    color: #1A1A1A;
}

.nt-pag-arrow:hover { background: transparent; color: #666; }

.nt-pag-info {
    color: #666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nt-featured {
        flex-direction: column;
    }
    .nt-featured-img, .nt-featured-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nt-grid {
        grid-template-columns: 1fr;
    }
    .nt-news-header h1 {
        font-size: 36px;
        line-height: 44px;
    }
    .nt-news-header p {
        width: 100%;
    }
}
