/*
Theme Name: Juliana Araujo Advocacia
Theme URI: https://julianaaraujoadvocacia.com
Author: Juliana Araujo Advocacia & Consultoria
Author URI: https://julianaaraujoadvocacia.com
Description: Tema profissional para o escritório Juliana Araujo Advocacia & Consultoria. Navy #010423, dourado #BC943F, tipografia elegante.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: juliana-araujo
*/

/* =============================================
   VARIÁVEIS & RESET
============================================= */
:root {
  color-scheme: light only;
  --navy:       #010423;
  --navy-mid:   #0D1F6B;
  --gold:       #BC943F;
  --gold-light: #F0D898;
  --gold-pale:  #FBF5E6;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --gray-100:   #F2F1EE;
  --gray-300:   #C8C5BE;
  --gray-500:   #7A7670;
  --gray-700:   #3A3830;
  --text:       #1A1810;
  --green-cta:  #1E8A55;
  --green-hover:#176640;
}

@media (prefers-color-scheme: dark) {
  html, body { background-color: #F8F7F4 !important; color: #1A1810 !important; }
  * { background-color: inherit; color: inherit; }
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: light only; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white) !important;
  color: var(--text) !important;
  overflow-x: hidden;
  padding-top: 64px;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.2s, background 0.2s; }

/* =============================================
   TIPOGRAFIA
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy) !important;
}
p { line-height: 1.75; color: var(--gray-500) !important; }
strong { color: var(--navy) !important; font-weight: 600; }

/* =============================================
   UTILITÁRIOS
============================================= */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }
.bg-white  { background: var(--white) !important; }
.bg-off    { background: var(--off-white) !important; }
.bg-navy   { background: var(--navy) !important; }
.bg-gold-pale { background: var(--gold-pale) !important; }
.text-center { text-align: center; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-eyebrow.center { justify-content: center; }
.section-eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy) !important;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold) !important; }
.section-title.light { color: #fff !important; }
.section-title.light em { color: var(--gold-light) !important; }

/* Botões */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy) !important; }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--gold-light) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-cta);
  color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(30,138,85,0.4);
}
.btn-green:hover { background: var(--green-hover); transform: translateY(-2px); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-gold:hover { border-color: var(--gold); color: var(--gold-light) !important; }

/* Grid geométrico decorativo */
.geo-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(188,148,63,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188,148,63,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* =============================================
   NAVEGAÇÃO
============================================= */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  box-shadow: 0 1px 0 rgba(188,148,63,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: #fff !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
}
#primary-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
#primary-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
}
#primary-menu a:hover,
#primary-menu .current-menu-item a { color: var(--gold-light) !important; }
#primary-menu .menu-cta a {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 700;
}
#primary-menu .menu-cta a:hover { background: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span { width: 24px; height: 2px; background: #fff; display: block; }

/* =============================================
   HERO — PÁGINA INICIAL
============================================= */
.hero-home {
  background: var(--navy);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}
.hero-home::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(188,148,63,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188,148,63,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 70%;
  background: radial-gradient(ellipse at bottom right, rgba(188,148,63,0.12) 0%, transparent 65%);
}
.hero-home .hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span { font-size: 0.72rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.hero-home h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff !important;
  margin-bottom: 24px;
}
.hero-home h1 em { font-style: italic; color: var(--gold-light) !important; }
.hero-home .hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65) !important;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo-wrap {
  position: relative;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid rgba(188,148,63,0.3);
  border-radius: 2px;
}
.hero-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  filter: grayscale(15%);
}
.hero-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 2px;
  z-index: 2;
}
.hero-badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  display: block;
  line-height: 1;
  color: var(--navy) !important;
}
.hero-badge span { font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--navy) !important; }

/* =============================================
   NÚMEROS
============================================= */
.numeros-bar {
  background: var(--gold-pale) !important;
  border-top: 1px solid rgba(188,148,63,0.2);
  border-bottom: 1px solid rgba(188,148,63,0.2);
  padding: 48px 24px;
}
.numeros-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.numero-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--navy) !important;
  line-height: 1;
  margin-bottom: 6px;
}
.numero-val span { color: var(--gold) !important; }
.numero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500) !important;
}

/* =============================================
   CARDS DE ÁREA (HOME)
============================================= */
.areas-home { padding: 100px 24px; background: var(--navy) !important; position: relative; overflow: hidden; }
.areas-home::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(188,148,63,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188,148,63,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.areas-home .inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.areas-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.areas-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.area-card-home {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(188,148,63,0.2);
  padding: 32px 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.area-card-home::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.area-card-home:hover { background: rgba(255,255,255,0.1); }
.area-card-home:hover::after { transform: scaleX(1); }
.area-card-home .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(188,148,63,0.2) !important;
  line-height: 1;
  margin-bottom: 12px;
}
.area-card-home .icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.area-card-home h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 8px;
}
.area-card-home p { font-size: 0.8rem; line-height: 1.6; color: rgba(255,255,255,0.75) !important; }

/* =============================================
   DIFERENCIAIS
============================================= */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dif-card {
  background: var(--white) !important;
  border-radius: 4px;
  padding: 36px 28px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.dif-card:hover { border-bottom-color: var(--gold); box-shadow: 0 8px 32px rgba(1,4,35,0.08); }
.dif-icon { width: 48px; height: 48px; background: var(--gold-pale); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; }
.dif-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy) !important; margin-bottom: 10px; }
.dif-card p { font-size: 0.85rem; line-height: 1.7; color: var(--gray-500) !important; }

