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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e91e63;
}

:root {
    --primary: #4a0082;
    --secondary: #9932cc;
    --accent: #d53f8c;
    --light: #f8f9fa;
    --dark: #1a0033;
    --white: #ffffff;
    --success-color: #2ecc71;
}

/* Header do artigo */
.article-category-badge .category-label {
    background: var(--accent);
    color: var(--white);
}

/* Títulos do artigo */
.article-title,
.article-content h2,
.article-content h3 {
    color: var(--primary);
}

/* Links do artigo */
.article-content a {
    color: var(--secondary);
}

.article-content a:hover {
    color: var(--accent);
}

/* Botões do artigo */
.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary);
}

.btn-secondary {
    background: var(--light);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Tags do artigo */
.article-tags .tag {
    background: #f0e6f7;
    color: var(--primary);
}

.article-tags .tag:hover {
    background: var(--accent);
    color: var(--white);
}

/* ===== ESTILO GERAL DO SIDEBAR ===== */
.sidebar {
    padding: 20px 0;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== CARD STYLE PARA TODAS AS SEÇÕES DO SIDEBAR ===== */
.sidebar-section {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sidebar-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* ===== TÍTULO DO SIDEBAR ===== */
.sidebar-title {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

/* ===== NEWSLETTER CARD ===== */
.newsletter-section {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.newsletter-section .sidebar-title {
    color: var(--dark);
    border-bottom: none;
}

.newsletter-section p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    background: var(--light);
    border: 1px solid #e0e0e0;
    padding: 14px 16px;
    border-radius: 8px;
    width: 100%;
    font-size: 0.95rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(213, 63, 140, 0.1);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    background: #e74c3c;
    color: var(--white);
    padding: 14px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* ===== ARTIGOS RELACIONADOS - DESIGN APRIMORADO ===== */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.related-article {
    display: block;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-article-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-article-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-article-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.related-article:hover .related-article-title {
    color: var(--secondary);
}

.related-article-category {
    font-size: 0.75rem;
    color: var(--white);
    background: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

/* ===== CATEGORIAS POPULARES (se aplicável) ===== */
.categories-section {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.categories-list li {
    padding: 0;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.categories-list a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.categories-list li:last-child a {
    border-bottom: none;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .sidebar-section {
        padding: 25px 20px;
    }
    
    .newsletter-section {
        padding: 25px 20px;
    }
    
    .sidebar-title {
        font-size: 1.3rem;
    }
    
    .related-article-image {
        height: 160px;
    }
    
    .related-article-content {
        padding: 15px;
    }
}

/* ===== FORÇAR COR DO BOTÃO INSCREVER-SE NO SIDEBAR ===== */
.sidebar .newsletter-button,
.sidebar-section .newsletter-button,
.newsletter-section button,
.newsletter-form button,
.sidebar button[type="submit"] {
    background: #e74c3c !important;
    color: #ffffff !important;
    padding: 14px 24px !important;
    border: none !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.sidebar .newsletter-button:hover,
.sidebar-section .newsletter-button:hover,
.newsletter-section button:hover,
.newsletter-form button:hover,
.sidebar button[type="submit"]:hover {
    background: #c0392b !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3) !important;
}

/* CTAs do artigo */
.cta-box {
    border-left-color: var(--accent) !important;
}

.cta-box a.btn-primary {
    background: var(--primary) !important;
}

.cta-box a.btn-primary:hover {
    background: var(--secondary) !important;
}

/* Ajuste do CTA com gradiente roxo */
.cta-box[style*="linear-gradient"] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
}

/* Ajuste do CTA com borda roxa */
.cta-box[style*="border: 2px solid"] {
    border-color: var(--accent) !important;
}

.cta-box[style*="border: 2px solid"] a.btn-primary {
    background: var(--accent) !important;
}

.cta-box[style*="border: 2px solid"] a.btn-primary:hover {
    background: var(--primary) !important;
}

/* Meta informações do artigo */
.author-name {
    color: var(--primary);
}

.author-title {
    color: var(--secondary);
}

/* Listas do artigo */
.article-content ul li strong,
.article-content ol li strong {
    color: var(--primary);
}

/* Blockquotes */
.article-content blockquote {
    border-left: 4px solid var(--accent);
    background: var(--light);
    color: var(--dark);
}

/* Navigation */
.nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e91e63;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e91e63;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    color: #666;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #e91e63;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 24px;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Search Bar */
.search-bar {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.search-bar.active {
    display: block;
}

.search-container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 2px solid #eee;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #e91e63;
}

.search-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #666;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-primary {
    background: #fff;
    color: #e91e63;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #e91e63;
}

.btn-outline {
    background: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
}

.btn-outline:hover {
    background: #e91e63;
    color: #fff;
}

/* Main Content */
.main {
    padding-top: 2rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Section */
.featured-section {
    padding: 4rem 0;
}

.featured-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.category-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.category-description {
    color: #666;
    margin-bottom: 1rem;
}

.category-count {
    font-size: 0.875rem;
    color: #e91e63;
    font-weight: 500;
}

/* Articles Section */
.articles-section {
    padding: 4rem 0;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: #f8f9fa;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: #e91e63;
    color: #fff;
}

.articles-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

.article-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e91e63;
    color: #fff;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
}

.article-excerpt {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.article-link-wrapper {
    text-decoration: none;
    color: inherit;
}

.article-meta {
    padding: 0 1.5rem 1.5rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.article-author-date {
    font-size: 0.8rem;
    color: #666;
}

.article-read-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-reading-time {
    font-size: 0.875rem;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.btn-read-article {
    background-color: #e91e63;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 300;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.btn-read-article:hover {
    background-color: #c2185b;
}

.article-author {
    font-weight: 500;
}

.article-date {
    color: #999;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo-text {
    display: flex;
    font-size: 1.25rem;
    font-weight: 700;
    color: #e91e63;
}

.footer-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e91e63;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e91e63;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #e91e63;
}

.contact-info {
    color: #ccc;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.copyright {
    color: #999;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .nav {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-group {
        flex-direction: row;
    }
    
    .form-input {
        flex: 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-meta {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e91e63;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .newsletter-section {
        display: none;
    }
    
    .main {
        padding-top: 0;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.mission-section {
    padding: 4rem 0;
}

.mission-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.mission-text h2,
.mission-text h3 {
    color: #333;
    margin-bottom: 1rem;
}

.mission-text h2 {
    font-size: 2rem;
    font-weight: 700;
}

.mission-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}

.mission-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
    line-height: 1.6;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: #e91e63;
    font-weight: 600;
}

.mission-image img {
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.story-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.team-member {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #e91e63;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Article Page Styles */
.article-page .main {
    padding-top: 1rem;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-list li {
    color: #666;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb-list a {
    color: #e91e63;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list .current {
    color: #333;
    font-weight: 500;
}

.article-layout {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
}

.article {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-header {
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.article-category-badge {
    margin-bottom: 1rem;
}

.category-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e91e63;
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.875rem;
    color: #666;
}

.article-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.publish-date,
.reading-time,
.article-views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.article-content {
    padding: 2rem;
    line-height: 1.8;
}

.article-intro {
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 1rem;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 1rem;
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0 0.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

.highlight-quote {
    background: #f8f9fa;
    border-left: 4px solid #e91e63;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.125rem;
}

.tip-box,
.warning-box {
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.tip-box {
    background: #e8f5e8;
    border: 1px solid #4caf50;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

.tip-box h4,
.warning-box h4 {
    margin: 0 0 0.5rem;
    color: #333;
}

.article-list,
.step-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-list li,
.step-list li {
    margin-bottom: 1rem;
    color: #666;
}

.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.step-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.article-footer {
    padding: 2rem;
    border-top: 1px solid #eee;
}

.article-tags {
    margin-bottom: 2rem;
}

.article-tags h4 {
    margin-bottom: 1rem;
    color: #333;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: #f8f9fa;
    color: #666;
    border-radius: 15px;
    font-size: 0.875rem;
    border: 1px solid #eee;
}

.article-share h4 {
    margin-bottom: 1rem;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.linkedin {
    background: #0077b5;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.category-links {
    list-style: none;
}

.category-links li {
    margin-bottom: 0.5rem;
}

.category-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-links a:hover {
    color: #e91e63;
}

/* Legal Pages Styles */
.legal-page {
    max-width: 800px;
    margin: 6rem auto 4rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #e91e63;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.contact-details a {
    color: #e91e63;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* AJUSTES ADICIONAIS */
a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    margin-right: 10px;
}

.btn {
    display: inline-block;
    margin: 12px 0;
    padding: 10px 18px;
    border-radius: 30px;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #d62828;
}

/* BLOCO DE ANÚNCIOS */
.ad-container {
    text-align: center;
    margin: 2rem auto;
    padding: 1rem;
    max-width: 100%;
    background-color: #fff;
}

.ad-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.cta-box[style*="border: 2px solid"] a.btn-primary {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-box[style*="border: 2px solid"] a.btn-primary:hover {
    background: var(--accent) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.article-actions .btn-secondary {
    background: var(--light);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-actions .btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.article-actions .btn-primary {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-actions .btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-section .btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-section .btn-primary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-section .newsletter-form input {
    background: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--dark);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.footer-section .newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.footer-section .newsletter-form input::placeholder {
    color: #999;
}

/* Responsive Design Adicional */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .legal-page {
        margin: 8rem auto 4rem;
        padding: 3rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .article-layout {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 768px) {
    .ad-container {
        padding: 0.75rem;
        margin: 1.5rem auto;
    }

    .ad-label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
}