/*
Theme Name: MeuTema G1 Style
Theme URI: https://seudominio.com/
Author: Você
Description: Tema inspirado no G1 com menu offcanvas, logo centralizada e busca.
Version: 1.0
License: GPLv2 or later
Text Domain: meutema
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9!important;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

header .logo {
  flex: 1;
  text-align: center;
}

header .menu-toggle,
header .search-icon {
  cursor: pointer;
  font-size: 20px;
  padding: 10px;
}

.widget {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e1e1e1;
}

.widget-title {
        border-bottom: 1px solid #ddd!important;
    padding-bottom: 1rem!important;
    padding-top: 0.5rem!important;
}

ol, ul {
    padding-left: 0!important;
}

.img-fluid-post {
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
}

.custom-logo {
    max-width: 70px;
    max-height: 40px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  left: -350px;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0,0,0,.2);
  transition: left .3s ease;
  padding: 20px;
  z-index: 999;
}

.offcanvas-menu.active {
  left: 0;
}