/* =============================================
   BLOG — LISTAGEM DE ARTIGOS
============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: var(--white) !important;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { box-shadow: 0 8px 32px rgba(1,4,35,0.08); }
.post-card .post-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-cat {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light) !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  text-decoration: none;
  margin-bottom: 12px;
  width: fit-content;
}
.post-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy) !important; line-height: 1.4; margin-bottom: 10px; }
.post-card h3 a { text-decoration: none; color: var(--navy) !important; }
.post-card h3 a:hover { color: var(--gold) !important; }
.post-card p { font-size: 0.83rem; line-height: 1.65; color: var(--gray-500) !important; flex: 1; }
.post-card .read-more { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; color: var(--gold) !important; text-decoration: none; margin-top: 16px; }
.post-meta { font-size: 0.74rem; color: var(--gray-300) !important; margin-bottom: 8px; }

/* Artigo individual */
.single-post { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.single-post h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--navy) !important; margin-bottom: 24px; line-height: 1.2; }
.single-post .post-content p { font-size: 1rem; line-height: 1.85; color: var(--gray-700) !important; margin-bottom: 20px; }
.single-post .post-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--navy) !important; margin: 36px 0 16px; }
.single-post .post-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy) !important; margin: 28px 0 12px; }
.single-post .post-content ul, .single-post .post-content ol { padding-left: 20px; margin-bottom: 20px; }
.single-post .post-content li { font-size: 0.97rem; line-height: 1.75; color: var(--gray-700) !important; margin-bottom: 8px; }
.single-post .post-content blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; background: var(--gold-pale); margin: 32px 0; border-radius: 0 4px 4px 0; }
.single-post .post-content blockquote p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; color: var(--navy) !important; }

/* Disclaimer OAB no final de cada artigo */
.post-disclaimer {
  background: var(--gray-100);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin-top: 48px;
  border-radius: 0 4px 4px 0;
  font-size: 0.8rem;
  color: var(--gray-500) !important;
  font-style: italic;
  line-height: 1.6;
}

/* =============================================
   PAGINAÇÃO
============================================= */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 60px; }
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: 2px;
  font-size: 0.85rem;
  color: var(--navy) !important;
  text-decoration: none;
  transition: all 0.2s;
}
.pagination a:hover, .pagination .current { background: var(--navy); color: #fff !important; border-color: var(--navy); }

/* =============================================
   HERO INTERNO (Sobre, Áreas, etc.)
============================================= */
.hero-inner-page {
  background: var(--navy);
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}
.hero-inner-page::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(188,148,63,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188,148,63,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner-page::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(188,148,63,0.1) 0%, transparent 65%);
}
.hero-inner-page .inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.hero-inner-page h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 300; color: #fff !important; line-height: 1.1; margin-bottom: 16px; }
.hero-inner-page h1 em { font-style: italic; color: var(--gold-light) !important; }
.hero-inner-page .desc { font-size: 1rem; color: rgba(255,255,255,0.6) !important; line-height: 1.7; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 0.75rem; color: rgba(255,255,255,0.4) !important; }
.breadcrumb a { color: rgba(255,255,255,0.4) !important; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light) !important; }
.breadcrumb .sep { color: var(--gold) !important; }

/* =============================================
   CTA BANNER
============================================= */
.cta-banner { padding: 100px 24px; text-align: center; }
.cta-banner.navy { background: var(--navy) !important; position: relative; overflow: hidden; }
.cta-banner.navy::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(188,148,63,0.1) 0%, transparent 65%); }
.cta-banner.gold { background: var(--gold-pale) !important; border-top: 1px solid rgba(188,148,63,0.2); }
.cta-banner .inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 2; }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 18px; line-height: 1.25; }
.cta-banner.navy h2 { color: #fff !important; }
.cta-banner.navy h2 em { color: var(--gold-light) !important; }
.cta-banner.gold h2 { color: var(--navy) !important; }
.cta-banner.gold h2 em { color: var(--gold) !important; }
.cta-banner p { font-size: 0.97rem; line-height: 1.7; margin-bottom: 36px; }
.cta-banner.navy p { color: rgba(255,255,255,0.6) !important; }
.cta-banner.gold p { color: var(--gray-500) !important; }
.cta-note { margin-top: 16px; font-size: 0.76rem; }
.cta-banner.navy .cta-note { color: rgba(255,255,255,0.3) !important; }
.cta-banner.gold .cta-note { color: var(--gray-300) !important; }

/* =============================================
   FOOTER
============================================= */
#site-footer {
  background: #00021A !important;
  padding: 60px 24px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: #fff !important;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-logo-text span { color: var(--gold) !important; }
.footer-brand p { font-size: 0.83rem; line-height: 1.75; color: rgba(255,255,255,0.4) !important; max-width: 280px; }
.footer-col h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold) !important; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.45) !important; text-decoration: none; }
.footer-col ul li a:hover { color: var(--gold-light) !important; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom span { font-size: 0.74rem; color: rgba(255,255,255,0.25) !important; }
.footer-oab { color: rgba(255,255,255,0.35) !important; }

/* WhatsApp flutuante */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  background: #25D366;
  color: #fff !important;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: pulseWa 2.5s infinite;
}
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.75); }
}

/* Animações */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim   { animation: fadeUp 0.8s ease both; }
.anim-2 { animation: fadeUp 0.8s 0.15s ease both; }
.anim-3 { animation: fadeUp 0.8s 0.3s ease both; }

/* =============================================
   RESPONSIVO
============================================= */
@media (max-width: 900px) {
  .hero-home .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-home .hero-desc { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-photo-wrap { max-width: 320px; margin: 0 auto; }
  .numeros-grid { grid-template-columns: repeat(2,1fr); }
  .areas-grid-home { grid-template-columns: repeat(2,1fr); }
  .dif-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  #primary-menu { display: none; }
  .nav-hamburger { display: flex; }
  .areas-grid-home { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: repeat(2,1fr); }
}
