/* ========== FONTES ==========
   OBS: A Recoleta original é uma fonte paga (Latinotype). O arquivo que veio
   na pasta da marca é uma versão DEMO e substitui letras acentuadas (ç, ã, ção...)
   por um selo de marca d'água — por isso os títulos usam "Fraunces" (Google Fonts,
   licença gratuita) como substituta visualmente próxima enquanto a licença não é
   comprada. Para trocar depois: compre a Recoleta, atualize o @font-face abaixo
   e troque o valor de --font-title para 'Recoleta'. */
@font-face {
  font-family: 'Recoleta';
  src: url('../assets/fonts/Recoleta-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* ========== VARIÁVEIS ========== */
:root {
  --gold: #C2A66D;
  --gold-dark: #a98c53;
  --graphite: #1C1C1C;
  --white: #FFFFFF;
  --gray: #787878;
  --gray-light: #F5F3EF;
  --font-title: 'Fraunces', serif;
  --font-body: 'Montserrat', sans-serif;
  --shadow: 0 10px 40px rgba(28,28,28,0.08);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== BOTÕES ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--graphite);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: scale(1.07) translateY(-1px);
  background: var(--gold-dark);
  box-shadow: 0 10px 26px rgba(194,166,109,0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
/* brilho sutil que varre o botão periodicamente, chamando atenção sem ser invasivo */
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-20deg);
  animation: btn-shimmer 3.4s ease-in-out infinite;
  pointer-events: none;
}
.btn--primary:hover::after { animation-play-state: paused; opacity: 0; }
@keyframes btn-shimmer {
  0% { left: -60%; }
  38%, 100% { left: 130%; }
}
.btn--sm { padding: 11px 22px; font-size: 13.5px; }
.btn--full { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .btn--primary::after { animation: none; display: none; }
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28,28,28,0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.header--scrolled {
  box-shadow: 0 6px 24px rgba(28,28,28,0.08);
  border-bottom-color: transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: padding 0.3s ease;
}
.header--scrolled .header__inner {
  padding-top: 9px;
  padding-bottom: 9px;
}
.header__logo img {
  height: 44px;
  width: auto;
  transition: height 0.3s ease;
}
.header--scrolled .header__logo img { height: 36px; }

.nav {
  display: flex;
  gap: 36px;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--graphite);
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--gold-dark); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--graphite);
  border-radius: 2px;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(180deg, var(--gray-light) 0%, #ffffff 100%);
  padding: 64px 0 80px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.hero__content,
.hero__form-wrap {
  min-width: 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: var(--graphite);
  margin-bottom: 22px;
}
.hero__title span {
  display: block;
  color: var(--gold-dark);
}

.hero__subtitle {
  font-size: 16.5px;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--graphite);
}
.hero__badges li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C1C1C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- Formulário Hero ---- */
.hero__form-wrap {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.hero__form {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__form h3 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 24px;
  color: var(--graphite);
}
.hero__form-sub {
  font-size: 13.5px;
  color: var(--gray);
  margin-top: -8px;
  margin-bottom: 4px;
}
.hero__form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--graphite);
}
.hero__form input,
.hero__form select {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  padding: 13px 14px;
  border: 1.5px solid #E4E1DA;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--graphite);
  outline: none;
  transition: border-color 0.2s ease;
}
.hero__form input:focus,
.hero__form select:focus {
  border-color: var(--gold);
}
.hero__form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23787878' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }

.hero__form-note {
  font-size: 11.5px;
  color: var(--gray);
  text-align: center;
  margin-top: 2px;
}

/* ========== CABEÇALHO DE SEÇÃO (reutilizável) ========== */
.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.2;
  color: var(--graphite);
  margin-bottom: 16px;
}
.section-title span { color: var(--gold-dark); }
.section-subtitle {
  font-size: 16px;
  color: var(--gray);
}

/* ========== SOBRE / EQUIPE ========== */
.about {
  padding: 96px 0;
  background: var(--white);
}
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about__media,
.about__content {
  min-width: 0;
}
.about__media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about__content .eyebrow { margin-bottom: 14px; }
.about__content .section-title { margin-bottom: 18px; }

.about__text {
  font-size: 16px;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 36px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0;
  margin-bottom: 36px;
  border-top: 1px solid rgba(28,28,28,0.08);
  border-bottom: 1px solid rgba(28,28,28,0.08);
}
.about__stat-number {
  font-family: var(--font-title);
  font-size: 34px;
  color: var(--gold-dark);
}
.about__stat-plus {
  font-family: var(--font-title);
  font-size: 34px;
  color: var(--gold-dark);
}
.about__stat-label {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}
.about__stat--tags .about__stat-label { margin-top: 0; }
.about__stat-tags {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--graphite);
  line-height: 1.5;
  margin-top: 4px;
}

.about__team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.about__team-member h3 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 17px;
  color: var(--graphite);
  margin-bottom: 6px;
}
.about__team-member p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ========== LOCALIZAÇÃO ========== */
.location {
  padding: 96px 0;
  background: var(--white);
}
.location__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.location__content,
.location__map {
  min-width: 0;
}
.location__content .section-title { margin-bottom: 16px; }
.location__text {
  font-size: 16px;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 32px;
}

