/* ========================================
   MODERNIZAÇÃO VISUAL - CARLOS MORAES TV
   ======================================== */

/* === VARIÁVEIS CSS MODERNAS - PALETA JORNALÍSTICA === */
:root {
    --primary-color: #1a365d;
    --primary-gradient: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    --accent-color: #e53e3e;
    --accent-gradient: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    --dark-gradient: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    --light-gradient: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    --neutral-bg: #f8fafc;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --shadow-modern: 0 4px 20px rgba(26, 54, 93, 0.08);
    --shadow-hover: 0 8px 30px rgba(26, 54, 93, 0.12);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
    --border-radius-modern: 8px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === MELHORIAS GERAIS === */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    letter-spacing: -0.01em;
    background-color: var(--neutral-bg);
    color: var(--text-primary);
}

/* === CONTAINER PRINCIPAL === */
.container {
    background: white;
    border-radius: var(--border-radius-modern);
    box-shadow: var(--shadow-card);
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 2rem;
}

/* === MENU PADRÃO NORMAL === */

/* REMOVER BARRA AZUL DO TOPO */
.top-bar {
    display: none !important;
}

/* HEADER SIMPLES E LIMPO */
#header {
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 2px solid #e53e3e !important;
}

/* INTEGRAR LOGO E MENU NA MESMA LINHA */
.logo-banner {
    display: none !important;
}

/* NAVBAR PRINCIPAL - LAYOUT HORIZONTAL PADRÃO */
.navbar.main-menu {
    background: #ffffff !important;
    border: none !important;
    padding: 1rem 0 !important;
    margin: 0 !important;
    min-height: 100px !important;
    position: relative !important;
}

.navbar.main-menu .container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 2rem !important;
}

/* LOGO À ESQUERDA */
.navbar-brand {
    flex-shrink: 0 !important;
    margin-right: 2rem !important;
    display: block !important;
    padding: 0 !important;
}

