/*
Theme Name: Seed Digital
Theme URI: https://github.com/seed-digital/seed-digital
Author: Seed Digital
Author URI: https://seed-digital.com
Description: Tema WordPress moderno e responsivo desenvolvido do zero para Seed Digital. Inclui suporte completo a Block Editor, recursos de acessibilidade e otimizações de performance.
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
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: seed-digital
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks, editor-style, full-site-editing, blog, portfolio, business, e-commerce, one-column, two-columns, three-columns, left-sidebar, right-sidebar, flexible-header, accessibility-ready
*/

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

body {
	font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
	margin: 0;
	padding: 0;
}

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

/* Header - Estilos principais estão em assets/css/main.css */

/* Content */
.site-main {
	min-height: 60vh;
}

/* Footer - Base styles moved to main.css */
.site-footer {
	margin-top: 4rem;
}

/* Posts */
.post {
	margin-bottom: 3rem;
}

.post-title {
	margin-bottom: 1rem;
}

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

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

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

.post-content {
	margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
	.site-header .site-container {
		flex-direction: column;
		gap: 1rem;
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}

