/* V2026.05.12 - 12/05/26 14:34 BRT */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@500;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --azul-executivo: #1f2b53;
  --azul-profundo: #16131d;
  --vinho-sofisticado: #8b1e3f;
  --bege-neutro: #b2a99b;
  --cinza-elegante: #8a867b;
  --cinza-claro: #d3d0d4;
  --branco: #ffffff;
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 8px 24px rgba(22, 19, 29, 0.12);
  --header-height: 130px;
}

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

/* ========================================
   Acessibilidade
   ======================================== */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--azul-executivo);
  color: var(--branco);
  padding: 10px 20px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 6px 0;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--azul-profundo);
  background: linear-gradient(180deg, #ffffff 0%, #f4f3f5 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.header-topbar {
  background: var(--azul-profundo);
  color: var(--cinza-claro);
  border-bottom: 1px solid rgba(211, 208, 212, 0.18);
}

.header-topbar__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  font-size: 0.84rem;
}

.header-topbar__left,
.header-topbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-topbar__link:hover {
  color: var(--branco);
}

.header-main {
  background: var(--azul-profundo);
  border-bottom: 1px solid rgba(211, 208, 212, 0.12);
}

.header-main__wrap {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: block;
}

.brand__title {
  margin: 0 0 0.2rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 1vw + 1.1rem, 1.45rem);
  line-height: 1.1;
  color: var(--branco);
}

.brand__subtitle {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bege-neutro);
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.main-nav__link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(211, 208, 212, 0.88);
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: background-color 120ms ease, color 120ms ease;
}

.main-nav__link:hover,
.main-nav__link.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--branco);
}

/* Hamburguer — oculto no desktop, visível via media query */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: transparent;
  border: 1px solid rgba(211, 208, 212, 0.3);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cinza-claro);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 30, 63, 0.15);
  background: linear-gradient(135deg, var(--vinho-sofisticado), #aa2a4f);
  color: var(--branco);
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 120ms ease, filter 120ms ease;
}

.header-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(178, 169, 155, 0.18), transparent 46%),
    radial-gradient(circle at 88% 88%, rgba(139, 30, 63, 0.14), transparent 40%),
    var(--azul-profundo);
  color: var(--cinza-claro);
}

/* CTA */
.footer-cta {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-bottom: 1px solid rgba(211, 208, 212, 0.14);
}

.footer-cta__card {
  padding: clamp(1.1rem, 2.2vw, 1.8rem) clamp(1.2rem, 2.5vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(31, 43, 83, 0.9) 0%, rgba(22, 19, 29, 0.9) 100%);
  border: 1px solid rgba(178, 169, 155, 0.22);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
}

.footer-cta__foto-wrap {
  flex-shrink: 0;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--vinho-sofisticado) 0%, var(--bege-neutro) 55%, var(--azul-executivo) 100%);
}

.footer-cta__foto {
  display: block;
  width: 124px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 8%;
  border: 4px solid var(--azul-profundo);
}

.footer-cta__content {
  display: grid;
  gap: 1rem;
}

.footer-cta__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 1vw + 1rem, 1.9rem);
  color: var(--branco);
}

.footer-cta__text {
  margin: 0;
  max-width: 64ch;
  color: rgba(211, 208, 212, 0.92);
  line-height: 1.6;
}

.footer-cta__button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.72rem 1.3rem;
  border-radius: var(--radius-md);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--branco);
  background: linear-gradient(140deg, var(--vinho-sofisticado), #b13258);
  transition: filter 150ms ease, transform 150ms ease;
}

.footer-cta__button:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Main grid — 4 colunas */
.footer-main {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr 1fr 0.7fr;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  align-items: start;
}

.footer-title {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bege-neutro);
}

/* Col 1 — Brand */
.footer-brand__name {
  margin: 0 0 0.2rem;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: var(--branco);
}

.footer-brand__role {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bege-neutro);
}

.footer-brand__creci,
.footer-brand__city {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: rgba(211, 208, 212, 0.7);
}

.footer-brand__quote {
  margin: 1rem 0 0;
  padding: 0.75rem 0 0.75rem 0.9rem;
  border-left: 2px solid rgba(178, 169, 155, 0.35);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(211, 208, 212, 0.82);
}

/* Col 2 — Navegação */
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-nav__link {
  font-size: 0.9rem;
  color: rgba(211, 208, 212, 0.85);
  transition: color 120ms ease;
}

.footer-nav__link:hover {
  color: var(--branco);
}

.footer-nav__link--legal {
  font-size: 0.82rem;
  color: rgba(211, 208, 212, 0.5);
  margin-top: 0.25rem;
}

.footer-nav__link--legal:hover {
  color: rgba(211, 208, 212, 0.85);
}

/* Col 3 — Contato */
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-contact__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(211, 208, 212, 0.85);
  transition: color 120ms ease;
}

.footer-contact__link:hover {
  color: var(--branco);
}

.footer-contact__link--plain {
  cursor: default;
}

.footer-contact__link i {
  width: 15px;
  flex-shrink: 0;
  color: var(--bege-neutro);
  font-size: 0.85rem;
}

/* Col 4 — Redes Sociais */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(211, 208, 212, 0.2);
  color: rgba(211, 208, 212, 0.8);
  font-size: 0.95rem;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.footer-social__icon:hover {
  background: var(--vinho-sofisticado);
  border-color: var(--vinho-sofisticado);
  color: var(--branco);
  transform: translateY(-2px);
}

/* Legal bar */
.footer-legal {
  border-top: 1px solid rgba(211, 208, 212, 0.1);
  padding: 1rem 0 0;
}

