* {
    font-family: 'Lufga', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    width: 100%;
    overflow-x: hidden;
}

.post-header {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    padding-top: 150px ;
}

.post-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #30159899; /* Filtro roxo */
}

.post-header h1 {
    position: relative;
    color: white;
    z-index: 1;
    font-size: 64px;
    text-align: center;
    padding:20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 150%;
    font-weight: 700;
}

.post-body {
    max-width: 800px;
    padding: 0 20px;
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

.post-body ul {
    padding-left: 20px;
}

.post-body ul li {
    margin-bottom: 10px;
}

.text-red {
    color: #e63946;
}

.text-purple {
    color: #6C63FF;
}

/* CTA Section */
.cta {
    background: #7b3aed;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 35px;
    color: #fff;
    text-align: center;
    line-height: 150%;
    font-weight: 700;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta .btn {
    padding: 12px 25px;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta .btn.primary {
    background: #fff;
    color: #7b3aed;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.cta .btn.primary:hover {
    background: #e5e5e5;
}

.cta .btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.cta .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.content-html h1,
.content-html h2,
.content-html h3 {
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-html p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.content-html ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    list-style: none;
    padding-left: 0;
}

.content-html li {
    margin-bottom: 0.5rem;
}


.content-html h1,
.content-html h2,
.content-html h3 {
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-html p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.content-html ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    list-style: none;
    padding-left: 0;
}

.content-html li {
    margin-bottom: 0.5rem;
}

#post-4 {
    text-align: center;
}

@media (max-width: 1024px) {
    .cta{
        height: auto;
    }
    .post-header h1{
        font-size: x-large;
    }
}

@media  (max-width: 768px) {
    .cta h2{
        font-size: x-large;
    }
    .cta p{
        font-size: medium;
    }
}
