/* --- Variáveis e Reset Básico --- */
:root {
    --primary-color: #cf2e2e;
    --secondary-color: #000;
    --background-light: #f4f4f4;
    --text-color-dark: #333;
    --text-color-light: #fff;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
}

/* --- Estilos Gerais de Componentes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
h1, h2, h3 {
    font-weight: 600;
}
.btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: var(--primary-color);
    color: var(--text-color-light);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background: #a92424;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.section-padding {
    padding: 80px 0;
}
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.section-heading h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.destaque-bold {
    font-weight: 700;
    color: var(--primary-color);
}
.destaque-cor {
    font-weight: 600;
    color: var(--secondary-color);
}
.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}
.color-swatch.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 150, 250, 0.5);
}

/* --- Header e Navegação --- */
.main-header {
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    z-index: 1000;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}
.logo-link:hover {
    transform: scale(1.05);
}
.logo-link img {
    height: 60px;
}
.header-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
.main-nav li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.main-nav li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--text-color-light);
    transition: width 0.3s ease-out;
}
.main-nav li a:hover {
    color: var(--text-color-light);
    transform: translateY(-2px);
}
.main-nav li a:hover::after {
    width: 100%;
}

/* --- Seção Hero --- */
#hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-light);
    background: url('assets/banner.jpg') no-repeat center center/cover;
}
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 50%;
    margin-left: auto;
    padding-right: 30%;
}
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.0;
    white-space: nowrap;
}

/* --- Seção Missão e Valores --- */
#mission-values {
    background-color: var(--text-color-light);
}
#mission-values .section-heading {
    margin-bottom: 20px;
}
.mission-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.value-card {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(25% - 20px);
    min-width: 350px;
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
}
.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* --- Seção Nosso Time --- */
#our-team .team-members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
#our-team .team-member {
    background-color: var(--text-color-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}
#our-team .team-member:hover {
    transform: translateY(-5px);
}
#our-team .member-image {
    margin-bottom: 20px;
}
#our-team .member-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
}
#our-team .member-info {
    text-align: left;
}
#our-team .person-name {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}
#our-team .person-details {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 15px;
}
#our-team .details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
#our-team .details-list li {
    margin-bottom: 8px;
    line-height: 1.4;
    color: #666;
}


/* --- Seção de Contato --- */
#contato {
    text-align: center;
}
.form-layout {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.form-layout label {
    text-align: left;
    font-weight: 600;
    color: var(--secondary-color);
}
.form-layout input, .form-layout textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-layout input:focus, .form-layout textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 600;
}
.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* --- Seção de Ebooks e Cursos --- */
#ebooks-courses {
    background-color: var(--background-light);
}
.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.ebook-card {
    background-color: var(--text-color-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease;
}
.ebook-card:hover {
    transform: translateY(-5px);
}
.ebook-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
    border-radius: 5px;
}
.ebook-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.ebook-info p {
    font-size: 1em;
    color: var(--text-color-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}
.ebook-cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ebook-cta .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}
.ebook-card.free-ebook .btn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.ebook-card.free-ebook .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.price-info {
    font-size: 1em;
    font-weight: 600;
    color: #555;
    margin: 0;
}
.course-features {
    text-align: center;
    margin-bottom: 40px;
}
.course-features .intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.feature-item {
    background-color: var(--text-color-light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: left;
}
.feature-item h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.feature-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
}

/* --- Catálogo de Produtos --- */
.product-grid-catalogo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.product-card-catalogo {
    background-color: var(--text-color-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    /* A propriedade align-items aqui só afeta o eixo vertical em `flex-direction: column` */
    /* Portanto, a centralização da imagem será feita com margin: auto; */
}
.product-card-catalogo:hover {
    transform: translateY(-5px);
}
.product-card-catalogo a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-info-catalogo {
    padding: 20px 15px;
    flex-grow: 1;
}
.product-card-catalogo .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.btn-catalogo {
    display: block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.product-card-catalogo img {
    /* Estas são as linhas que você precisa para centralizar e definir o tamanho */
    display: block; /* Garante que a imagem é um bloco para que a margem funcione */
    max-width: 100px; /* Define o tamanho máximo que a imagem pode ter */
    margin: 0 auto 15px; /* Centraliza a imagem e adiciona espaço abaixo */
    /* Fim das alterações */

    height: auto;
}

/* --- Página de Produto Individual --- */
.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}
.product-image-individual {
    flex: 1 1 200px;
}
.product-image-individual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.product-info-individual {
    flex: 1 1 400px;
}
.product-info-individual h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.price-individual {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
}
.description {
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}
.product-options-individual h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}
.color-options {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}
.color-swatch.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(40, 150, 250, 0.5);
}

/* --- Media Queries (Responsividade) --- */
@media (max-width: 992px) {
    #our-team .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .main-header {
        position: static;
        top: auto;
        z-index: auto;
    }
    .main-header .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .logo-link {
        flex-direction: column;
        gap: 5px;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero-content {
        max-width: 100%;
        margin: 0;
        padding: 0 20px;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
        white-space: normal;
        line-height: 1.2;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-heading h2 {
        font-size: 2.8rem;
        color: var(--secondary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }
    .values-grid {
        flex-direction: column;
    }
    #our-team .team-members {
        grid-template-columns: 1fr;
    }
    #sobre-nos .sobre-content {
        flex-direction: column;
        align-items: center;
    }
    #sobre-nos .sobre-imagem {
        width: 100%; /* Ajustado para 100% para melhor visualização */
        margin-bottom: 20px;
    }
    #sobre-nos .sobre-texto {
        text-align: center;
    }
    .product-details {
        flex-direction: column;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}