.footer-legal__wrap {
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal__copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(211, 208, 212, 0.55);
}

.footer-legal__dev {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(211, 208, 212, 0.45);
}

.footer-legal__dev-link {
  color: var(--bege-neutro);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 120ms ease;
}

.footer-legal__dev-link:hover {
  color: var(--branco);
}

/* Mobile */
@media (max-width: 1024px) {
  .container {
    padding-inline: 20px;
  }

  .header-main__wrap {
    flex-wrap: wrap;
    align-items: center;
    min-height: 130px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 0.75rem;
    border-top: 1px solid rgba(211, 208, 212, 0.12);
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav__link {
    border-radius: 6px;
    padding: 0.7rem 0.8rem;
  }

  .brand__title {
    font-size: clamp(1rem, 1vw + 0.85rem, 1.45rem);
  }

  .scroll-top {
    width: 44px;
    height: 44px;
    bottom: 149px;
    right: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-topbar__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0.55rem 0;
  }

  .header-cta {
    width: 100%;
  }

  .container {
    padding-inline: 15px;
  }

  .brand__title {
    font-size: clamp(0.95rem, 1vw + 0.8rem, 1.2rem);
  }

  .footer-main {
    padding: 2.5rem 0;
  }

  .footer-cta__card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-cta__button {
    justify-self: center;
  }

  .footer-socials {
    max-width: 230px;
  }

  .wa-float {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    bottom: 68px;
    right: 16px;
  }

  .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 132px;
    right: 16px;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-group > * {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    min-height: unset;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal__wrap {
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* ========================================
   WhatsApp Float
   ======================================== */
.wa-float {
  position: fixed;
  bottom: 76px;
  right: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 200ms ease, filter 200ms ease;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.08);
  filter: brightness(1.06);
  color: #fff;
}

/* ========================================
   Scroll to Top
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 149px;
  right: 26.5px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--azul-executivo);
  color: var(--branco);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(31, 43, 83, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease, transform 200ms ease, background-color 150ms ease;
}

.scroll-top.visivel {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--vinho-sofisticado);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(139, 30, 63, 0.4);
}

/* ========================================
   CTA group (botões lado a lado / mobile)
   ======================================== */
.cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ========================================
   Page Hero (compartilhado entre páginas)
   ======================================== */
.page-hero {
  min-height: 250px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--azul-profundo) 0%, var(--azul-executivo) 100%);
  color: var(--branco);
}

.page-hero .container {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
}

.page-hero__title {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
}

.page-hero__text {
  margin: 0;
  max-width: 60ch;
  color: rgba(211, 208, 212, 0.95);
  font-size: 1.05rem;
}

/* ========================================
   Contato
   ======================================== */
.contato-section {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contato-form-wrap__title {
  margin: 0 0 0.3rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  color: var(--azul-executivo);
}

.contato-form-wrap__sub {
  margin: 0 0 1.5rem;
  color: var(--cinza-elegante);
}

/* Formulário */
.contact-form {
  display: grid;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--azul-executivo);
}

.form-label abbr {
  text-decoration: none;
  color: var(--vinho-sofisticado);
  margin-left: 0.15rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid var(--cinza-claro);
  border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--azul-profundo);
  background: var(--branco);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--azul-executivo);
  box-shadow: 0 0 0 3px rgba(31, 43, 83, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-hint {
  margin: -0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--cinza-elegante);
}

.form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.form-check__input {
  margin-top: 0.18rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--azul-executivo);
  cursor: pointer;
}

.form-check__label {
  font-size: 0.87rem;
  color: var(--cinza-elegante);
  line-height: 1.5;
  cursor: pointer;
}

.form-check__label a {
  color: var(--azul-executivo);
  text-decoration: underline;
}

.form-check__label abbr {
  text-decoration: none;
  color: var(--vinho-sofisticado);
}

.form-btn {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--azul-executivo), #2d3f7a);
  color: var(--branco);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter 150ms ease, transform 150ms ease;
}

.form-btn:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.form-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-feedback {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.form-feedback--ok {
  background: rgba(22, 80, 50, 0.08);
  border: 1.5px solid rgba(22, 80, 50, 0.25);
  color: #165032;
}

.form-feedback--erro {
  background: rgba(139, 30, 63, 0.07);
  border: 1.5px solid rgba(139, 30, 63, 0.22);
  color: var(--vinho-sofisticado);
}

/* Cores de alto contraste para o feedback na sidebar escura */
.sidebar-widget--cta .form-feedback--ok {
  background: #27ae60;
  border: 1.5px solid #2ecc71;
  color: #ffffff;
}

.sidebar-widget--cta .form-feedback--erro {
  background: var(--vinho-sofisticado);
  border: 1.5px solid #ff4d6d;
  color: #ffffff;
}

/* Sidebar de informações */
.contato-info {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  background: color-mix(in srgb, var(--azul-executivo) 5%, var(--branco) 95%);
  border: 1px solid rgba(31, 43, 83, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 2.5vw, 2rem);
}

.contato-info__title {
  margin: 0 0 1.2rem;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--azul-executivo);
}

.info-list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.info-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(31, 43, 83, 0.08);
  color: var(--azul-executivo);
  font-size: 0.95rem;
}

.info-item__body {
  display: grid;
  gap: 0.15rem;
}

.info-item__label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cinza-elegante);
}

.info-item__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--azul-profundo);
}

.info-item__value:hover {
  color: var(--azul-executivo);
}

.info-socials__title {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cinza-elegante);
}

