/* Dra. Luciana Chinedez — identidade premium / advocacia */
:root {
  --color-primary: #8f3e3a;
  --color-primary-dark: #6e2f2c;
  --color-gold: #ecd4a4;
  --color-gold-deep: #c4a574;
  --color-gray: #d5d5d5;
  --color-ink: #14110f;
  --color-bg-page: #f7f5f2;
  --color-paper: #fffcfa;
  --color-text: #1c1816;
  --color-text-muted: #4a4542;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 4px 24px rgba(20, 17, 15, 0.06);
  --shadow-lg: 0 20px 50px rgba(20, 17, 15, 0.1);
  --shadow-card: 0 2px 0 rgba(143, 62, 58, 0.06), 0 12px 40px rgba(20, 17, 15, 0.08);
  --header-h: 76px;
  --header-offset: calc(76px + env(safe-area-inset-top, 0px));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --border-fine: 1px solid rgba(143, 62, 58, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg-page);
  background-image:
    radial-gradient(1200px 600px at 12% -8%, rgba(236, 212, 164, 0.35), transparent 55%),
    radial-gradient(900px 480px at 88% 0%, rgba(143, 62, 58, 0.06), transparent 50%),
    linear-gradient(180deg, var(--color-paper) 0%, var(--color-bg-page) 22%, var(--color-bg-page) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
}

a:hover {
  text-decoration: underline;
}

.visually-hidden {
  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 {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 1.75rem);
  padding-right: clamp(1rem, 4vw, 1.75rem);
}

.container--narrow {
  max-width: 720px;
}

/* Header — fixo no topo; home começa abaixo dele */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(255, 252, 250, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: var(--border-fine);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.site-header-spacer {
  display: block;
  height: var(--header-offset);
  pointer-events: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  flex-wrap: wrap;
}

.site-header__brand {
  transition: opacity 0.2s var(--ease-out);
}

.site-header__brand:hover {
  opacity: 0.88;
}

.site-header__logo {
  height: auto;
  max-height: 54px;
  width: auto;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.site-nav__list a:hover {
  color: var(--color-primary);
  background: rgba(143, 62, 58, 0.06);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold-deep);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(1px);
}

.btn__icon {
  flex-shrink: 0;
}

.btn--whatsapp {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn--whatsapp:hover {
  filter: brightness(1.05);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(143, 62, 58, 0.35);
}

.btn--header {
  white-space: nowrap;
}

.btn--header .btn__label-short {
  display: none;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: rgba(143, 62, 58, 0.08);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  text-decoration: none;
}

.btn--primary-borded {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1rem 1.5rem;
}

.btn--primary-borded:hover {
  text-decoration: none;
  filter: brightness(1.06);
}

.btn--whatsapp-gradient {
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(18, 140, 126, 0.4);
}

.btn--whatsapp-gradient:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.btn--submit {
  background: var(--color-primary);
  color: #fff;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 140px;
  padding: 0.9rem 2rem;
}

.btn--submit:hover {
  filter: brightness(1.05);
}

/* Hero — conteúdo fixo + revelação do fundo ao rolar */
.hero {
  --hero-pad-bottom: clamp(1.25rem, 2.5vw, 2rem);
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.hero__pin {
  position: relative;
  display: grid;
  grid-template-areas: "hero";
  width: 100%;
}

.hero__bg {
  grid-area: hero;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(255, 252, 250, 0.9) 0%,
      rgba(255, 252, 250, 0.78) 34%,
      rgba(247, 245, 242, 0.52) 56%,
      rgba(20, 17, 15, 0.28) 100%
    );
  backdrop-filter: blur(1px);
}

.hero__grid {
  grid-area: hero;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: end;
  width: 100%;
  text-align: left;
  padding-top: clamp(0.5rem, 1.2vw, 0.85rem);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  min-height: 0;
  pointer-events: none;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0 0 0 15%;
  background: radial-gradient(ellipse 80% 70% at 50% 100%, rgba(20, 17, 15, 0.42), transparent 72%);
  pointer-events: none;
}

.hero__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 28rem);
  max-height: calc(100dvh - var(--header-h));
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  margin: 0;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 18px 36px rgba(20, 17, 15, 0.22));
}

.hero__content {
  position: relative;
  align-self: end;
  padding: 0 0 var(--hero-pad-bottom);
  margin: 0;
}

