/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Lual Trânsito */
.news-header {
    background-color: #1A3B8B;
    color: white;
    padding: 30px 0;
    text-align: left;
}

.site-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.site-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Article Container */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Article Header */
.article-header {
    margin-bottom: 40px;
}

.article-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

.separator {
    margin: 0 8px;
}

/* Featured Image */
.featured-image {
    margin-bottom: 40px;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-image figcaption {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin: 40px 0 20px 0;
    font-family: 'Merriweather', serif;
}

.article-content p {
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    color: #444;
}

.article-content strong {
    color: #222;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background-color: #F4F4F4;
    padding: 60px 0;
    margin: 60px 0;
}

.cta-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #e5e5e5;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}

.cta-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.cta-button-container {
    margin-bottom: 20px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    flex-shrink: 0;
}

.cta-footer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

/* Footer */
.news-footer {
    background-color: #F4F4F4;
    border-top: 1px solid #e5e5e5;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.news-footer p {
    color: #666;
    margin-bottom: 8px;
}

.footer-subtitle {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .article-container {
        padding: 20px 15px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .featured-image img {
        height: 250px;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
        margin: 30px 0 15px 0;
    }
    
    .cta-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .whatsapp-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 40px 0;
        margin: 40px 0;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.6rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .featured-image img {
        height: 200px;
    }
    
    .whatsapp-button {
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px;
    }
    
    .whatsapp-button svg {
        order: -1;
    }
}

/* Animações suaves */
.whatsapp-button,
.featured-image img,
.cta-card {
    transition: all 0.3s ease;
}

.featured-image img:hover {
    transform: scale(1.02);
}

/* Print Styles */
@media print {
    .cta-section,
    .news-footer {
        display: none;
    }
    
    .whatsapp-button {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .article-title {
        font-size: 18pt;
    }
    
    .article-content h3 {
        font-size: 14pt;
    }
}