/*
Theme Name: Tema Personalizado
Theme URI: https://seusite.com
Author: Seu Nome
Author URI: https://seusite.com
Description: Um tema WordPress moderno e responsivo
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tema-personalizado
Tags: responsive, modern, clean
*/

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

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

/* Header */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.site-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-title a:hover {
  color: #3498db;
}

.site-description {
  color: #7f8c8d;
  font-size: 14px;
  margin-top: 5px;
}

/* Navegação */
.main-navigation {
  margin-top: 20px;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.main-navigation a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: #3498db;
}

/* Conteúdo Principal */
.site-content {
  padding: 40px 0;
  min-height: 60vh;
}

.content-area {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Posts */
.post {
  margin-bottom: 60px;
}

.entry-header {
  margin-bottom: 30px;
}

.entry-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.entry-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-title a:hover {
  color: #3498db;
}

.entry-meta {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 20px;
}

.entry-meta a {
  color: #3498db;
  text-decoration: none;
}

.entry-content {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.entry-content ul,
.entry-content ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

/* Botões */
.read-more,
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.read-more:hover,
.btn:hover {
  background-color: #2980b9;
}

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

.footer-content {
  text-align: center;
}

.footer-content a {
  color: #3498db;
  text-decoration: none;
}

/* Sidebar */
.widget-area {
  margin-top: 40px;
}

.widget {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
}

.widget ul {
  list-style: none;
}

.widget li {
  padding: 8px 0;
  border-bottom: 1px solid #ecf0f1;
}

.widget li:last-child {
  border-bottom: none;
}

.widget a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.widget a:hover {
  color: #3498db;
}

/* Comentários */
.comments-area {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #ecf0f1;
}

.comment-list {
  list-style: none;
}

.comment {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

/* Responsivo */
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    gap: 15px;
  }

  .entry-title {
    font-size: 28px;
  }

  .content-area {
    padding: 20px;
  }

  .entry-content {
    font-size: 16px;
  }
}