.hero__tag {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0 0 1rem;
}

.hero__tag--locations {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.55;
  max-width: 42ch;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.hero__trust li {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.75);
  border: var(--border-fine);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1.1rem;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

.hero__accent {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
}

.hero__lead {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin: 0 0 0.85rem;
  max-width: 40rem;
}

.hero__cta-text {
  margin: 0 0 1.5rem;
  max-width: 38rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--color-primary);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

/* Sections */
.section {
  padding: clamp(3.25rem, 8vw, 5rem) 0;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.65rem);
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
}

.section__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, transparent, var(--color-gold-deep), var(--color-gold), transparent);
  border-radius: 2px;
}

.section__title--left {
  text-align: left;
}

.section__title--left::after {
  margin: 0.85rem 0 0;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold), transparent);
}

.section__title--ref {
  color: #fdf8f4;
}

.section__title--ref::after {
  background: linear-gradient(90deg, transparent, var(--color-gold-deep), var(--color-gold), transparent);
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 0.35rem;
}

.section__eyebrow--center {
  text-align: center;
}

.section__eyebrow--left {
  text-align: left;
}

.section__lead {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 1rem;
}

.anchor-target {
  display: block;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* Pilares — grade (referência: blocos de áreas no site de advocacia) */
.section--pillars {
  background: linear-gradient(180deg, #fffdfc 0%, var(--color-paper) 45%, #faf7f3 100%);
  padding-top: clamp(2.75rem, 6vw, 4rem);
  padding-bottom: clamp(2.75rem, 6vw, 4rem);
}

.section--pillars h2.section__eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--color-primary);
}

.pillars-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.pillars-item {
  background: var(--color-paper);
  border: var(--border-fine);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.4rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.pillars-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.pillars-item__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.55rem;
  letter-spacing: -0.01em;
}

.pillars-item__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

@media (max-width: 920px) {
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* Nossa essência — fundo advocacia + overlay institucional */
.section--essencia {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary-dark);
  color: rgba(253, 248, 244, 0.94);
}

.section--essencia::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section--essencia::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 20%, rgba(236, 212, 164, 0.14), transparent 55%),
    linear-gradient(145deg, rgba(58, 26, 24, 0.9) 0%, rgba(143, 62, 58, 0.84) 52%, rgba(74, 32, 30, 0.88) 100%);
  pointer-events: none;
}

.section--essencia .container {
  position: relative;
  z-index: 1;
}

.essencia__body {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.essencia__body p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.78;
}

.section--essencia strong {
  color: var(--color-gold);
  font-weight: 600;
}

/* Áreas de atuação — grade editorial (referência) */
.section--areas {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #fffdfc 0%, var(--color-paper) 40%, #f3eeea 100%);
  padding: clamp(3.25rem, 8vw, 5rem) 0;
}

.areas-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.areas-head .section__title {
  margin-bottom: 0;
}

.areas-grid--ref {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.areas-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fdf8f4;
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.4rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.2vw, 1.55rem);
  box-shadow: 0 12px 32px rgba(110, 47, 44, 0.22);
  border: 1px solid rgba(236, 212, 164, 0.18);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.areas-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold), transparent);
}

.areas-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(110, 47, 44, 0.3);
}

.areas-item__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #fff;
  line-height: 1.25;
}

.areas-item__excerpt {
  margin: 0 0 1.25rem;
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(253, 248, 244, 0.88);
}

.areas-item__link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  color: var(--color-gold);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(236, 212, 164, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  cursor: pointer;
  text-align: center;
}

.areas-item__link:hover {
  color: var(--color-primary-dark);
  background: var(--color-gold);
  text-decoration: none;
}

.areas-item.is-open {
  grid-column: 1 / -1;
}

.areas-item.is-open .areas-item__excerpt {
  display: none;
}

.areas-item__full {
  margin-top: 0.15rem;
  max-width: 46rem;
}

.areas-item__full p {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(253, 248, 244, 0.9);
}

.areas-item__full p:last-child {
  margin-bottom: 0;
}

.areas-item__subtitle {
  margin: 1.35rem 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--color-gold);
}

.areas-item.is-open .areas-item__link {
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* Página interna — área de atuação */
.page-area {
  background: var(--color-bg-page);
  min-height: 100vh;
}

.page-area__header {
  padding: 1.25rem 0;
  border-bottom: var(--border-fine);
  background: rgba(255, 252, 250, 0.92);
  backdrop-filter: blur(10px);
}

.page-area__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-area__logo {
  max-height: 48px;
  width: auto;
}

.page-area__back {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--color-primary);
}