.info-socials__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.info-social__link {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 43, 83, 0.2);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--azul-executivo);
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.info-social__link:hover {
  background: var(--azul-executivo);
  border-color: var(--azul-executivo);
  color: var(--branco);
}

/* Footer CTA responsivo */
@media (max-width: 640px) {
  .footer-cta__card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-cta__button {
    justify-self: center;
  }
}

/* Responsivo contato */
@media (max-width: 960px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .contato-info {
    position: static;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-btn {
    width: 100%;
    justify-self: stretch;
  }
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.faq-inner {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 3rem;
}

.faq-category__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid rgba(31, 43, 83, 0.1);
}

.faq-category__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(139, 30, 63, 0.08);
  color: var(--vinho-sofisticado);
  font-size: 1rem;
}

.faq-category__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-executivo);
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  background: var(--branco);
  border: 1px solid rgba(31, 43, 83, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--azul-executivo);
  line-height: 1.45;
  transition: background-color 120ms ease, color 120ms ease;
}

.faq-btn:hover {
  background: rgba(31, 43, 83, 0.03);
}

.faq-btn[aria-expanded="true"] {
  color: var(--vinho-sofisticado);
}

.faq-btn__icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--vinho-sofisticado);
  transition: transform 250ms ease;
}

.faq-btn[aria-expanded="true"] .faq-btn__icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.faq-answer.aberta {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  overflow: hidden;
  padding: 0 1.25rem;
  transition: padding 280ms ease;
}

.faq-answer.aberta .faq-answer__inner {
  padding: 0 1.25rem 1.25rem;
}

.faq-answer__inner p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--cinza-elegante);
  line-height: 1.72;
}

/* CTA do FAQ */
.faq-cta {
  background: linear-gradient(135deg, var(--azul-executivo) 0%, var(--azul-profundo) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.faq-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(139, 30, 63, 0.25);
  color: rgba(211, 208, 212, 0.9);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.faq-cta__title {
  margin: 0 0 0.65rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--branco);
}

.faq-cta__text {
  margin: 0 0 1.8rem;
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: 1.8rem;
  color: rgba(211, 208, 212, 0.85);
  font-size: 0.97rem;
  line-height: 1.65;
}

.faq-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  background: var(--vinho-sofisticado);
  color: var(--branco);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: filter 150ms ease, transform 150ms ease;
}

.faq-cta__btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  color: var(--branco);
}

/* ========================================
   Legal (Política de Privacidade / Termos)
   ======================================== */
.legal-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.legal-inner {
  max-width: 800px;
  margin-inline: auto;
}

.legal-updated {
  display: block;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  color: var(--cinza-elegante);
}

.legal-prose {
  color: var(--cinza-elegante);
  line-height: 1.8;
  font-size: 0.96rem;
}

.legal-prose h2 {
  margin: 2rem 0 0.55rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul-executivo);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p {
  margin: 0 0 0.85rem;
}

.legal-prose ul {
  margin: 0 0 0.85rem;
  padding-left: 1.6rem;
  display: grid;
  gap: 0.3rem;
}

.legal-prose a {
  color: var(--azul-executivo);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-prose a:hover {
  color: var(--vinho-sofisticado);
}

.legal-prose strong {
  color: var(--azul-profundo);
  font-weight: 600;
}

/* ========================================
   Shared: Section Header
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vinho-sofisticado);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--vinho-sofisticado);
  opacity: 0.4;
}

.section-title {
  margin: 0 0 0.65rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--azul-executivo);
  line-height: 1.2;
}

.section-subtitle {
  margin: 0;
  color: var(--cinza-elegante);
  font-size: 0.97rem;
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* ========================================
   Shared: Page CTA (bloco azul-escuro)
   ======================================== */
.page-cta {
  background: linear-gradient(135deg, var(--azul-executivo) 0%, var(--azul-profundo) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.page-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(139, 30, 63, 0.25);
  color: rgba(211, 208, 212, 0.9);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.page-cta__title {
  margin: 0 0 0.65rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--branco);
}

.page-cta__text {
  margin: 0 auto 1.8rem;
  max-width: 48ch;
  color: rgba(211, 208, 212, 0.85);
  font-size: 0.97rem;
  line-height: 1.65;
}

.page-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  background: var(--vinho-sofisticado);
  color: var(--branco);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: filter 150ms ease, transform 150ms ease;
}

.page-cta__btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  color: var(--branco);
}

/* ========================================
   Serviços
   ======================================== */
.servicos-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: color-mix(in srgb, var(--azul-executivo) 3%, var(--branco) 97%);
}

.servicos-inner {
  display: grid;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.servico-card {
  background: var(--branco);
  border: 1px solid rgba(178, 169, 155, 0.22);
  border-radius: var(--radius-lg);
  padding: 2rem 1.65rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(31, 43, 83, 0.05);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul-executivo), var(--vinho-sofisticado));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(31, 43, 83, 0.13);
}

.servico-card:hover::after {
  transform: scaleX(1);
}

.servico-card__number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(31, 43, 83, 0.055);
  line-height: 1;
  user-select: none;
}

.servico-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(139, 30, 63, 0.08);
  color: var(--vinho-sofisticado);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  transition: background 250ms ease;
}

.servico-card:hover .servico-card__icon {
  background: rgba(139, 30, 63, 0.14);
}

.servico-card__title {
  margin: 0 0 0.45rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--azul-executivo);
  line-height: 1.3;
}

.servico-card__text {
  margin: 0;
  font-size: 0.87rem;
  color: var(--cinza-elegante);
  line-height: 1.72;
}