.navbar-brand a {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

.navbar-brand .logo-menu,
.navbar-brand img {
    max-height: 80px !important;
    width: auto !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

.navbar-brand:hover .logo-menu,
.navbar-brand:hover img {
    transform: scale(1.05) !important;
}

/* MENU NO CENTRO */
.navbar-collapse {
    flex-grow: 1 !important;
    display: flex !important;
    justify-content: center !important;
}

.navbar-collapse .row {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    margin: 0 !important;
    list-style: none !important;
    padding: 0 !important;
}

.navbar-nav > li {
    margin: 0 0.8rem !important;
}

.navbar-nav > li > a {
    color: #333333 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
    padding: 0.8rem 1.2rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 4px !important;
    display: block !important;
}

.navbar-nav > li:hover > a,
.navbar-nav > li.active > a {
    background: #e53e3e !important;
    color: #ffffff !important;
}

/* BUSCA À DIREITA */
.navbar-nav.navbar-right {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.navbar-nav .li-search .search-icon {
    color: #333333 !important;
    font-size: 1.1rem !important;
    padding: 0.8rem !important;
    background: #f8f9fa !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    display: block !important;
    text-decoration: none !important;
}

.navbar-nav .li-search .search-icon:hover {
    background: #e53e3e !important;
    color: #ffffff !important;
}

/* === FORÇAR VISIBILIDADE DA LOGO === */
.navbar-brand,
.navbar-brand a,
.navbar-brand img,
.navbar-brand .logo-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999 !important;
}

.navbar.main-menu .navbar-brand {
    order: -1 !important;
    flex: 0 0 auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
}

/* LOGO SEM BORDAS */
.navbar-brand {
    border: none !important;
    padding: 0 !important;
}

/* === TÍTULO PRINCIPAL MODERNO === */
.title-index {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin: 2rem 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(26, 54, 93, 0.1);
}

/* === SEÇÃO NOTÍCIAS EM DESTAQUE === */
.section-featured {
    position: relative;
    margin: 1.5rem 0;
}

.section-featured::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e53e3e 0%, #1a365d 100%);
    border-radius: 2px;
    z-index: 1;
}

/* === CARDS DE NOTÍCIAS === */

.featured-box {
    border-radius: var(--border-radius-modern);
    overflow: hidden;
    transition: var(--transition-smooth);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.featured-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.featured-box .overlay {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    transition: var(--transition-smooth);
}

.featured-box:hover .overlay {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
}

/* === CARDS DE POSTS MODERNOS === */
.post-item-horizontal {
    background: white;
    border-radius: var(--border-radius-modern);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-item-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-modern);
    border-color: rgba(103, 126, 234, 0.2);
}

.post-item-horizontal .post-image {
    border-radius: var(--border-radius-modern);
    overflow: hidden;
}

.post-item-horizontal .post-image img {
    transition: var(--transition-smooth);
}

.post-item-horizontal:hover .post-image img {
    transform: scale(1.05);
}

/* === CATEGORY LABELS MODERNOS === */
.category-label {
    border-radius: 20px !important;
    padding: 0.4rem 1rem !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    transition: var(--transition-smooth) !important;
}

.category-label:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* === BOTÕES MODERNOS === */
.btn, .btn-load-more, .newsletter-button {
    border-radius: var(--border-radius-modern) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: var(--transition-smooth) !important;
    box-shadow: var(--shadow-card) !important;
    border: 2px solid var(--primary-color) !important;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
}

.btn:hover, .btn-load-more:hover, .newsletter-button:hover {
    transform: translateY(-1px) !important;
    box-shadow: var(--shadow-modern) !important;
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

/* === BOTÕES SECUNDÁRIOS === */
.btn-outline {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-outline:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

/* === SIDEBAR MODERNA === */
#sidebar .widget, #sidebar .sidebar-widget {
    background: white;
    border-radius: var(--border-radius-modern);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

#sidebar .widget:hover, #sidebar .sidebar-widget:hover {
    box-shadow: var(--shadow-modern);
    border-color: rgba(103, 126, 234, 0.1);
}

#sidebar .widget-title, #sidebar .widget-head .title {
    background: var(--primary-color) !important;
    color: white !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    padding: 1rem 1.5rem !important;
    margin: 0 !important;
    border-radius: 0 !important;
    position: relative;
}

#sidebar .widget-title::after, #sidebar .widget-head .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
}

#sidebar .widget-head {
    background: var(--primary-color) !important;
    margin: 0 !important;
    padding: 0 !important;
}

#sidebar .widget-body {
    padding: 1.5rem !important;
}

/* === TABS MODERNOS === */
#sidebar .nav-tabs {
    border: none !important;
    margin-bottom: 1rem !important;
}

#sidebar .nav-tabs > li {
    margin-bottom: 0 !important;
}

#sidebar .nav-tabs > li > a {
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    margin-right: 0.5rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth) !important;
}

#sidebar .nav-tabs > li.active > a,
#sidebar .nav-tabs > li > a:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

/* === POSTS PEQUENOS MODERNOS === */
#sidebar .popular-posts li,
#sidebar .recommended-posts li {
    padding: 1rem 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    transition: var(--transition-smooth) !important;
}

#sidebar .popular-posts li:hover,
#sidebar .recommended-posts li:hover {
    background: #f8fafc !important;
    border-radius: 8px !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

#sidebar .popular-posts li:last-child,
#sidebar .recommended-posts li:last-child {
    border-bottom: none !important;
}

/* === NEWS TICKER MODERNO === */
.news-ticker-cnt {
    background: var(--primary-color);
    border-radius: var(--border-radius-modern);
    box-shadow: var(--shadow-modern);
    margin: 1rem 0;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.news-ticker-title {
    background: var(--accent-color) !important;
    color: white !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 0.8rem 1.2rem !important;
}

/* === SEÇÃO NOTÍCIAS EM DESTAQUE === */
.section-head .title {
    color: #1a365d !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    border-bottom: 3px solid #e53e3e !important;
    padding-bottom: 0.5rem !important;
    display: inline-block !important;
    background: #ffffff !important;
    padding: 1rem 1.5rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* === ÚLTIMAS POSTAGENS === */
.section-head {
    margin-bottom: 2rem !important;
    position: relative;
    background: #f8fafc !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    border-left: 4px solid #e53e3e !important;
}

.section-head::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e53e3e 0%, #1a365d 100%) !important;
    border-radius: 2px;
}

/* === ESTILOS ESPECÍFICOS PARA TÍTULOS === */
.section-head h2,
.section-head h3,
.section-head .title {
    color: #1a365d !important;
}

/* === FORMULÁRIOS MODERNOS === */
input[type="text"], input[type="email"], input[type="password"], textarea {
    border-radius: var(--border-radius-modern) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    transition: var(--transition-smooth) !important;
    padding: 0.8rem 1rem !important;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1) !important;
    outline: none !important;
}