.page-area__back:hover {
  text-decoration: underline;
}

.page-area__main {
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem)) 0 clamp(3rem, 7vw, 5rem);
}

.page-area__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8580;
}

.page-area__title {
  margin: 0 0 2rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-area__content {
  max-width: 42rem;
}

.page-area__content h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 2rem 0 0.75rem;
}

.page-area__content h2:first-child {
  margin-top: 0;
}

.page-area__content p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.page-area__content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.page-area__content li {
  margin-bottom: 0.4rem;
}

.page-area__cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: var(--border-fine);
}

.page-area__footer {
  padding: 1.5rem 0;
  border-top: var(--border-fine);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.page-area__footer a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.page-area__footer a:hover {
  text-decoration: underline;
}

/* Stats */
.section--stats {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(180deg, #c8c4c0 0%, var(--color-gray) 28%, #e0dedc 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.5);
}

.stats-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1000px;
  margin: 0 auto;
}

.stats-banner__box {
  background: linear-gradient(165deg, var(--color-gold) 0%, #e8d8b8 100%);
  border: 1px solid rgba(20, 17, 15, 0.35);
  border-radius: var(--radius);
  padding: 1.65rem 2.75rem;
  text-align: center;
  font-family: var(--font-serif);
  color: var(--color-primary);
  box-shadow: 0 4px 0 rgba(143, 62, 58, 0.12), 0 12px 32px rgba(20, 17, 15, 0.08);
}

.stats-banner__num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.stats-banner__num #statsCounter {
  display: inline-block;
  min-width: 4.5ch;
  text-align: center;
}

.stats-banner__line {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-banner__side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.stats-banner__text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--color-primary-dark);
  text-align: left;
  max-width: 36ch;
  margin: 0;
  line-height: 1.35;
}

.stats-banner--compact {
  align-items: center;
}

.stats-banner--compact .stats-banner__text {
  max-width: 42ch;
}

.stats-banner__link {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.5;
}

.stats-banner__link a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.stats-banner__link a:hover {
  color: var(--color-primary-dark);
}

.stats-locations {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(143, 62, 58, 0.18);
}

.stats-locations__title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin: 0 0 0.65rem;
}

.stats-locations__list {
  margin: 0 0 0.85rem;
  padding: 0 0 0 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.stats-locations__list li {
  margin-bottom: 0.4rem;
}

.stats-locations__list strong {
  color: var(--color-primary);
  font-weight: 600;
}

.stats-locations__online {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.stats-locations__online strong {
  color: var(--color-primary);
}

/* Sobre */
.section--sobre {
  position: relative;
  overflow: hidden;
  background-color: #ece8e4;
}

.section--sobre::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/4.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section--sobre::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 252, 250, 0.93) 0%,
    rgba(255, 252, 250, 0.86) 42%,
    rgba(247, 245, 242, 0.72) 68%,
    rgba(255, 252, 250, 0.58) 100%
  );
  backdrop-filter: blur(1px);
}

.section--sobre .container {
  position: relative;
  z-index: 1;
}

.sobre {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.sobre__name {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--color-ink);
  margin: 0.2rem 0 0;
  letter-spacing: -0.02em;
}

.sobre__role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0.65rem 0 1.15rem;
}

.sobre__text p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.sobre__closing {
  margin-top: 1.35rem !important;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-primary);
}

.sobre__scope {
  margin-bottom: 0 !important;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.sobre__assinatura {
  margin-top: 1.5rem !important;
  font-family: var(--font-serif);
  color: var(--color-text);
}

.sobre__photo {
  position: relative;
}

.sobre__photo::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-primary) 45%, var(--color-gold-deep) 100%);
  opacity: 0.45;
  z-index: 0;
}

.sobre__photo img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  border: 3px solid rgba(255, 252, 250, 0.95);
}

