/*
Theme Name: Meu Tema Custom
Description: Um tema WordPress personalizado e responsivo
Author: Seu Nome
Version: 1.0.0
Text Domain: meu-tema
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.site-header {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: #FBFC15;
}

.site-title:hover {
    color: #fff;
}

/* Navegação */
.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FBFC15;
}

/* Conteúdo principal */
.site-main {
    padding: 2rem 0;
    min-height: 60vh;
}

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

/* Posts */
.post {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.post-title a {
    color: #000;
    text-decoration: none;
}

.post-title a:hover {
    color: #666;
}

.post-meta {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-content {
    line-height: 1.8;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #FBFC15;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #000;
    color: #FBFC15;
}

/* Sidebar */
.sidebar {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000;
}

/* Footer */
.site-footer {
    background-color: #212121;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h3 {
    margin-bottom: 1rem;
    color: #FBFC15;
}

.footer-bottom {
    border-top: 1px solid #424242;
    padding-top: 1rem;
    margin-top: 2rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .content-area {
        grid-template-columns: 1fr;
    }
    
    .main-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .post {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Utilitários */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }