:root {
  --navy: #14263D;
  --navy-2: #1C3A5C;
  --gold: #A9835A;
  --gold-soft: #C9AD84;
  --stone: #F3EDE3;
  --text: #17212C;
  --muted: #6B7680;
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(10, 20, 40, 0.15);
}

* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); line-height: 1.7; background: var(--white); -webkit-user-select: none; -moz-user-select: none; user-select: none; }
input, textarea, select { -webkit-user-select: text; -moz-user-select: text; user-select: text; }
img { -webkit-user-drag: none; user-drag: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar { position: sticky; top: 0; z-index: 30; background: rgba(13, 32, 54, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 0.92rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #6B4E30); display: grid; place-items: center; color: var(--navy); font-weight: 800; font-size: 0.85rem; }
.nav { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,0.9); }
.nav a { font-size: 0.9rem; letter-spacing: 0.04em; }
.nav-cta { padding: 12px 18px; border-radius: 9px; background: var(--gold); color: var(--navy); font-weight: 700; }

.blog-hero { background: linear-gradient(135deg, #0A1428, #1C3A5C); color: #fff; padding: 64px 0 48px; }
.blog-hero .kicker { color: var(--gold-soft); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.blog-hero h1 { margin: 12px 0 0; font-size: clamp(2rem, 3.4vw, 3rem); letter-spacing: -0.03em; }
.blog-hero p { color: rgba(255,255,255,0.82); max-width: 640px; margin-top: 14px; }

.blog-grid { padding: 56px 0 80px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; }
.post-card { background: var(--stone); border-radius: 20px; overflow: hidden; border: 1px solid rgba(20,38,56,0.10); transition: box-shadow .2s ease, transform .2s ease; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.post-card img { width: 100%; height: 200px; object-fit: cover; }
.post-body { padding: 22px 20px; }
.post-tag { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.post-body h2 { font-size: 1.2rem; margin: 10px 0 8px; }
.post-body p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.article { padding: 56px 0 40px; max-width: 760px; margin: 0 auto; }
.article .kicker { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.article h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.02em; margin: 14px 0 20px; }
.article .lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 28px; }
.article figure { margin: 32px 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.article figcaption { padding: 12px 4px 0; color: var(--muted); font-size: 0.85rem; }
.article h2 { font-size: 1.5rem; margin: 36px 0 14px; letter-spacing: -0.01em; }
.article p { margin: 0 0 18px; color: var(--text); }
.article ul { margin: 0 0 18px; padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article a.inline-link { color: var(--navy); font-weight: 700; text-decoration: underline; }

.breadcrumb { max-width: 760px; margin: 22px auto 0; padding: 0 16px; font-size: 0.8rem; color: var(--muted); }
.breadcrumb a { color: var(--navy); font-weight: 600; }
.breadcrumb span { color: var(--muted); }

.cta-box { margin-top: 40px; padding: 28px; background: var(--navy); color: #fff; border-radius: 20px; }
.cta-box h3, .cta-box p { color: #fff; margin-top: 0; }
.cta-box a.btn { display: inline-flex; margin-top: 14px; padding: 14px 22px; border-radius: 9px; background: var(--gold); color: var(--navy) !important; font-weight: 700; white-space: nowrap; }
.cta-box .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 480px) {
  .cta-box a.btn { width: 100%; justify-content: center; font-size: 0.85rem; }
}
.mid-cta { margin: 32px 0; padding: 22px 24px; background: var(--stone); border-radius: 16px; border: 1px solid rgba(20,38,56,0.10); }
.mid-cta p { margin: 0 0 12px; }
.mid-cta a.btn { display: inline-flex; padding: 12px 20px; border-radius: 9px; background: var(--terra, #C97B52); color: #fff; font-weight: 700; font-size: 0.85rem; white-space: nowrap; }

footer { background: #0A1428; color: rgba(255,255,255,0.75); padding: 36px 0 44px; margin-top: 40px; }
.legal { max-width: 1180px; margin: 0 auto; font-size: 0.78rem; line-height: 1.7; color: rgba(255,255,255,0.55); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}

/* ===== Cabeçalho padrão das LPs da Alexia (logo + menu hambúrguer) ===== */
.header-main { position: sticky; top: 0; z-index: 60; background: rgba(10,20,40,.96); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(195,154,60,.25); }
.header-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 22px; }
.hb { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1 1 auto; overflow: hidden; }
.hb img { flex: 0 0 auto; width: 250px !important; height: auto !important; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .hcta-btn { display: inline-flex; align-items: center; gap: 8px; background: #C97B52; color: #fff; padding: 10px 20px; border-radius: 8px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; white-space: nowrap; }
.hdr-info { text-align: center; line-height: 1.25; }
.hdr-info .r { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--gold-soft); font-weight: 600; line-height: 1.1; }
.hdr-info .n { font-size: 8px; letter-spacing: .13em; text-transform: uppercase; color: #9db3c6; font-weight: 600; margin-top: 3px; }
.hdr-div { width: 1px; height: 32px; background: rgba(255,255,255,.18); flex: 0 0 auto; }
.nav-toggle { display: none; flex: 0 0 auto; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 38px; background: transparent; border: 1px solid rgba(195,154,60,.45); border-radius: 8px; cursor: pointer; padding: 0 9px; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--gold-soft); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 85; }
.mainnav { background: rgba(11,58,99,.94); border-bottom: 1px solid rgba(195,154,60,.18); backdrop-filter: blur(8px); }
.mainnav-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; padding: 0 22px; }
.mainnav a { color: #d3dde6; font-size: 12px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; padding: 12px 14px; white-space: nowrap; transition: .2s; }
.mainnav a:hover, .mainnav a.blog-link { color: var(--gold-soft); }
.nav-foot { display: none; }

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .header-cta .hcta-btn, .header-cta .hdr-div { display: none; }
  .hdr-info { text-align: center; flex-shrink: 1; min-width: 0; }
  .hdr-info .r { font-size: clamp(9px,3vw,13px); white-space: nowrap; }
  .hdr-info .n { font-size: clamp(5.5px,1.8vw,7.5px); white-space: nowrap; }
  .header-inner { gap: 6px; padding: 9px 16px; flex-wrap: nowrap; }
  .header-cta { gap: 8px; flex: 0 0 auto; }
  .hb img { width: clamp(130px,44vw,170px) !important; height: auto !important; }
  .mainnav { position: fixed; top: 0; right: 0; height: 100dvh; width: min(82vw,320px); transform: translateX(105%); transition: transform .32s ease; z-index: 90; box-shadow: -12px 0 44px rgba(0,0,0,.45); background: linear-gradient(180deg,rgba(10,20,40,.72),rgba(10,20,40,.90) 55%,rgba(10,20,40,.97)), url('../img/hero-fachada.jpg') center/cover no-repeat; overflow-y: auto; }
  .mainnav.open { transform: translateX(0); }
  .nav-overlay.open { display: block; }
  .mainnav-inner { flex-direction: column; align-items: stretch; padding: 64px 0 26px; min-height: 100dvh; }
  .mainnav a { padding: 15px 26px; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 13px; }
  .nav-foot { display: block; margin-top: auto; padding: 22px 24px 6px; }
  .nav-foot img { width: 100%; height: 120px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; border: 1px solid rgba(195,154,60,.25); background: linear-gradient(160deg,#14263D,#0A1428); }
  .nav-foot .role { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }
  .nav-foot b { font-family: 'Cormorant Garamond', serif; color: var(--gold-soft); font-size: 17px; display: block; margin: 2px 0; }
  .nav-foot p { font-size: 11.5px; color: #95aebb; }
}
