/*
Theme Name: Mãos do Bem
Theme URI: https://maosdобem.org
Description: Tema personalizado para o Instituto Mãos do Bem
Version: 1.0
Author: Instituto Mãos do Bem
Author URI: https://maosdобem.org
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maosdobem
*/

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  height: 60px;
  width: auto;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

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

.main-navigation a:hover {
  color: #0066cc;
}

/* Footer */
.site-footer {
  background: #1a2332;
  color: #fff;
  padding: 3rem 0;
  margin-top: 4rem;
  text-align: center;
}

.site-footer .footer-logo {
  margin-bottom: 1.5rem;
}

.site-footer .footer-logo img {
  height: 64px;
  opacity: 0.9;
}

.site-footer .footer-text {
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.site-footer .footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Main Content */
.site-main {
  padding: 3rem 0;
  min-height: 50vh;
}

.entry-header {
  margin-bottom: 2rem;
}

.entry-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.entry-content {
  font-size: 1.125rem;
  line-height: 1.8;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #0066cc;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background: #0052a3;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .main-navigation ul {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .entry-title {
    font-size: 1.75rem;
  }
}