/* Como funciona — timeline interativa */
.section--como {
  background: #fff;
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.como-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.como-head__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.como-head__accent {
  color: var(--color-primary);
}

.como-head__sub {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.como-timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.como-timeline__line {
  position: absolute;
  top: 2.35rem;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, #f0d4c8 0%, var(--color-primary) 50%, #f0d4c8 100%);
  border-radius: 2px;
  z-index: 0;
}

.como-timeline__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.como-step__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}

.como-step__icon {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f0d4c8;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.como-step.is-active .como-step__icon {
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(143, 62, 58, 0.35);
  transform: scale(1.05);
}

.como-step__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.como-step__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
}

.como-step__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.como-timeline__detail {
  text-align: center;
  margin-top: 2.25rem;
  min-height: 4.5rem;
}

.como-timeline__text {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  animation: comoFadeIn 0.35s var(--ease-out);
}

@keyframes comoFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.como-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* Avaliações Google */
.section--google {
  background: #f7f5f3;
}

.google-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(20, 17, 15, 0.08);
}

.google-head__logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(20, 17, 15, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.google-head__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--color-ink);
}

.google-head__rating {
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.google-head__rating strong {
  font-size: 1.1rem;
  color: var(--color-ink);
}

.google-head__stars {
  color: #e6b422;
  letter-spacing: 1px;
}

.google-head__count {
  font-size: 0.875rem;
}

.google-head__tag {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-primary);
  font-weight: 600;
}

.google-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.google-card {
  background: #fff;
  border: 1px solid rgba(20, 17, 15, 0.08);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 2px 12px rgba(20, 17, 15, 0.04);
}

.google-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.google-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--avatar-bg, var(--color-primary));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-card__meta {
  flex: 1;
  min-width: 0;
}

.google-card__name {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-ink);
  margin-bottom: 0.15rem;
}

.google-card__stars {
  color: #e6b422;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.google-card__g {
  flex-shrink: 0;
  opacity: 0.85;
}

.google-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.google-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.google-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(20, 17, 15, 0.12);
  background: #fff;
  color: var(--color-ink);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.google-actions__btn:hover {
  border-color: rgba(143, 62, 58, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.google-cta {
  display: flex;
  width: 100%;
  max-width: 22rem;
  margin: 1.75rem auto 0;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 1rem 1.5rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Agende + formulário — mesma seção no desktop */
.section--agende-contato {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, #a34a45 100%);
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  color: #fdf8f4;
}

.agende-contato {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.agende-contato__cta.cta-banner {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}

.agende-contato__form-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: #fff;
}

.agende-contato__form-lead {
  margin: 0 0 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(253, 248, 244, 0.9);
}

.agende-contato__form-lead a {
  color: #fff;
  font-weight: 600;
}

.cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.cta-banner__content {
  flex: 1 1 18rem;
  max-width: 40rem;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  color: #fff;
}

.cta-banner__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(253, 248, 244, 0.9);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

/* Depoimentos — ver .section--google */

/* Valores tabs */
.section--valores {
  background: var(--color-paper);
}

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.65rem;
}

.tabs__btn {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.85rem;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: var(--color-gold);
  color: var(--color-primary-dark);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.tabs__btn:hover:not(.is-active) {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.tabs__btn.is-active {
  background: linear-gradient(165deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(143, 62, 58, 0.35);
}

.tabs__panel {
  background: linear-gradient(180deg, #faf7f4 0%, #f2eeea 100%);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-card);
  border: var(--border-fine);
  max-width: 820px;
  margin: 0 auto;
}

.tabs__panel[hidden] {
  display: none;
}

.tabs__panel-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--color-ink);
  font-weight: 600;
}

.tabs__panel p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.checklist {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.valores-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
}

.valores-list li {
  margin-bottom: 0.75rem;
}

/* FAQ */
.section--faq {
  background: var(--color-paper);
}

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.faq-filters__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.1rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
}

.faq-filters__btn.is-active {
  background: linear-gradient(180deg, var(--color-gold) 0%, #e5d4b0 100%);
  color: var(--color-primary-dark);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.6) inset;
}

.faq-filters__btn:focus-visible {
  outline: 2px solid var(--color-gold-deep);
  outline-offset: 2px;
}

.faq-panel[hidden] {
  display: none;
}

.accordion__item {
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: rgba(255, 252, 250, 0.9);
  border: var(--border-fine);
  transition: box-shadow 0.2s var(--ease-out);
}

.accordion__item:has(.accordion__trigger[aria-expanded="true"]) {
  box-shadow: var(--shadow);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-ink);
  cursor: pointer;
  transition: background 0.2s var(--ease-out);
}

.accordion__trigger:hover {
  background: rgba(143, 62, 58, 0.04);
}

.accordion__icon {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 400;
  width: 28px;
  text-align: center;
}

.accordion__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  background: #fff;
}

.accordion__body[hidden] {
  display: none;
}

.accordion__body p {
  margin: 0 0 0.75rem;
}

.accordion__body p:last-child {
  margin-bottom: 0;
}

.accordion__body ul,
.accordion__body ol {
  margin: 0 0 0.75rem;
  padding-left: 1.2rem;
}

.accordion__body li {
  margin-bottom: 0.35rem;
}

.accordion__body li:last-child {
  margin-bottom: 0;
}

/* Contato — formulário (dentro de .section--agende-contato no desktop) */
.contact-form__card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.15rem, 3vw, 1.5rem);
  border: 1px solid rgba(20, 17, 15, 0.06);
  box-shadow: 0 6px 24px rgba(20, 17, 15, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.85rem;
}

