/* ==========================================================================
   ESTILOS DA SEÇÃO DE NOTÍCIAS / BLOG (CARDS NA LISTA)
   ========================================================================== */
.blog-section {
    font-family: 'Poppins', sans-serif;
    padding: 100px 20px;
    background: #fff;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.blog-title span {
    color: #c1272d;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

a.blog-card-link {
    text-decoration: none;
    display: flex;
}

.blog-card {
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}

.blog-image-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin: 0 0 10px;
    line-height: 1.4em;
    max-height: 2.8em; /* 2 linhas */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-content .date {
    font-size: .9rem;
    color: #c1272d;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

/* resumo limitado a 3 linhas */
.blog-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-btn {
    margin-top: 50px;
    display: inline-block;
    background: #c1272d;
    color: #fff;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .3s ease;
}

.blog-btn:hover {
    background: #a12025;
}

/* ==========================================================================
   PÁGINA INDIVIDUAL (ESTILO "TOURM")
   ========================================================================== */
.noticia-page-container { font-family: 'Poppins', -apple-system, sans-serif; }

.breadcumb-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.breadcumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 20, 45, .6);
}

.breadcumb-wrapper .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcumb-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.breadcumb-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .9rem;
    font-weight: 500;
}

.breadcumb-menu li { margin: 0 5px; }

.breadcumb-menu li a {
    color: #fff;
    text-decoration: none;
    opacity: .8;
    transition: opacity .3s ease;
}

.breadcumb-menu li a:hover { opacity: 1; }

.breadcumb-menu li.active {
    opacity: .6;
    pointer-events: none;
}

.breadcumb-menu li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    opacity: .5;
}

.th-blog-wrapper { padding: 4rem 0; }

.th-blog-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-8,
.col-lg-4 {
    padding: 0 15px;
    box-sizing: border-box;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.th-blog.blog-single .blog-content {
    font-size: 1.1rem;
    line-height: 1.9;
}

.th-blog.blog-single .blog-content p,
.th-blog.blog-single .blog-content ul,
.th-blog.blog-single .blog-content ol {
    margin-bottom: 1.5rem;
}

.th-blog.blog-single .blog-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
}

.sidebar-area .widget {
    margin-bottom: 30px;
    padding: 25px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.sidebar-area .widget_title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar-area ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-area ul li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-area ul li a {
    text-decoration: none;
    color: #555;
}

.sidebar-area .tagcloud a {
    display: inline-block;
    padding: 5px 15px;
    margin: 5px;
    background-color: #f0f0f0;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
}

.recent-post-wrap .recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-post .media-body .post-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.recent-post .media-body .post-title a {
    color: #1a1a1a;
}

.recent-post .media-body .recent-post-meta {
    font-size: .8rem;
    color: #666;
}

.share-links {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-links-title {
    font-weight: 600;
    margin-right: 10px;
}

.social-links a {
    margin-left: 10px;
    font-size: 1.2rem;
    color: #333;
}

.author-widget-wrap {
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 30px 0;
}

.author-info .name {
    margin: 0 0 10px 0;
}

.author-bio {
    font-size: .9rem;
}

#comments { margin-top: 30px; }

@media (max-width: 991px) {
    .col-lg-8,
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sidebar-area {
        margin-top: 40px;
    }
}