/* === FOOTER MODERNO REFORMULADO === */
#footer.modern-footer {
    background: #1a202c !important;
    color: #ffffff !important;
    margin-top: 4rem !important;
    position: relative !important;
}

#footer {
    background: #1a202c !important;
    color: #ffffff !important;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e53e3e 0%, #1a365d 100%);
}

.footer-main {
    padding: 4rem 0 2rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: #1a202c !important;
}

.footer-widget {
    margin-bottom: 2rem !important;
}

/* === FORÇAR CORES DO FOOTER === */
#footer {
    background: #1a202c !important;
    background-color: #1a202c !important;
}

#footer * {
    color: #ffffff !important;
}

#footer .footer-widget * {
    color: #ffffff !important;
}

#footer p, #footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
    color: #ffffff !important;
}

#footer .container {
    background: #1a202c !important;
}

#footer .footer-main {
    background: #1a202c !important;
}

#footer .footer-bottom-modern {
    background: #0f1419 !important;
}

/* === COLUNA SOBRE === */
.about-widget .footer-logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.about-widget .footer-logo {
    width: 60px;
    height: auto;
    margin-right: 1rem;
    border-radius: 8px;
}

.about-widget .footer-brand {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-widget .about-text {
    color: #e2e8f0 !important;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.journalist-info h5 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.journalist-info .profession {
    color: #e53e3e !important;
    font-weight: 500;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.journalist-info .experience {
    color: #cbd5e0 !important;
    font-size: 0.85rem;
    margin: 0;
}

/* === COLUNA LINKS === */
.links-widget .widget-title {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.links-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #e53e3e !important;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: #e2e8f0 !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    padding-left: 1rem;
    display: block;
    padding: 0.3rem 0 0.3rem 1rem;
    border-radius: 4px;
}

.footer-links li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #e53e3e !important;
    font-size: 0.7rem;
    transition: var(--transition-smooth);
}

.footer-links li a:hover {
    color: #ffffff !important;
    background: rgba(229, 62, 62, 0.1);
    padding-left: 1.2rem;
}

.footer-links li a:hover::before {
    transform: translateX(2px);
    color: #ffffff !important;
}

/* === COLUNA ÚLTIMAS NOTÍCIAS === */
.recent-posts-widget .widget-title {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recent-posts-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #e53e3e !important;
    border-radius: 2px;
}

/* === COLUNA SOCIAL E NEWSLETTER === */
.social-newsletter-widget .widget-title {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-newsletter-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #e53e3e !important;
    border-radius: 2px;
}

.social-section {
    margin-bottom: 2rem;
}

.social-text {
    color: #e2e8f0 !important;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links-modern {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-links-modern a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    background: #2d3748 !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: var(--transition-smooth) !important;
    font-size: 1.2rem !important;
    border: 2px solid #4a5568 !important;
    margin: 0.2rem !important;
}

.social-links-modern a:hover {
    background: #e53e3e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.4) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* === FORÇAR ÍCONES SOCIAIS === */
#footer .social-links-modern a {
    background: #2d3748 !important;
    color: #ffffff !important;
    border: 2px solid #4a5568 !important;
}

#footer .social-links-modern a i {
    color: #ffffff !important;
}