.form-grid .field--full {
  grid-column: 1 / -1;
}

.contact-form .field {
  margin-bottom: 0;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--color-ink);
  margin-bottom: 0.3rem;
}

.req {
  color: var(--color-primary);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid rgba(20, 17, 15, 0.1);
  border-radius: calc(var(--radius) - 2px);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  background: #f5f3f1;
  color: var(--color-ink);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
  appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238f3e3a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(20, 17, 15, 0.38);
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: rgba(143, 62, 58, 0.25);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(143, 62, 58, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}

.contact-form__actions {
  margin-top: 1.1rem;
  padding-top: 0;
}

.contact-form__actions .btn--submit {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 3px 12px rgba(143, 62, 58, 0.2);
}

.contact-form__actions .btn--submit:hover {
  box-shadow: 0 6px 18px rgba(143, 62, 58, 0.28);
  transform: translateY(-1px);
}

/* Vídeos — carrossel (home) e blog */
.section--videos {
  background: linear-gradient(180deg, var(--color-paper) 0%, #f3eeea 100%);
}

.videos-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.videos-head .section__title {
  margin-bottom: 0;
}

.videos-carousel__viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
}

.videos-carousel__track {
  display: flex;
  transition: transform 0.45s var(--ease-out);
}

.videos-carousel__slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  min-width: 0;
}

.videos-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.videos-carousel__btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  box-shadow: 0 4px 14px rgba(143, 62, 58, 0.28);
}

.videos-carousel__btn:hover:not(:disabled) {
  background: var(--color-primary-dark);
  transform: scale(1.05);
}

.videos-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.videos-carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.videos-carousel__dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(143, 62, 58, 0.25);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.videos-carousel__dot.is-active {
  background: var(--color-primary);
  transform: scale(1.25);
}

.videos-cta {
  text-align: center;
  margin: 2rem 0 0;
}

.video-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-fine);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  min-width: 0;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.video-card__media {
  position: relative;
  width: min(100%, calc(18rem * 9 / 16));
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  max-height: 18rem;
  background: transparent;
  overflow: hidden;
}

.video-card__media--embed {
  max-height: 18rem;
}

.video-card__embed {
  position: absolute;
  top: -3.375rem;
  left: 50%;
  width: 172%;
  height: calc(100% + 3.375rem + 5rem);
  min-width: 0;
  border: 0;
  transform: translateX(-50%);
  pointer-events: none;
  background: transparent;
}

.video-card--embed:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

a.video-card__body {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

a.video-card__body:hover {
  text-decoration: none;
}

a.video-card__body:hover h3 {
  color: var(--color-primary);
}

.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2a1f1e 0%, #8f3e3a 55%, #ecd4a4 100%);
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(20, 17, 15, 0.28);
  transition: background 0.2s var(--ease-out);
}

.video-card:hover .video-card__play {
  background: rgba(20, 17, 15, 0.42);
}

.video-card__body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
}

.video-card__cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.45rem;
}

.video-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-ink);
  margin: 0 0 0.45rem;
}

.video-card__body p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.videos-empty {
  text-align: center;
  color: var(--color-text-muted);
  grid-column: 1 / -1;
}

.section--videos-blog {
  background: linear-gradient(180deg, var(--color-paper) 0%, #f3eeea 100%);
}

.page-video-tema .tema-content {
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  overflow: visible;
  border: var(--border-fine);
  box-shadow: var(--shadow-card);
}

.page-video-tema .video-embed {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) 0;
  background: #fff;
  overflow: visible;
}

