/*
Theme Name: Evte News Theme
Theme URI: https://evte.net/
Description: Tema moderno e profissional para sites de notícias, baseado no GeneratePress. Design clean, responsivo e otimizado para performance sem dependências de page builders.
Author: Marco Jean
Author URI: https://evte.net/
Template: generatepress
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: evte-news
Tags: news, magazine, blog, responsive, clean, modern, fast, seo-friendly
*/

/*
 * ====================================
 * EVTE NEWS THEME
 * Tema filho do GeneratePress
 * Desenvolvido por Marco Jean
 * https://evte.net/
 * ====================================
 */

/* 
 * Não adicione estilos customizados aqui!
 * Use o arquivo homepage-styles.css para estilos da homepage
 * Use Aparência > Customizar > CSS Adicional para outros estilos
 */

/* Reset básico para compatibilidade */
* {
    box-sizing: border-box;
}

/* Estilos gerais do tema */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

/* Links */
a {
    color: #ff6b6b;
    transition: color 0.3s ease;
}

a:hover {
    color: #e55555;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
}

/* Melhora legibilidade dos posts */
.entry-content {
    font-size: 18px;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5em;
}

/* Imagens responsivas */
img {
    max-width: 100%;
    height: auto;
}

/* Botões personalizados */
.wp-block-button__link,
button,
.button {
    background: #ff6b6b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wp-block-button__link:hover,
button:hover,
.button:hover {
    background: #e55555;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Meta informações dos posts */
.entry-meta {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.entry-meta a {
    color: #7f8c8d;
    text-decoration: none;
}

.entry-meta a:hover {
    color: #ff6b6b;
}

/* Categorias e tags */
.cat-links a,
.tags-links a {
    display: inline-block;
    background: #ecf0f1;
    color: #2c3e50;
    padding: 5px 12px;
    margin: 0 5px 5px 0;
    font-size: 12px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cat-links a:hover,
.tags-links a:hover {
    background: #ff6b6b;
    color: #fff;
}

/* Sidebar widgets */
.sidebar .widget {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.sidebar .widget-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff6b6b;
}

/* Formulário de comentários */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: #ff6b6b;
    outline: none;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    margin-top: 60px;
}

.site-footer a {
    color: #ecf0f1;
}

.site-footer a:hover {
    color: #ff6b6b;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    color: #7f8c8d;
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    background: #ecf0f1;
    color: #2c3e50;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background: #ff6b6b;
    color: #fff;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    border-top-color: #ff6b6b;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsivo - Mobile First */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .entry-content {
        font-size: 16px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
}

/* Print styles */
@media print {
    .sidebar,
    .site-footer,
    .comments-area {
        display: none;
    }
}

/*
 * ====================================
 * FIM DO EVTE NEWS THEME
 * Para customizações adicionais, use:
 * Aparência > Customizar > CSS Adicional
 * ====================================
 */