@media (max-width: 900px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .servicos-grid { grid-template-columns: 1fr; }
}

/* ========================================
   Sobre
   ======================================== */
.sobre-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.sobre-perfil {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.sobre-foto-wrap {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.sobre-foto {
  display: block;
  width: 220px;
  height: 268px;
  object-fit: cover;
  object-position: 50% 8%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--branco);
  box-shadow: 0 12px 40px rgba(31, 43, 83, 0.18);
}

.sobre-bio__label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vinho-sofisticado);
  margin-bottom: 0.65rem;
}

.sobre-bio__title {
  margin: 0 0 1.1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--azul-executivo);
  line-height: 1.2;
}

.sobre-bio__text {
  margin: 0 0 0.85rem;
  color: var(--cinza-elegante);
  font-size: 0.96rem;
  line-height: 1.8;
}

.sobre-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.sobre-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: rgba(31, 43, 83, 0.07);
  color: var(--azul-executivo);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.sobre-badge i {
  color: var(--vinho-sofisticado);
  font-size: 0.72rem;
}

/* Formação */
.formacao-section {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.formacao-section > h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cinza-elegante);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.formacao-section > h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(31, 43, 83, 0.1);
}

.formacao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.formacao-card {
  background: var(--branco);
  border: 1px solid rgba(31, 43, 83, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
}

.formacao-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(139, 30, 63, 0.07);
  color: var(--vinho-sofisticado);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.formacao-card__title {
  margin: 0 0 0.3rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--azul-executivo);
}

.formacao-card__detail {
  margin: 0;
  font-size: 0.82rem;
  color: var(--cinza-elegante);
  line-height: 1.65;
}

/* Trajetória stats */
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(31, 43, 83, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.sobre-stat {
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(31, 43, 83, 0.1);
}

.sobre-stat:last-child {
  border-right: none;
}

.sobre-stat__number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--azul-executivo);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.sobre-stat__number span {
  color: var(--vinho-sofisticado);
}

.sobre-stat__label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cinza-elegante);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .sobre-stats { grid-template-columns: repeat(2, 1fr); }
  .sobre-stat:nth-child(2) { border-right: none; }
  .sobre-stat:nth-child(3) { border-top: 1px solid rgba(31, 43, 83, 0.1); }
  .sobre-stat:nth-child(4) { border-top: 1px solid rgba(31, 43, 83, 0.1); }
  .formacao-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .sobre-perfil {
    grid-template-columns: 1fr;
  }
  .sobre-foto-wrap {
    position: static;
    display: flex;
    justify-content: center;
  }
  .sobre-foto {
    width: 180px;
    height: 218px;
  }
}

/* ========================================
   Blog — Layout principal (main + sidebar)
   ======================================== */
.blog-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

/* ========================================
   Blog — Cards de listagem
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--branco);
  border: 1px solid rgba(31, 43, 83, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 43, 83, 0.12);
}

.blog-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.blog-card__cat {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vinho-sofisticado);
  text-decoration: none;
}

.blog-card__cat:hover {
  text-decoration: underline;
}

.blog-card__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-executivo);
  line-height: 1.4;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--vinho-sofisticado);
}

.blog-card__desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--cinza-elegante);
  line-height: 1.6;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(31, 43, 83, 0.08);
}

.blog-card__date {
  font-size: 0.78rem;
  color: var(--cinza-elegante);
}

.blog-card__link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--azul-executivo);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 120ms ease;
}

.blog-card__link:hover {
  color: var(--vinho-sofisticado);
}

/* Filtro ativo */
.blog-filter-active {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}

.blog-filter-clear {
  font-size: 0.82rem;
  color: var(--vinho-sofisticado);
  text-decoration: none;
  font-weight: 600;
}

.blog-filter-clear:hover {
  text-decoration: underline;
}

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--cinza-elegante);
}

.blog-empty__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: rgba(31, 43, 83, 0.2);
}

/* Paginação */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.blog-pag__btn {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--azul-executivo);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(31, 43, 83, 0.2);
  border-radius: var(--radius-sm);
  transition: background 120ms ease, color 120ms ease;
}

.blog-pag__btn:hover {
  background: var(--azul-executivo);
  color: var(--branco);
}

.blog-pag__info {
  font-size: 0.85rem;
  color: var(--cinza-elegante);
}

/* ========================================
   Artigo — Conteúdo da página de detalhe
   ======================================== */
.page-hero--artigo {
  min-height: 200px;
}

.page-hero__cat {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bege-neutro);
  text-decoration: none;
  margin-bottom: 0.6rem;
  opacity: 0.9;
}

.page-hero__cat:hover {
  opacity: 1;
  text-decoration: underline;
}

.page-hero__date {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: rgba(211, 208, 212, 0.75);
}

.artigo-capa {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.artigo-capa__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}



.artigo-body.prose {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--azul-profundo);
}

.artigo-body.prose h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--azul-executivo);
  margin: 2rem 0 0.75rem;
}

.artigo-body.prose h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-executivo);
  margin: 1.5rem 0 0.5rem;
}

.artigo-body.prose p { margin: 0 0 0.5rem; }

.artigo-body.prose ul,
.artigo-body.prose ol {
  padding-left: 1.5rem;
  margin: 0 0 1.2rem;
}

.artigo-body.prose li { margin-bottom: 0.4rem; }

.artigo-body.prose a {
  color: var(--vinho-sofisticado);
  text-decoration: underline;
}