.page-video-tema .video-embed__viewport {
  position: relative;
  width: min(100%, 405px);
  max-height: min(85vh, 720px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
  background: #111;
  border-radius: calc(var(--radius-sm) + 2px);
}

.page-video-tema .video-embed__viewport iframe {
  position: absolute;
  top: -3.375rem;
  left: 50%;
  width: 172%;
  height: calc(100% + 3.375rem + 12rem);
  border: 0;
  transform: translateX(-50%);
  background: transparent;
}

.page-video-tema__wrap {
  max-width: 640px;
}

.page-video-tema .tema-info {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.page-video-tema .tema-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: var(--border-fine);
}

.page-video-tema .tema-meta__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-primary);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.page-video-tema .tema-meta__date {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.page-video-tema .tema-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.page-video-tema .tema-explicacao {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.page-video-tema .tema-explicacao p {
  margin: 0 0 1rem;
}

.page-video-tema .tema-explicacao p:last-child {
  margin-bottom: 0;
}

.page-video-tema .tema-info__cta {
  margin-top: 1.5rem;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--color-primary);
}

.page-back:hover {
  text-decoration: underline;
}

.field--checkbox {
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

.checkbox-label a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Maps */
.section--maps {
  padding: clamp(2.75rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4rem);
  background: #f7f5f3;
}

.section--maps .section__title {
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.15rem, 2.5vw, 1.5rem);
}

.map-embed {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--color-paper);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1.25rem;
  border: var(--border-fine);
  box-shadow: var(--shadow);
}

.map-embed__city {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-primary);
}

.map-embed__frame {
  border-radius: calc(var(--radius-sm) + 2px);
  overflow: hidden;
  border: 1px solid rgba(20, 17, 15, 0.06);
}

.map-embed iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.map-embed__addr {
  margin: 0;
  padding: 0 0.15rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  text-align: left;
  color: var(--color-text-muted);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #d8d5d2 0%, var(--color-gray) 25%, #ceccc9 100%);
  padding: 0 0 env(safe-area-inset-bottom, 0);
  border-top: 4px solid var(--color-primary);
  box-shadow: 0 -12px 40px rgba(20, 17, 15, 0.06);
  width: 100%;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding-top: clamp(2.5rem, 5vw, 3.25rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.site-footer__brand img {
  display: block;
  margin-bottom: 0.85rem;
}

.site-footer__oab {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  max-width: 22ch;
}

.site-footer__heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 0.85rem;
  color: var(--color-primary);
}

.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer__nav-list a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s var(--ease-out);
}

.site-footer__nav-list a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.site-footer__hours p,
.site-footer__contact p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.site-footer__note {
  margin-top: 0.65rem !important;
  font-size: 0.8125rem !important;
  color: var(--color-text-muted) !important;
}

.site-footer__phones a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.site-footer__phones a:hover {
  text-decoration: underline;
}

.site-footer__contact a {
  color: var(--color-primary);
  text-decoration: none;
}

.site-footer__contact a:hover {
  text-decoration: underline;
}

.site-footer__contact .social,
.site-footer__contact .social:hover {
  color: #fff;
  text-decoration: none;
}

.sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.social-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}

.social svg {
  display: block;
  flex-shrink: 0;
}

.social:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  text-decoration: none;
}

.social--fb {
  background: #1877f2;
}

.social--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social--in {
  background: #0a66c2;
}

.social--wa {
  background: #25d366;
}

.social:focus-visible {
  outline: 2px solid var(--color-gold-deep);
  outline-offset: 3px;
}

.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.site-footer__contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s var(--ease-out);
}

.site-footer__contact-list a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.site-footer__contact-list svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.tabs__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.site-footer__bar {
  width: 100%;
  margin-top: 0;
  padding: 1.15rem 0 calc(1.25rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, #7a3532 0%, #5f2a28 100%);
  border-top: 1px solid rgba(255, 252, 250, 0.12);
}

.site-footer__bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 252, 250, 0.82);
  line-height: 1.5;
}

