/* BANNER */
.banner {
    background: url("../images/image-post.png") no-repeat center -30px / cover;
    position: relative;
    aspect-ratio: 1920 / 598;
    z-index: 2;
    border-top: 4px solid #3C3C3B;
}

.banner__content {
    margin: 0 auto;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.banner__breadcrumb {
    display: flex;
    gap: 5px;
    color: #333;
}

.banner__infos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 55%;
}

.banner__titulo {
    font-size: 38px;
}

.banner_subtitulo {
    color: var(--color-primary);

}

.banner_scroll {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* POST */

.post {
    width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    color: #5D5D5D;
}

.post__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
    font-family: "Nunito", sans-serif;
}

.post__date,
.post__author {
    font-size: 14px;
    color: #748995;
}

.post__featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.post__featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post__content {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #5D5D5D;
}

.post__content p {
    margin-bottom: 24px;
}

.post__content p:last-child {
    margin-bottom: 0;
}

.post__content h2,
.post__content h3,
.post__content h4 {
    color: #0C96C7;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.post__content h2 {
    font-size: 32px;
}

.post__content h3 {
    font-size: 26px;
}

.post__content h4 {
    font-size: 22px;
}

.post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0 5px 0;
    display: block;
}

.post__content ul,
.post__content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.post__content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.post__content a {
    color: #0C96C7;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post__content a:hover {
    color: #2A5D9E;
}

.post__content blockquote {
    border-left: 4px solid #0C96C7;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #748995;
}

.post__content figure {
    margin: 30px 0;
}

.post__content figcaption {
    font-size: 14px;
    color: #748995;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.post__tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #E6E6E6;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.post__tags strong {
    color: #3C3C3B;
    font-family: "Nunito", sans-serif;
}

.post__tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: #EAF4FC;
    color: #0C96C7;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    transition: all 0.3s ease;
}

.post__tag:hover {
    background-color: #0C96C7;
    color: white;
}

/* RELACIONADOS */

/* AÇÕES */

.acoes {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url("../images/mask-post.png") no-repeat left center,
    #F8F3E6;
    background-size: contain;
}

.acoes_titulo {
    color: #0C96C7;
    text-align: center;
    margin-bottom: 50px;
}

.acoes__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.acoes__list--single {
    background-color: white;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.acoes__list--single:hover {
    background-color: #EAF4FC;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(12, 150, 199, 0.1);
}

.acoes__content-single {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.acoes__single--button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: fit-content;
    border: none;
}

.acao__capa {
    width: 100%;
}

.acoes__single--data {
    background-color: #0C96C7;
    color: white;
    width: fit-content;
    padding: 4px 15px;
    border-radius: 6px;
}

.acoes__single--descricao {
    color: #748995;
}

.acoes__button-all {
    margin-top: 50px;
    padding: 15px 20px;
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {
    .banner__infos {
        width: 100%;
    }

    .banner__titulo {
        font-size: 28px;
    }

    .post {
        width: 100%;
        padding: 40px 20px;
    }

    .post__content {
        font-size: 16px;
        line-height: 1.7;
    }

    .post__content h2 {
        font-size: 24px;
        margin-top: 30px;
    }

    .post__content h3 {
        font-size: 20px;
        margin-top: 25px;
    }

    .post__content h4 {
        font-size: 18px;
        margin-top: 20px;
    }

    .acoes__list {
        grid-template-columns: 1fr;
    }
}

.contato__banner {
	background-position: 120%;
}