.artigo-body.prose blockquote {
  border-left: 3px solid var(--vinho-sofisticado);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  color: var(--cinza-elegante);
  font-style: italic;
  background: rgba(31, 43, 83, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.artigo-body.prose img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}

.artigo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 43, 83, 0.1);
}

.artigo-nav__back,
.artigo-nav__next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--azul-executivo);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.artigo-nav__back:hover,
.artigo-nav__next:hover {
  color: var(--vinho-sofisticado);
}

/* ========================================
   Blog Artigo — Author & Share
   ======================================== */
.artigo-footer-blocks {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.artigo-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--branco);
  border: 1px solid rgba(31, 43, 83, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(31, 43, 83, 0.03);
}

.artigo-author__avatar {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--azul-executivo);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.artigo-author__info {
  flex: 1;
}

.artigo-author__name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--azul-executivo);
  margin: 0 0 0.2rem;
}

.artigo-author__creci {
  font-size: 0.85rem;
  color: var(--vinho-sofisticado);
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.artigo-author__bio {
  font-size: 0.95rem;
  color: var(--cinza-elegante);
  margin: 0;
  line-height: 1.5;
}

.artigo-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #f8f8fa;
  border-radius: var(--radius);
}

.artigo-share__title {
  font-weight: 600;
  color: var(--azul-profundo);
  font-size: 0.95rem;
}

.artigo-share__links {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--branco);
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.2s ease, filter 0.2s ease;
  border: none;
  cursor: pointer;
}

.share-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.share-whatsapp { background: #25D366; }
.share-linkedin { background: #0A66C2; }
.share-copy { background: var(--azul-executivo); }

@media (max-width: 600px) {
  .artigo-author {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .artigo-share {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.artigo-nav__back,
.artigo-nav__cat {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 120ms ease;
}

.artigo-nav__back { color: var(--azul-executivo); }
.artigo-nav__back:hover { color: var(--vinho-sofisticado); }

.artigo-nav__cat { color: var(--vinho-sofisticado); }
.artigo-nav__cat:hover { text-decoration: underline; }

/* ========================================
   Sidebar
   ======================================== */
/* Sidebar Default (Desktop e Mobile) */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 100px; /* Altura do header para não encavalar */
}

.sidebar-widget {
  background: #f8f8fa;
  border: 1px solid rgba(31, 43, 83, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.sidebar-widget--cta {
  background: var(--azul-executivo);
  border-color: transparent;
}

.sidebar-widget--cta .sidebar-widget__title,
.sidebar-widget--cta .sidebar-widget__sub,
.sidebar-widget--cta .form-label {
  color: var(--branco);
}

.sidebar-widget--cta .form-check__label,
.sidebar-widget--cta .form-check__label a {
  color: rgba(211, 208, 212, 0.85);
}

.sidebar-widget--cta .form-check__label a:hover {
  color: var(--branco);
}

.sidebar-widget__title {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--azul-executivo);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-widget__sub {
  margin: -0.5rem 0 1rem;
  font-size: 0.82rem;
  color: rgba(211, 208, 212, 0.8);
  line-height: 1.5;
}

/* Categorias */
.sidebar-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sidebar-cat-link {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  border: 1px solid rgba(31, 43, 83, 0.2);
  color: var(--azul-executivo);
  text-decoration: none;
  transition: background 120ms ease, color 120ms ease;
}

.sidebar-cat-link:hover,
.sidebar-cat-link.is-active {
  background: var(--azul-executivo);
  color: var(--branco);
  border-color: var(--azul-executivo);
}

/* Lista recente */
.sidebar-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.sidebar-recent-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.sidebar-recent-item__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.sidebar-recent-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.sidebar-recent-item__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--azul-executivo);
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-recent-item__title:hover {
  color: var(--vinho-sofisticado);
}

.sidebar-recent-item__date,
.sidebar-recent-item__valor {
  font-size: 0.75rem;
  color: #888;
}

.sidebar-empty {
  font-size: 0.85rem;
  color: #aaa;
  margin: 0;
}

/* Formulário sidebar */
.sidebar-form {
  display: grid;
  gap: 1.1rem;
}

.sidebar-form .form-group {
  margin-bottom: 0;
}

.sidebar-form .form-input,
.sidebar-form .form-textarea {
  font-size: 0.88rem;
}

.sidebar-form .form-check {
  margin-bottom: 0;
}

.form-btn--full { width: 100%; }

/* Contador de caracteres */
.char-counter {
  float: right;
  font-size: 0.72rem;
  color: rgba(211, 208, 212, 0.65);
  font-weight: 400;
}

.char-counter--over { color: #e55; }

/* ========================================
   Responsivo — Blog
   ======================================== */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .blog-sidebar .sidebar-widget {
    margin-bottom: 0;
  }

  .sidebar-widget--cta {
    grid-column: 1 / -1; /* Ocupa 100% no tablet */
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artigo-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================================
   Imóveis — Filtros
   ======================================== */
.imoveis-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.imovel-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--branco);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.imovel-filters:not(.is-expanded) .imovel-filter__advanced {
  display: none;
}

.imovel-filters:not(.is-expanded) .imovel-filter__main {
  flex: 1 1 100% !important;
}

.imovel-filter__select {
  flex: 1;
  min-width: 160px;
  padding: 0.75rem 1rem;
  line-height: 1.5;
  border: 1.5px solid var(--cinza-claro);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--azul-profundo);
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238a867b' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 18px;
}

.imovel-filter__select:focus {
  outline: none;
  border-color: var(--azul-executivo);
}

.imovel-filter__btn {
  padding: 0.75rem 1.5rem;
  line-height: 1.5;
  background: var(--azul-executivo);
  color: #fff;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
}

.imovel-filter__btn:hover {
  background: var(--azul-profundo);
}

.imovel-filter__clear {
  font-size: 0.85rem;
  color: var(--cinza-elegante);
  text-decoration: underline;
  white-space: nowrap;
}

.imovel-filter__clear:hover {
  color: var(--vinho-sofisticado);
}

/* ========================================
   Imóveis — Grid de cards
   ======================================== */
.imovel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.imovel-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.imovel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(22, 19, 29, 0.16);
}

.imovel-card__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--cinza-claro);
}

.imovel-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.imovel-card:hover .imovel-card__img {
  transform: scale(1.04);
}

.imovel-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 2rem;
}

.imovel-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.imovel-card__badge--venda {
  background: var(--azul-executivo);
  color: #fff;
}

.page-hero--imovel .page-hero__cat {
  background: var(--vinho-sofisticado);
}

.page-hero__container--left {
  text-align: left;
}

.page-hero__cat--inline {
  display: inline-block;
  margin-bottom: 0.6rem;
}

.page-hero__title--detalhe {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.25;
  margin-top: 0.5rem;
  font-family: 'Playfair Display', serif;
  text-align: left;
}

.page-hero__text--detalhe {
  margin: 0.5rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.95rem;
  text-align: left;
}

.page-hero__sep {
  opacity: 0.5;
  margin: 0 0.2rem;
}

@media (max-width: 576px) {
  .page-hero__text--detalhe {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .page-hero__sep {
    display: none;
  }
}

.imovel-detalhe__capa-img--placeholder {
  height: 400px;
  background: var(--cinza-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 3rem;
}

.imovel-detalhe__thumb-img {
  opacity: 0.7;
}

.imovel-detalhe__thumb-img.is-active {
  border: 2px solid var(--azul-executivo);
  opacity: 1;
}

.imovel-detalhe__map {
  height: 350px;
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--cinza-claro);
  margin-bottom: 0.8rem;
  z-index: 10;
}

.imovel-detalhe__map-info {
  font-size: 0.8rem;
  color: var(--cinza-elegante);
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin: 0;
}

.imovel-detalhe__map-icon {
  color: var(--azul-executivo);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.imovel-card__badge--locacao {
  background: var(--vinho-sofisticado);
  color: #fff;
}

.imovel-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.imovel-card__tipo {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cinza-elegante);
  margin-bottom: 0.3rem;
}

.imovel-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.4rem;
  color: var(--azul-profundo);
}

.imovel-card__title a:hover {
  color: var(--azul-executivo);
}

.imovel-card__bairro {
  font-size: 0.82rem;
  color: var(--cinza-elegante);
  margin: 0 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.imovel-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--cinza-elegante);
}