.site-footer__copy a {
  color: rgba(255, 252, 250, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__credit {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 252, 250, 0.72);
}

.site-footer__ms {
  display: inline-block;
  color: #ffe8a8;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(255, 232, 168, 0.35);
  animation: msDigitaisBounce 2.6s ease-in-out infinite;
}

.site-footer__ms:hover {
  color: #fff3c4;
  text-decoration: none;
}

@keyframes msDigitaisBounce {
  0%, 52%, 100% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-7px);
  }
  20% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-4px);
  }
  40% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__ms {
    animation: none;
  }
}

/* Landing — alta conversão */
.page-landing {
  padding-bottom: 0;
}

.hero__strong {
  font-weight: 600;
  display: block;
  margin-top: 0.2em;
  font-size: 0.92em;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(143, 62, 58, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(143, 62, 58, 0);
  }
}

.btn--pulse {
  animation: ctaPulse 2.2s ease-in-out infinite;
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 0.95rem;
}

.section__kicker {
  text-align: center;
  max-width: 42rem;
  margin: -1.5rem auto 2rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.section__kicker--center {
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

.section--videos-blog .videos-head .section__kicker--center {
  margin-top: 1cm;
}

.section__kicker a {
  color: var(--color-primary);
  font-weight: 600;
}

.section--deps .section__kicker {
  margin-top: -1rem;
  margin-bottom: 1.75rem;
}

.cta-strip {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 48%, #a34d48 100%);
  color: #fff;
  padding: 1.35rem 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
}

.cta-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cta-strip__copy {
  flex: 1 1 220px;
  min-width: 0;
}

.cta-strip__headline {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.cta-strip__sub {
  font-size: 0.85rem;
  opacity: 0.92;
  line-height: 1.45;
}

.cta-strip .btn--whatsapp {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  flex-shrink: 0;
}

.cta-strip .btn--whatsapp:hover {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-gold);
}

.fab-wa {
  position: fixed;
  bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.35rem + env(safe-area-inset-right, 0px));
  z-index: 96;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(18, 140, 126, 0.45);
  text-decoration: none;
  animation: fab-wa-float 2.4s ease-in-out infinite;
}

@keyframes fab-wa-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.04);
  }
}

.fab-wa:hover {
  animation-play-state: paused;
  transform: scale(1.08);
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 32px rgba(18, 140, 126, 0.55);
}

.fab-wa:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 96;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  background: rgba(20, 17, 15, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(18, 140, 126, 0.35);
}

