/*
Theme Name: ProCabello Theme
Theme URI: https://procabello.com
Author: ProCabello
Author URI: https://procabello.com
Description: Tema WordPress simples e limpo com fundo branco para o Instituto ProCabello
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: procabello
Tags: white-background, clean, simple, responsive
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos gerais */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    font-size: 16px;
}

/* Container principal */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

/* Header */
.site-header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.site-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.site-title a {
    color: #333333;
    text-decoration: none;
}

.site-title a:hover {
    color: #000000;
}

.site-description {
    font-size: 16px;
    color: #666666;
}

/* Conteúdo principal */
.site-main {
    background-color: #ffffff;
    padding: 20px 0;
}

/* Posts */
.post {
    background-color: #ffffff;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.post:last-child {
    border-bottom: none;
}

.post-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.post-title a {
    color: #333333;
    text-decoration: none;
}

.post-title a:hover {
    color: #000000;
}

.post-meta {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

.post-content {
    color: #333333;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 15px;
}

.post-content a {
    color: #0066cc;
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    background-color: #ffffff;
    padding: 20px;
}

.widget {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.widget:last-child {
    border-bottom: none;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333333;
}

/* Footer */
.site-footer {
    background-color: #ffffff;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #666666;
    font-size: 14px;
}

/* Navegação */
.main-navigation {
    margin-top: 20px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.main-navigation a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #000000;
}

/* Responsividade */
@media (max-width: 768px) {
    .site-container {
        padding: 15px;
    }
    
    .site-title {
        font-size: 24px;
    }
    
    .post-title {
        font-size: 22px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Estilos para comentários */
.comments-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.comment-list {
    list-style: none;
    margin-top: 20px;
}

.comment {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 10px;
}

.comment-meta {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
}

.comment-content {
    color: #333333;
    line-height: 1.6;
}

/* Formulários */
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    background-color: #ffffff;
    color: #333333;
}

input[type="submit"],
button {
    background-color: #333333;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover,
button:hover {
    background-color: #000000;
}

/* Imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