.imovel-card__specs li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.imovel-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.imovel-card__valor {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul-executivo);
}

.imovel-card__valor-periodo {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--cinza-elegante);
}

.imovel-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vinho-sofisticado);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.imovel-card__link:hover {
  color: var(--azul-executivo);
}

/* ========================================
   Imóvel Detalhe
   ======================================== */
.imovel-detalhe-section {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero--imovel .page-hero__cat {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.6rem;
}

.imovel-detalhe__capa {
  margin: 0 0 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.imovel-detalhe__capa-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.imovel-detalhe__galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.imovel-detalhe__galeria-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity 0.2s;
}

.imovel-detalhe__galeria-img:hover {
  opacity: 0.85;
}

.imovel-detalhe__valores {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--azul-executivo);
  border-radius: var(--radius-md);
  color: #fff;
}

.imovel-detalhe__valor-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.imovel-detalhe__valor-item--extra {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
}

.imovel-detalhe__valor-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.imovel-detalhe__valor {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.imovel-detalhe__valor-periodo {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.75;
}

.imovel-detalhe__section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-executivo);
  margin: 0 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--cinza-claro);
}

.imovel-detalhe__specs-wrap {
  margin-bottom: 1.75rem;
}

.imovel-detalhe__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.imovel-detalhe__spec {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--branco);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(22,19,29,0.07);
  font-size: 0.88rem;
}