.sticky-cta__btn:hover {
  color: #fff;
  filter: brightness(1.05);
  text-decoration: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .areas-grid--ref {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .sobre {
    grid-template-columns: 1fr;
  }

  .sobre__photo img {
    margin: 0 auto;
  }

  .google-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }

  .google-grid .google-card[hidden] {
    display: none;
  }

  .maps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 28rem;
    margin-inline: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .site-footer__brand img {
    margin-inline: auto;
  }

  .site-footer__tagline {
    max-width: none;
  }

  .social-row {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .videos-carousel__slide,
  .videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .agende-contato {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .agende-contato__cta.cta-banner {
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .agende-contato__cta .cta-banner__text {
    margin-bottom: 0;
  }

  .agende-contato__cta .cta-banner__actions {
    justify-content: center;
    margin-top: 0;
  }

  .agende-contato__form-title,
  .agende-contato__form-lead {
    text-align: center;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    text-align: left;
    align-items: end;
    padding-top: clamp(0.5rem, 1.2vw, 0.85rem);
  }

  .hero__content {
    padding: 0 0 var(--hero-pad-bottom);
    margin-inline: 0;
    max-width: none;
    text-align: left;
    align-self: end;
  }

  .hero__trust {
    justify-content: flex-start;
  }

  .hero__lead,
  .hero__cta-text {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero {
    height: auto !important;
  }

  .hero__pin {
    position: relative;
    top: auto;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
  }

  .hero__bg-image {
    position: absolute;
    inset: 0;
    height: 100% !important;
    background-size: cover;
    background-position: calc(50% + 5cm) center;
    transform: none;
  }

  .hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(255, 252, 250, 0.92) 0%,
      rgba(255, 252, 250, 0.82) 55%,
      rgba(247, 245, 242, 0.65) 100%
    );
  }

  .hero__visual {
    margin-top: 0;
    justify-content: center;
    align-self: end;
    align-items: flex-end;
  }

  .hero__visual::before {
    inset: 0;
    background: radial-gradient(ellipse 90% 80% at 50% 100%, rgba(20, 17, 15, 0.5), transparent 75%);
  }

  .hero__photo {
    width: min(100%, 12rem);
    max-height: calc(100dvh - var(--header-h));
    margin-bottom: 0;
    object-position: bottom center;
    mix-blend-mode: lighten;
  }

  body {
    background-attachment: scroll;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    width: 100%;
    order: 4;
    display: none;
  }

  .site-nav.is-open {
    display: block;
    background: var(--color-paper);
    border-radius: var(--radius-sm);
    border: var(--border-fine);
    box-shadow: var(--shadow-lg);
    padding: 0.35rem 0.5rem;
    margin-top: 0.35rem;
  }

  .site-nav__list {
    flex-direction: column;
    padding: 0.5rem 0;
    border-top: 0;
  }

  .btn--header {
    order: 2;
    margin-left: 0;
    flex-shrink: 0;
    padding: 0.38rem 0.55rem;
    font-size: 0.6875rem;
    gap: 0.3rem;
    letter-spacing: 0.01em;
  }

  .btn--header .btn__icon {
    width: 15px;
    height: 15px;
  }

  .btn--header .btn__label-full {
    display: none;
  }

  .btn--header .btn__label-short {
    display: inline;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    gap: 0.2rem;
  }

  .site-header__brand {
    order: 1;
    flex-shrink: 0;
    margin-right: auto;
  }

  .site-header__logo {
    max-height: 40px;
  }

  .nav-toggle {
    order: 3;
    margin-left: 0;
    flex-shrink: 0;
  }

  .como-timeline__line {
    display: none;
  }

  .como-timeline__steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .como-step__btn {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 1rem;
  }

  .como-step__icon {
    width: 3.75rem;
    height: 3.75rem;
    flex-shrink: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__nav-list {
    justify-items: center;
  }

  .site-footer__contact .social-row {
    justify-content: center;
  }

  /* Home — textos centralizados no smartphone */
  .page-home .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding-top: clamp(1rem, 4vw, 1.5rem);
  }

  .page-home .hero__content {
    text-align: center;
    align-self: center;
  }

  .page-home .hero__trust {
    justify-content: center;
  }

  .page-home .hero__actions {
    justify-content: center;
  }

  .page-home .hero__accent {
    display: block;
    margin-top: 0.75rem;
  }

  .page-home .section__title--left,
  .page-home .section__eyebrow--left,
  .page-home .sobre__text,
  .page-home .sobre__text p,
  .page-home .sobre__closing,
  .page-home .sobre__scope,
  .page-home .sobre__assinatura {
    text-align: center;
  }

  .page-home .section__title--left::after {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, transparent, var(--color-gold-deep), var(--color-gold), transparent);
  }

  .page-home .areas-item,
  .page-home .areas-item__full {
    align-items: center;
    text-align: center;
  }

  .page-home .pillars-item {
    text-align: center;
  }

  .page-home .como-step__btn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .page-home .como-timeline__text {
    text-align: center;
  }

  .page-home .google-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-home .google-head__rating {
    justify-content: center;
  }

  .page-home .stats-locations {
    text-align: center;
  }

  .page-home .stats-locations__list {
    padding-left: 0;
    list-style: none;
  }

  .page-home .tabs__panel,
  .page-home .tabs__panel-title,
  .page-home .valores-list {
    text-align: center;
  }

  .page-home .valores-list {
    padding-left: 0;
    list-style: none;
  }

  .page-home .checklist li {
    padding-left: 0;
    text-align: center;
  }

  .page-home .checklist li::before {
    position: static;
    display: block;
    margin-bottom: 0.25rem;
  }

  .page-home .accordion__trigger {
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-home .accordion__body {
    text-align: center;
  }

  .page-home .map-embed {
    text-align: center;
  }

  .page-home .videos-head .section__kicker--center {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .areas-grid--ref {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .stats-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .stats-banner__side {
    align-items: center;
    width: 100%;
    max-width: 28rem;
  }

  .stats-banner__text {
    text-align: center;
    max-width: none;
  }

  .stats-locations {
    text-align: left;
    width: 100%;
  }

  .page-home .stats-locations {
    text-align: center;
  }

  .videos-carousel__slide,
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .page-video-tema .video-embed__viewport {
    width: min(100%, 340px);
    max-height: min(80vh, 620px);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.65rem;
  }
}