@media (max-width: 600px) {
    /* Esta regra foi movida e combinada na media query de 768px para evitar duplicação */
}

/* --- Blog Section Styles --- */
.blog-section {
    background-color: var(--text-color-light); /* Fundo claro para a seção do blog */
}
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.filter-group, .search-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.filter-group label {
    font-weight: 600;
    color: var(--secondary-color);
    white-space: nowrap;
}
.filter-select, .search-input {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: var(--text-color-dark);
    transition: border-color 0.3s ease;
}
.filter-select:focus, .search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.search-input {
    min-width: 200px;
}
.search-btn {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.search-btn:hover {
    background-color: var(--primary-color);
}

/* Grid de Posts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.post-card {
    background-color: var(--text-color-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
/* Estilo de destaque para um post específico (opcional) */
.post-card.destaque {
    box-shadow: 0 0 15px var(--primary-color);
    border: 2px solid var(--primary-color);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.post-card:hover .post-image img {
    transform: scale(1.05);
}
.post-info {
    padding: 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.post-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
}
.post-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.3;
}
.post-title a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}
.post-title a:hover {
    color: var(--primary-color);
}
.post-meta {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 15px;
}
.post-meta .post-date {
    font-weight: 600;
    color: #666;
}
.post-excerpt {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1; /* Garante que o texto ocupe o espaço e o botão vá para o final */
}
.btn-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    margin-top: auto;
    display: block;
    width: fit-content;
    transition: color 0.3s ease;
}
.btn-read-more:hover {
    color: var(--secondary-color);
}

/* Paginação */
.pagination {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.page-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 15px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.page-link:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}
.page-number {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Responsividade do Blog */
@media (max-width: 768px) {
    .blog-filters {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-group, .search-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .filter-select, .search-input, .search-btn {
        width: 100%;
        margin-top: 5px;
    }
    .search-input {
        min-width: 100%;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .pagination {
        gap: 10px;
    }
    .page-link {
        padding: 8px 12px;
    }
}

/* --- Single Post Styles --- */
.post-container {
    max-width: 850px;
}
.post-header {
    text-align: center;
    margin-bottom: 40px;
}
.post-header h1 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-top: 10px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.post-category-single {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
}
.post-meta-single {
    font-size: 1.1em;
    color: #888;
    margin-top: 5px;
}
.post-meta-single span {
    margin: 0 5px;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.post-featured-image img {
    width: 100%;
    height: auto;
}
.post-featured-image figcaption {
    background-color: #eee;
    padding: 10px 20px;
    font-style: italic;
    font-size: 0.9em;
    color: #666;
    text-align: center;
}

/* Estilos de Conteúdo */
.post-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 40px 0 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}
.post-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 25px 0 10px;
}
.post-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color-dark);
}
.post-content .intro-paragraph {
    font-size: 1.25em;
    font-weight: 500;
    color: var(--secondary-color);
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
}

/* Listas */
.post-content ul.styled-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}
.post-content ul.styled-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.05em;
}
.post-content ul.styled-list li::before {
    content: '\2022'; /* Bullet point padrão */
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Check List (Benefícios) */
.post-content .check-list li::before {
    color: #4CAF50; /* Verde para check */
    font-size: 1.2em;
}

/* Error List (Erros Comuns) */
.post-content .error-list {
    list-style: none;
    padding-left: 0;
}
.post-content .error-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.05em;
    color: #c9302c; /* Vermelho para erros */
    font-weight: 600;
}
.post-content .error-list li::before {
    color: #c9302c;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Planilha Box */
.planilha-box {
    background-color: var(--background-light);
    border-left: 5px solid var(--secondary-color);
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
}

/* FAQ Group */
.faq-group h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    margin-top: 15px;
    font-weight: 700;
}
.faq-group p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Conclusão e CTA */
.conclusion-heading {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 60px;
}
.post-content .cta-text {
    text-align: center;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.post-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.post-cta-buttons .btn {
    margin: 0;
    flex-basis: 45%; /* Para ter um bom tamanho lado a lado */
    display: inline-block;
    padding: 15px 25px;
    font-size: 1.05em;
}
.post-cta-buttons .secondary-btn {
    background-color: var(--secondary-color);
}
.post-cta-buttons .secondary-btn:hover {
    background-color: var(--primary-color);
}

/* Comentários */
.comments-section {
    padding-top: 30px;
    border-top: 1px dashed #ccc;
    margin-top: 40px;
}
.comments-section h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2rem;
    }
    .post-content h2 {
        font-size: 1.7rem;
    }
    .post-content p, .post-content ul li {
        font-size: 1em;
    }
    .post-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .post-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* --- Estilos da Seção de Comentários --- */
.comments-section {
    padding-top: 40px;
    border-top: 1px solid #ccc;
    margin-top: 50px;
}
.comments-section h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

/* Formulário de Comentários */
.comment-form-box {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.comment-form-box h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.comment-form-layout {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.comment-form-layout label {
    font-weight: 600;
    color: var(--text-color-dark);
}
.comment-form-layout input, 
.comment-form-layout textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.comment-form-layout input:focus, 
.comment-form-layout textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.comment-form-layout .btn {
    align-self: flex-start; /* Alinha o botão à esquerda */
    width: auto;
    margin-top: 10px;
}

/* Lista de Comentários */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.comment-item {
    padding: 20px;
    border-left: 3px solid var(--primary-color);
    background-color: #fcfcfc;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.comment-meta {
    margin-bottom: 10px;
}
.comment-author {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1em;
}
.comment-date {
    font-size: 0.9em;
    color: #888;
    margin-left: 10px;
}
.comment-item p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 0;
}
.author-reply {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color);
    border-left: 3px solid var(--secondary-color);
    padding-left: 15px;
}