.imovel-detalhe__spec i {
  color: var(--azul-executivo);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.imovel-detalhe__spec-label {
  color: var(--cinza-elegante);
  font-size: 0.78rem;
  min-width: 80px;
}

.imovel-detalhe__spec-value {
  font-weight: 600;
  color: var(--azul-profundo);
  margin-left: auto;
}

.imovel-detalhe__desc-wrap {
  margin-bottom: 1.75rem;
}

.imovel-detalhe__desc-text {
  color: var(--azul-profundo);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.imovel-detalhe__desc-text p {
  margin: 0 0 0.5rem;
}

.imovel-detalhe__cta {
  margin-bottom: 2rem;
  text-align: center;
}

.imovel-detalhe__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.imovel-detalhe__cta-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.imovel-detalhe__cta-btn i {
  font-size: 1.2rem;
}

/* ========================================
   Responsivo — Imóveis
   ======================================== */
@media (max-width: 1024px) {
  .imovel-filters {
    gap: 0.6rem;
  }

  .imovel-filter__select {
    min-width: 140px;
  }

  .imovel-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .imovel-detalhe__galeria {
    grid-template-columns: repeat(2, 1fr);
  }

  .imovel-detalhe__specs {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  .imovel-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    padding: 1.5rem 1.25rem;
  }

  .imovel-filter__select,
  .imovel-filter__btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  .imovel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .imovel-detalhe__galeria {
    grid-template-columns: repeat(2, 1fr);
  }

  .imovel-detalhe__valor {
    font-size: 1.35rem;
  }

  .imovel-detalhe__specs {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* ==========================================================
   HOME — Seções específicas da página inicial
   ========================================================== */

/* ── Utilitários comuns às seções home ── */
.home-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-section__label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vinho-sofisticado);
  margin-bottom: 0.5rem;
}

.home-section__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--azul-executivo);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.home-section__sub {
  color: var(--cinza-elegante);
  font-size: 0.97rem;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}

.home-section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.home-btn--primary {
  background: var(--vinho-sofisticado);
  color: var(--branco);
  box-shadow: 0 4px 16px rgba(139, 30, 63, 0.35);
}

.home-btn--primary:hover {
  background: #a5234b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 30, 63, 0.45);
}

.home-btn--outline {
  background: transparent;
  color: var(--azul-executivo);
  border: 2px solid var(--azul-executivo);
}

.home-btn--outline:hover {
  background: var(--azul-executivo);
  color: var(--branco);
  transform: translateY(-2px);
}

.home-empty {
  text-align: center;
  color: var(--cinza-elegante);
  padding: 2rem 0;
  font-style: italic;
}

/* ── S1: Slide ── */
.home-slide {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 420px;
  overflow: hidden;
  background: var(--azul-profundo);
}

.home-slide__track {
  position: absolute;
  inset: 0;
}

.home-slide__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.home-slide__item.is-active {
  opacity: 1;
}

.home-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.home-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 19, 29, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.home-slide__content {
  color: var(--branco);
  max-width: 620px;
  text-align: center;
  padding-inline: 1.5rem;
}

.home-slide__creci {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bege-neutro);
  margin: 0 0 0.5rem;
}

.home-slide__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.home-slide__sub {
  font-size: 1.05rem;
  color: rgba(211, 208, 212, 0.85);
  margin: 0 0 2rem;
}

.home-slide__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.home-slide__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.home-slide__btn--primary {
  background: var(--vinho-sofisticado);
  color: var(--branco);
  box-shadow: 0 4px 18px rgba(139, 30, 63, 0.45);
}

.home-slide__btn--primary:hover {
  background: #a5234b;
  transform: translateY(-2px);
}

.home-slide__btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--branco);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-slide__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.home-slide__controls {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 3;
}

.home-slide__arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-size: 0.75rem;
}

.home-slide__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--branco);
}

.home-slide__dots {
  display: flex;
  gap: 0.4rem;
}

.home-slide__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  padding: 0;
}

.home-slide__dot.is-active {
  background: var(--branco);
  transform: scale(1.3);
}

/* ── S2: Sobre ── */
.home-sobre {
  padding: 5rem 0;
  background: var(--branco);
}

.home-sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.home-sobre__foto-wrap {
  position: relative;
}

.home-sobre__foto {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-soft);
}

.home-sobre__text {
  color: var(--cinza-elegante);
  font-size: 1rem;
  line-height: 1.8;
  margin: 1.25rem 0 2rem;
}

.home-sobre__stats {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.home-sobre__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-sobre__stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--azul-executivo);
  line-height: 1;
}

.home-sobre__stat-check {
  font-size: 0.6em;
}

.home-sobre__stat-label {
  font-size: 0.75rem;
  color: var(--cinza-elegante);
  margin-top: 0.2rem;
}

/* ── S3: Imóveis ── */
.home-imoveis {
  padding: 5rem 0;
  background: #f4f3f5;
}

/* Reutiliza .imovel-grid e .imovel-card do style.css */

/* ── S4: Serviços ── */
.home-servicos {
  padding: 5rem 0;
  background: var(--azul-executivo);
}

.home-servicos .home-section__label {
  color: var(--bege-neutro);
}

.home-servicos .home-section__title {
  color: var(--branco);
}

.home-servicos .home-section__sub {
  color: rgba(211, 208, 212, 0.8);
}

.home-servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.home-servico-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: background 0.25s, transform 0.2s;
}

.home-servico-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.home-servico-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(139, 30, 63, 0.25);
  color: #c95177;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.home-servico-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--branco);
  margin: 0 0 0.5rem;
}

.home-servico-card__text {
  font-size: 0.88rem;
  color: rgba(211, 208, 212, 0.75);
  line-height: 1.65;
}

.home-servicos .home-btn--outline {
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.35);
}

.home-servicos .home-btn--outline:hover {
  background: var(--branco);
  color: var(--azul-executivo);
  border-color: var(--branco);
}

/* ── S9: Blog Artigo ── */
.artigo-hero__cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bege-neutro);
}

.page-hero__text--artigo {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(211, 208, 212, 0.8);
  text-align: left;
}

.artigo-capa__wrap {
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.artigo-capa__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 480px;
}

.artigo-tags__wrap {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.artigo-tags__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--azul-executivo);
  margin-right: 0.25rem;
}

.artigo-tags__item {
  background: rgba(31, 43, 83, 0.06);
  color: var(--azul-executivo);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ── S5: Blog ── */
.home-blog {
  padding: 5rem 0;
  background: var(--branco);
}

/* Reutiliza .blog-grid e .blog-card do style.css */

/* ── S6: Prova Social ── */
.home-prova {
  padding: 5rem 0;
  background: #f4f3f5;
}

.depo-slider {
  overflow: hidden;
}

.depo-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
  transition: transform 0.4s ease-out;
}

