/* Zona Guia — guidzone.online */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; color: #1c1c1c; background: #fff; line-height: 1.5; }
a { color: #1a5276; text-decoration: none; }
a:hover { text-decoration: underline; color: #e67e22; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; background: #1a5276; color: #fff; padding: 10px 22px; border-radius: 2px; font-weight: 700; font-size: 14px; border: none; cursor: pointer; transition: background 0.2s; }
.btn:hover { background: #e67e22; color: #fff; text-decoration: none; }
.btn-outline { background: transparent; border: 2px solid #1a5276; color: #1a5276; }
.btn-outline:hover { background: #1a5276; color: #fff; }

/* HEADER */
.site-header { background: #1a5276; color: #fff; padding: 16px 0; }
.header-inner { max-width: 900px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-logo { font-family: Georgia, 'Times New Roman', serif; font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.site-tagline { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 3px; }

/* NAV */
.main-nav { background: #f0f4f8; border-bottom: 3px solid #1a5276; }
.nav-inner { max-width: 900px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 0; }
.main-nav a { display: inline-block; padding: 12px 16px; font-size: 13px; font-weight: 700; color: #1c1c1c; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 3px solid transparent; margin-bottom: -3px; transition: all 0.2s; }
.main-nav a:hover, .main-nav a.active { color: #1a5276; border-bottom-color: #1a5276; text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 22px; padding: 8px; }

/* HERO */
.hero { background: #1a5276; color: #fff; padding: 50px 0; }
.hero-inner { max-width: 900px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: 36px; line-height: 1.1; margin-bottom: 16px; }
.hero p { font-size: 16px; opacity: 0.9; margin-bottom: 24px; }
.hero-image { border-radius: 2px; overflow: hidden; }

/* ARTICLE CARDS */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 30px 0; }
.article-card { border-radius: 2px; overflow: hidden; transition: transform 0.2s; }
.article-card:hover { transform: translateY(-3px); }
.card-image { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 16px; }
.card-category { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #e67e22; letter-spacing: 1px; margin-bottom: 8px; }
.card-title { font-family: Georgia, 'Times New Roman', serif; font-size: 17px; line-height: 1.3; margin-bottom: 8px; color: #1c1c1c; font-weight: 700; }
.card-excerpt { font-size: 13px; color: #6b7280; line-height: 1.5; }
.card-meta { font-size: 12px; color: #6b7280; margin-top: 10px; }

/* ARTICLE PAGE */
.article-content { max-width: 720px; margin: 0 auto; padding: 30px 0; }
.article-content h1 { font-family: Georgia, 'Times New Roman', serif; font-size: 32px; line-height: 1.2; margin-bottom: 16px; }
.article-content p { margin-bottom: 18px; font-size: 16px; line-height: 1.8; }
.meta { font-size: 13px; color: #6b7280; margin-bottom: 20px; }
.author-box { background: #f0f4f8; padding: 20px; border-radius: 2px; margin-top: 30px; border-left: 4px solid #1a5276; }
.author-name { font-weight: 700; font-size: 15px; color: #1a5276; }
.author-bio { font-size: 13px; color: #6b7280; margin-top: 4px; }

/* SECTIONS */
.section { padding: 40px 0; }
.section-title { font-family: Georgia, 'Times New Roman', serif; font-size: 22px; font-weight: 900; margin-bottom: 24px; padding-bottom: 10px; border-bottom: 3px solid #1a5276; color: #1c1c1c; }
.section-title span { color: #1a5276; }

/* PAGE HEADER */
.page-header { background: #f0f4f8; padding: 30px 0; border-bottom: 3px solid #1a5276; margin-bottom: 30px; }
.page-header h1 { font-family: Georgia, 'Times New Roman', serif; font-size: 28px; color: #1a5276; }
.page-header p { color: #6b7280; margin-top: 6px; }

/* SIDEBAR */
.sidebar-widget { background: #f0f4f8; padding: 20px; border-radius: 2px; margin-bottom: 24px; }
.sidebar-widget h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 15px; font-weight: 700; margin-bottom: 14px; border-bottom: 2px solid #1a5276; padding-bottom: 8px; }
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 13px; }
.sidebar-list li:last-child { border-bottom: none; }

/* FOOTER */
.site-footer { background: #1a5276; color: rgba(255,255,255,0.85); padding: 40px 0 20px; margin-top: 60px; }
.footer-inner { max-width: 900px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand { font-family: Georgia, 'Times New Roman', serif; font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.footer-desc { font-size: 13px; opacity: 0.8; line-height: 1.6; }
.footer-links h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; color: #fff; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 13px; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { max-width: 900px; margin: 30px auto 0; padding: 20px 20px 0; border-top: 1px solid rgba(255,255,255,0.2); display: flex; justify-content: space-between; font-size: 12px; opacity: 0.7; }

/* CONTACT FORM */
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 2px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #1a5276; }

/* COOKIE NOTICE */
#cookie-notice { position: fixed; bottom: 0; left: 0; right: 0; background: #222; color: #fff; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 999; font-size: 13px; }
#cookie-notice a { color: #e67e22; }
#cookie-notice button { background: #e67e22; color: #fff; border: none; padding: 8px 18px; border-radius: 2px; cursor: pointer; font-size: 13px; font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner, .article-grid, .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .nav-inner { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .nav-links { display: none; width: 100%; flex-direction: column; }
  .nav-links.open { display: flex; }
  .main-nav a { padding: 10px 0; border-bottom: 1px solid #eee; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