.location__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.location__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  color: var(--graphite);
  line-height: 1.5;
}
.location__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn--outline {
  background: transparent;
  color: var(--graphite);
  border: 1.5px solid rgba(28,28,28,0.18);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.location__map {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
  background: var(--gray-light);
}
.location__map iframe {
  display: block;
  position: relative;
  z-index: 1;
}
.location__map-link {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: var(--white);
  color: var(--graphite);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(28,28,28,0.15);
}
.location__map-link:hover { color: var(--gold-dark); }

/* ========== DEPOIMENTOS (estilo conversa) ========== */
.testimonials {
  padding: 96px 0;
  background: var(--gray-light);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.chat__bubble {
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(28,28,28,0.05);
}
.chat__bubble p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--graphite);
}
.chat__bubble--in {
  background: var(--white);
  border-radius: 4px 16px 16px 16px;
}

.chat__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.chat__avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat__who {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.chat__who strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite);
}
.chat__tag {
  font-size: 11.5px;
  color: var(--gold-dark);
  font-weight: 600;
}
.chat__stars {
  display: block;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* ========== RESULTADOS ========== */
.results {
  padding: 96px 0;
  background: var(--white);
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--gray-light);
  box-shadow: 0 4px 18px rgba(28,28,28,0.06);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(28,28,28,0.16);
}
.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.result-card:hover img { transform: scale(1.045); }
.result-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,28,0) 55%, rgba(28,28,28,0.65) 100%);
  pointer-events: none;
}
.result-card__tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.results__cta {
  text-align: center;
  margin-top: 48px;
}

/* ========== PROCEDIMENTOS ========== */
.procedures {
  padding: 96px 0;
  background: var(--gray-light);
}
.procedures__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(28,28,28,0.08);
  border: 1px solid rgba(28,28,28,0.08);
}
.procedure-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 40px 28px 32px;
  cursor: pointer;
  transition: background 0.35s ease;
}
.procedure-card:hover { background: #fffdf8; }

.procedure-card__index {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 18px;
  transition: transform 0.35s ease, color 0.35s ease;
}
.procedure-card:hover .procedure-card__index {
  color: var(--gold-dark);
  transform: translateX(4px);
}

.procedure-card__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 20px;
  color: var(--graphite);
  margin-bottom: 10px;
}
.procedure-card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 26px;
  flex-grow: 1;
}
.procedure-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--graphite);
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease, gap 0.25s ease;
}
.procedure-card__link svg {
  transition: transform 0.25s ease;
  animation: arrow-nudge 2.2s ease-in-out infinite;
}
.procedure-card:hover .procedure-card__link {
  color: var(--gold-dark);
  border-color: var(--gold);
}
.procedure-card:hover .procedure-card__link svg {
  animation-play-state: paused;
  transform: translateX(3px);
}
@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .procedure-card__link svg { animation: none; }
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(20,18,15,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.lightbox--open {
  opacity: 1;
  visibility: visible;
}
.lightbox__content {
  max-width: 560px;
  width: 100%;
  text-align: center;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.lightbox--open .lightbox__content { transform: scale(1); }
.lightbox__content img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
}
.lightbox__content figcaption {
  color: var(--white);
  font-size: 14.5px;
  margin-top: 16px;
  opacity: 0.85;
}
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* ========== ANIMAÇÕES DE ENTRADA (SCROLL REVEAL) ========== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform 0.2s ease;
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ========== BARRA DE CTA FIXA (MOBILE) ========== */
.mobile-cta-bar {
  display: none;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__title { font-size: 38px; }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 32px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .about__content { text-align: left; }
  .about__text { max-width: none; }
  .location__inner { grid-template-columns: 1fr; gap: 36px; }
  .location__text { max-width: none; }
  .location__map { aspect-ratio: 16 / 9; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    border-bottom: 1px solid rgba(28,28,28,0.06);
    box-shadow: var(--shadow);
  }
  .nav.nav--open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid rgba(28,28,28,0.05); }
  .nav__toggle { display: flex; }
  .nav__toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle--active span:nth-child(2) { opacity: 0; }
  .nav__toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .whatsapp-float { display: none; }

  body { padding-bottom: 82px; }

  .mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 250;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(28,28,28,0.14);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  }
  .mobile-cta-bar.mobile-cta-bar--visible {
    transform: translateY(0);
  }
  .mobile-cta-bar .btn { flex: 1; }
  .mobile-cta-bar__whatsapp {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .header__logo img { height: 34px; }
  .hero { padding: 40px 0 56px; }
  .hero__title { font-size: 30px; }
  .hero__form { padding: 28px 22px; }
  .header__actions .btn--sm { padding: 9px 14px; font-size: 12.5px; }
  .results { padding: 64px 0; }
  .results__grid { grid-template-columns: 1fr; gap: 18px; }
  .procedures { padding: 56px 0; }
  .section-title { font-size: 28px; }
  .lightbox__close { top: 12px; right: 12px; }
  .about { padding: 64px 0; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .about__stat--tags { grid-column: 1 / -1; }
  .about__team { grid-template-columns: 1fr; gap: 18px; }
  .testimonials { padding: 64px 0; }
  .location { padding: 64px 0; }
  .location__actions { flex-direction: column; }
  .location__actions .btn { width: 100%; }
}
