:root {
    --light-black: #222222;
    --secondary-text-color: #4e4c4c;
    --product-secondary-text-color: #d9d9d9;
    --product-secondary-text-color-white-bg: #4b5863;
    --green: #0b6267;
    --green-secondary: #138086;
    --line-color: #146e73;
    --openzap-bg-width: 40%;
    --main-bg-color: #f5f5f7;
    --main-bg-color-black: #282727;
    --bg-blog: #e9e9e9;
    --data-color: #262626;
    --tittle-footer-color: #afafaf;
    --container1-txt-color: #a5a5a5;
    --rede-bg-color: #a5a5a5;
    --linha-footer-color: #3d3a3a;
    --third-light-bg-color: #f2f2f2;
    --quality-selected: #d6e8ed;
    --green-line: #1786a3;
}

header {
    background-color: #efeded !important;
}

main {
    padding: 90px 0 0 0;
    background-color: white;
}


.blog-section {
    background-color: white;
    padding: 90px 0 90px 0;
}

.blog-section .wrapper {
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 60px; */
}

.tittle-blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.blog-section h2 {
    color: var(--data-color);
    text-align: center;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 58.8px */
}

.blog-section p {
    text-align: center;
    font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 27px */
}

.blog-section p {
    line-height: 24px;
    color: var(--secondary-text-color);
}

.blog-posts-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
  /* gap: 24px;  */
}

.post {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-blog);
    padding: 0 0 25px 0;
    border-radius: 20px 20px 0 20px;
    width: 100% !important;
}

a.link-post {
    width: 100%;
}

.post .container-img img {
    width: 100%;
}

/* .post-tittle-data-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 35px 0 35px;
    gap: 20px;
} */

.post-tittle-data-container div {
    line-height: 30px;
    font-weight: bold;
}

.post-tittle-data-container div.data {
    color: var(--data-color);
}
.blog-section .wrapper {
    min-width: 900px;
}

@media screen and (max-width: 1000px) {
    .blog-section .wrapper {
        width: 85%;
        min-width: 500px;
    }
}

@media screen and (max-width: 600px) {
    .blog-section .wrapper {
        min-width: 300px;
    }
}

@media (max-width: 1024px) {
  .blog-posts-container {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
  }
}

/* Mobile (máx. 768px) */
@media (max-width: 768px) {
  .blog-posts-container {
    grid-template-columns: 1fr; /* 1 coluna */
  }
}
