/* Elite Post Template - CSS Personalizado */

/* Reset e configurações base */
* {
    box-sizing: border-box;
}

body, html {
    background-color: #000000 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Container principal */
.elite-post-container {
    width: 100%;
    min-height: 100vh;
    background-color: #000000;
    padding: 0;
    margin: 0;
}

/* Header do post */
.elite-post-header {
    width: 100%;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    text-align: center;
    border-bottom: 2px solid #333;
}

.elite-post-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.elite-post-meta {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 20px;
}

.elite-post-meta span {
    margin: 0 15px;
    padding: 5px 10px;
    background-color: #333;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Conteúdo do post */
.elite-post-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #000000;
}

.elite-post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
}

.elite-post-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin: 40px 0 20px 0;
    border-left: 4px solid #ff6b35;
    padding-left: 20px;
}

.elite-post-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 30px 0 15px 0;
}

/* Imagens */
.elite-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Links */
.elite-post-content a {
    color: #ff6b35;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.elite-post-content a:hover {
    color: #ffffff;
    border-bottom-color: #ff6b35;
}

/* Listas */
.elite-post-content ul, .elite-post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.elite-post-content li {
    margin-bottom: 10px;
    color: #ffffff;
}

/* Citações */
.elite-post-content blockquote {
    background-color: #1a1a1a;
    border-left: 4px solid #ff6b35;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

/* Botões */
.elite-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 10px 5px;
}

.elite-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Footer do post */
.elite-post-footer {
    width: 100%;
    padding: 40px 20px;
    background-color: #1a1a1a;
    border-top: 2px solid #333;
    text-align: center;
}

.elite-post-tags {
    margin-bottom: 20px;
}

.elite-post-tags span {
    display: inline-block;
    background-color: #333;
    color: #ffffff;
    padding: 5px 15px;
    margin: 5px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .elite-post-title {
        font-size: 2rem;
    }
    
    .elite-post-content {
        padding: 20px 15px;
    }
    
    .elite-post-content h2 {
        font-size: 1.5rem;
    }
    
    .elite-post-meta span {
        margin: 5px;
        font-size: 0.8rem;
    }
}

/* Forçar estilos sobre outros temas */
.elementor, .elementor-section, .elementor-container,
.ast-container, .site-content, .entry-content {
    background-color: #000000 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Corrigir elementos específicos identificados */
.elementor-881, .post-572 {
    background-color: #000000 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Navegação */
.elite-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1a1a1a;
    margin-top: 40px;
}

.elite-nav-links a {
    color: #ff6b35;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ff6b35;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.elite-nav-links a:hover {
    background-color: #ff6b35;
    color: #ffffff;
}
