* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vermelho: #b31217;
    --roxo: #4b0082;
    --dourado: #ffcc00;
    --branco: #ffffff;
    --cinza-claro: #f5f5f5;
    --cinza-medio: #666666;
    --cinza-escuro: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--cinza-escuro);
    background-color: var(--branco);
}

h1, h2, h3 {
    font-family: 'Cinzel Decorative', serif;
    line-height: 1.2;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--vermelho) 0%, var(--roxo) 100%);
    color: var(--branco);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--vermelho) 0%, var(--roxo) 100%);
    color: var(--branco);
    padding: 80px 20px 60px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Posts Grid */
.posts-section {
    padding: 60px 20px;
    background-color: var(--cinza-claro);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.post-card {
    background: var(--branco);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.post-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.post-category {
    display: inline-block;
    background: var(--vermelho);
    color: var(--branco);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.post-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--cinza-escuro);
}

.post-card p {
    color: var(--cinza-medio);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-read-more {
    background: linear-gradient(135deg, var(--vermelho) 0%, var(--roxo) 100%);
    color: var(--branco);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-size: 0.95rem;
}

.btn-read-more:hover {
    transform: scale(1.05);
}

/* Anúncios Section */
.anuncios-section {
    padding: 60px 20px;
    background-color: var(--branco);
}

.anuncios-section h2,
.anuncios-post h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--cinza-escuro);
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.banner-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

/* Post Page */
.back-button {
    display: inline-block;
    margin: 30px 0;
    color: var(--vermelho);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.back-button:hover {
    opacity: 0.7;
}

.post-content {
    background: var(--branco);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.post-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--cinza-escuro);
}

.post-meta {
    color: var(--cinza-medio);
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cinza-claro);
}

.post-image-container {
    margin-bottom: 30px;
}

.post-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cinza-escuro);
}

.post-body p {
    margin-bottom: 20px;
}

.post-body h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--cinza-escuro);
}

.post-body h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--cinza-escuro);
}

.post-body ul, .post-body ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.anuncios-post {
    margin-bottom: 60px;
}

/* Footer */
.footer {
    background: var(--cinza-escuro);
    color: var(--branco);
    padding: 60px 20px 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--dourado);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--branco);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--dourado);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    color: var(--dourado);
    opacity: 1;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 10px 0;
    opacity: 0.8;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--dourado);
}

/* FAQ Styles */
.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    color: var(--vermelho);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--cinza-claro);
}

.faq-item {
    background: var(--cinza-claro);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--roxo);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 12px;
}

.faq-item ul, .faq-item ol {
    margin-left: 25px;
    margin-top: 10px;
}

.faq-item li {
    margin-bottom: 8px;
}

.faq-item a {
    color: var(--vermelho);
    font-weight: 600;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.cta-box {
    background: linear-gradient(135deg, var(--vermelho) 0%, var(--roxo) 100%);
    color: var(--branco);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.cta-box h2 {
    color: var(--branco);
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-box a {
    background: var(--branco);
    color: var(--vermelho);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease;
}

.cta-box a:hover {
    transform: scale(1.05);
}

/* Privacy Page Styles */
.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: var(--vermelho);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cinza-claro);
}

.privacy-section h3 {
    color: var(--roxo);
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section ul, .privacy-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
}

.highlight-box {
    background: var(--cinza-claro);
    padding: 20px;
    border-left: 4px solid var(--vermelho);
    border-radius: 8px;
    margin: 25px 0;
}

.last-update {
    background: var(--cinza-claro);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        justify-content: center;
    }

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

    .post-content {
        padding: 25px;
    }

    .faq-item {
        padding: 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }
}