.depo-card {
  flex: 0 0 calc(33.3333% - 0.833rem);
  background: var(--branco);
  border: 1px solid rgba(178, 169, 155, 0.2);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.depo-card__stars {
  color: var(--vinho-sofisticado);
  font-size: 0.95rem;
  display: flex;
  gap: 0.2rem;
}

.depo-card__text {
  font-size: 0.95rem;
  color: var(--cinza-elegante);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.depo-card__nome {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--azul-executivo);
  margin: 0;
}

.depo-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.depo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(178, 169, 155, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  padding: 0;
}

.depo-dot.is-active {
  background: var(--azul-executivo);
  transform: scale(1.2);
}

.depo-nav {
  display: none;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.depo-nav__btn {
  background: var(--branco);
  border: 1px solid rgba(178, 169, 155, 0.35);
  color: var(--azul-executivo);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.depo-nav__btn:hover {
  background: var(--azul-executivo);
  color: var(--branco);
}

/* Formulário de depoimento */
.depo-form-wrap {
  max-width: 560px;
  margin: 3rem auto 0;
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-soft);
}

.depo-form {
  display: grid;
  gap: 1.1rem;
}

.depo-form .form-group {
  margin-bottom: 0;
}

.depo-form-wrap__title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--azul-executivo);
  margin: 0 0 0.25rem;
}

.depo-form-wrap__sub {
  color: var(--cinza-elegante);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.depo-stars-input {
  display: flex;
  gap: 0.35rem;
}

.depo-star-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--bege-neutro);
  padding: 0;
  line-height: 1;
  transition: color 0.15s, transform 0.15s;
}

.depo-star-btn:hover,
.depo-star-btn.is-selected {
  color: var(--vinho-sofisticado);
  transform: scale(1.15);
}

.depo-char-count {
  font-size: 0.78rem;
  color: var(--cinza-elegante);
  text-align: right;
  margin: 0.25rem 0 0;
}

/* Modal de Depoimento (Pop-up Interno) */
.depo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
}

.depo-modal[hidden] {
  display: none !important;
}

.depo-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 19, 29, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.depo-modal__box {
  position: relative;
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 48px rgba(22, 19, 29, 0.35);
  z-index: 2;
  max-height: 90vh;
  overflow-y: auto;
  animation: depoModalFadeIn 250ms ease;
}

.depo-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--cinza-elegante);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
  padding: 0.25rem;
  line-height: 1;
}

.depo-modal__close:hover {
  color: var(--vinho-sofisticado);
  transform: scale(1.1);
}

.depo-modal__title {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--azul-executivo);
  margin: 0 0 0.25rem;
}

.depo-modal__sub {
  color: var(--cinza-elegante);
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
}

@keyframes depoModalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive Home ── */
@media (max-width: 1024px) {
  .home-servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depo-card {
    flex: 0 0 calc(50% - 0.625rem);
  }
}

@media (max-width: 768px) {
  .home-slide__overlay {
    background: rgba(22, 19, 29, 0.62);
  }

  .home-sobre__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-sobre__foto {
    width: 260px;
    height: 260px;
    max-width: 100%;
    margin-inline: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
  }

  .home-sobre__stats {
    gap: 1.5rem;
  }

  .home-servicos__grid {
    grid-template-columns: 1fr;
  }

  .depo-nav {
    display: flex;
  }

  .depo-form-wrap {
    padding: 1.5rem;
  }

  .home-slide__btn {
    font-size: 0.82rem;
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 576px) {
  .imovel-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .depo-card {
    flex: 0 0 100%;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .imovel-detalhe__specs {
    grid-template-columns: 1fr;
  }

  .imovel-detalhe__valores {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .imovel-detalhe__valor-item--extra {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 1.25rem;
  }
}

/* ========================================
   Carousel Estilo Instagram & Lightbox
   ======================================== */
.imovel-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  background: #f0f2f8;
  touch-action: pan-y;
}

.imovel-carousel__track {
  display: flex;
  transition: transform 0.3s ease-out;
  width: 100%;
}

.imovel-carousel__img {
  width: 100%;
  flex: 0 0 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  cursor: zoom-in;
}

.imovel-carousel__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #aaa;
}

.imovel-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: background 0.2s;
}

.imovel-carousel__btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.imovel-carousel__btn--prev { left: 10px; }
.imovel-carousel__btn--next { right: 10px; }

.imovel-carousel__dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.imovel-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.imovel-carousel__dot.is-active {
  background: white;
  transform: scale(1.2);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
}

.lightbox__close:hover {
  color: #ddd;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

/* ==========================================================================
   Classes Utilitárias e Componentes Modulares (Extraídos do HTML)
   ========================================================================== */

.filter-input-wrap {
  flex: 2;
  position: relative;
  width: 100%;
  min-width: 240px;
}

.filter-input--search {
  width: 100%;
  padding-left: 2.2rem;
  background-image: none;
  cursor: text;
}

.filter-input-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cinza-elegante);
  pointer-events: none;
}

.empty-state {
  text-align: center;
  padding: 4rem 0;
}

.empty-state__icon {
  font-size: 4rem;
  color: rgba(31, 43, 83, 0.2);
  margin-bottom: 1.5rem;
}

.empty-state__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--azul-executivo);
  margin-bottom: 1rem;
}

.empty-state__title--sm {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.empty-state__text {
  margin-bottom: 2rem;
  color: var(--cinza-elegante);
}

.empty-state__btn {
  display: inline-block;
  margin-top: 1rem;
}

.artigo-author__img {
  border-radius: 50%;
  object-fit: cover;
}

.imovel-detalhe__valor--destaque {
  font-size: 1.25rem;
}

.order-0 { order: 0; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