/* === NEWSLETTER MODERNA === */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius-modern);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.newsletter-text {
    color: #e2e8f0 !important;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.input-group-modern {
    display: flex;
    border-radius: var(--border-radius-modern);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.newsletter-input-modern {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    background: white;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input-modern::placeholder {
    color: #a0aec0;
}

.newsletter-btn-modern {
    background: var(--accent-color);
    border: none;
    padding: 0.8rem 1.2rem;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.newsletter-btn-modern:hover {
    background: #c53030;
    transform: scale(1.05);
}

.newsletter-feedback {
    margin-top: 0.8rem;
    font-size: 0.8rem;
}

.feedback-error {
    color: #fed7d7;
}

.feedback-success {
    color: #c6f6d5;
}

/* === FOOTER BOTTOM === */
.footer-bottom-modern {
    background: rgba(0, 0, 0, 0.5) !important;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-modern p {
    margin: 0;
    color: #e2e8f0 !important;
    font-size: 0.85rem;
}

.tech-credit {
    margin-top: 0.3rem !important;
    font-size: 0.8rem !important;
    color: #cbd5e0 !important;
}

.footer-nav-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-nav-modern li a {
    color: #e2e8f0 !important;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.footer-nav-modern li a:hover {
    color: #ffffff !important;
    background: rgba(229, 62, 62, 0.2);
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .about-widget .footer-logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .about-widget .footer-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer-nav-modern {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-links-modern {
        justify-content: center;
    }
}

/* === ANIMAÇÕES SUTIS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-item-horizontal, .featured-box, #sidebar .widget {
    animation: fadeInUp 0.6s ease-out;
}

/* === SCROLLBAR MODERNA === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* === RESPONSIVIDADE MODERNA === */
@media (max-width: 768px) {
    .title-index {
        font-size: 2rem;
    }
    
    .featured-box {
        margin-bottom: 1rem;
    }
    
    .post-item-horizontal {
        margin-bottom: 1rem;
    }
}

/* === LOADING SPINNER MODERNO === */
.load-more-spinner .spinner {
    background: var(--primary-color) !important;
    border-radius: 50% !important;
}

.load-more-spinner .bounce1,
.load-more-spinner .bounce2,
.load-more-spinner .bounce3 {
    background-color: var(--accent-color) !important;
}

/* === COOKIES WARNING MODERNO === */
.cookies-warning {
    background: white !important;
    border-radius: var(--border-radius-modern) !important;
    box-shadow: var(--shadow-modern) !important;
    border: 1px solid rgba(103, 126, 234, 0.2) !important;
}

.cookies-warning .text {
    color: #2c3e50 !important;
    font-weight: 500 !important;
}

/* === MELHORIAS DE TIPOGRAFIA === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.3 !important;
}

p {
    line-height: 1.6 !important;
    color: #4a5568 !important;
}

/* === EFEITOS HOVER GLOBAIS === */
a {
    transition: var(--transition-smooth) !important;
}

img {
    transition: var(--transition-smooth) !important;
}

/* === GLASSMORPHISM SUTIL === */
.navbar, .section-featured {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* === CORREÇÃO URGENTE DO FOOTER === */
footer#footer,
footer#footer *,
#footer,
#footer *,
.modern-footer,
.modern-footer * {
    background: #1a202c !important;
    color: #ffffff !important;
}

footer#footer .container,
#footer .container {
    background: #1a202c !important;
}

/* Forçar ícones sociais visíveis */
footer#footer a,
#footer a {
    color: #ffffff !important;
    background: #2d3748 !important;
}

/* Forçar newsletter visível */
footer#footer input,
#footer input {
    background: #ffffff !important;
    color: #000000 !important;
}

footer#footer button,
#footer button {
    background: #e53e3e !important;
    color: #ffffff !important;
}

/* === CORREÇÃO ESPECÍFICA DE ELEMENTOS === */

/* SEÇÕES DE DESTAQUE - TÍTULOS */
.section-head {
    background: #f8fafc !important;
    border-left: 4px solid #e53e3e !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    margin-bottom: 2rem !important;
}

.section-head .title {
    background: #ffffff !important;
    color: #1a365d !important;
    border: 2px solid #e53e3e !important;
    padding: 1rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin: 0 !important;
}
