@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;600&display=swap');

/* ─── Custom Properties ─────────────────────────────────────── */
:root {
  --teal:       #1F5A66;
  --teal-dark:  #173f49;
  --black:      #000000;
  --text:       #2A2A2A;
  --muted:      #6B6B6B;
  --bg:         #FFFFFF;
  --bg-soft:    #F5F5F3;
  --border:     #E8E8E8;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  --max-text: 760px;
  --max-wide: 1160px;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;

  --nav-h: 72px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(36px, 5vw, 54px); }
h2 { font-size: clamp(28px, 3.5vw, 38px); font-weight: 400; }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 19px; font-weight: 500; }

p { margin-bottom: 1.4em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

/* ─── Layout Helpers ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: var(--space-md);
}
.container--text {
  max-width: var(--max-text);
  margin-inline: auto;
  padding-inline: var(--space-md);
}
section { padding-block: var(--space-xl); }

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: var(--space-md);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}
.nav__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}
.nav__logo-desc {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav__link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--teal); }

/* ─── NAV DROPDOWN (desktop) ────────────────────────────────── */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.2s;
  padding: 0;
  font-family: var(--sans);
}
.nav__dropdown:hover .nav__dropdown-trigger { color: var(--teal); }
.nav__dropdown-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav__dropdown:hover .nav__dropdown-arrow { transform: rotate(180deg); }

/* bridge invisível que cobre o gap entre o botão e o menu */
.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--border);
}
.nav__dropdown-item:last-child { border-bottom: none; }
.nav__dropdown-item:hover { background: var(--bg-soft); color: var(--teal); }

/* ─── NAV DRAWER ACCORDION (mobile) ─────────────────────────── */
.nav__drawer-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  font-family: var(--sans);
  padding: 8px 0;
  text-align: left;
}
.nav__drawer-toggle .nav__dropdown-arrow { transition: transform 0.2s; }
.nav__drawer-toggle.is-open .nav__dropdown-arrow { transform: rotate(180deg); }
.nav__drawer-toggle.is-open { color: var(--teal); }
.nav__drawer-sub {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.nav__drawer-sub.is-open { max-height: 300px; }
.nav__link--sub {
  font-size: 15px !important;
  padding: 8px 0 8px 16px !important;
  color: var(--muted) !important;
  border-left: 2px solid var(--border);
  display: block;
}
.nav__link--sub:hover { color: var(--teal) !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 24px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.btn--lg { padding: 14px 32px; font-size: 15px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* ─── Mobile Nav ─────────────────────────────────────────────── */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  z-index: 99;
}
.nav__drawer.is-open { transform: translateY(0); }
.nav__drawer .nav__link { font-size: 16px; padding: 8px 0; }
.nav__drawer .btn { width: 100%; text-align: center; margin-top: var(--space-xs); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + var(--space-xl));
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-lg);
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: var(--space-md);
}
.hero__content { max-width: 600px; }
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
  color: var(--black);
}
.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.hero__image {
  width: 340px;
  flex-shrink: 0;
  opacity: 0.92;
}
.hero__image img {
  width: 100%;
  height: auto;
}

/* ─── Internal Page Hero ─────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--space-xl));
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-sm);
}
.page-hero h1 { margin-bottom: var(--space-sm); }
.page-hero__sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: var(--space-md);
}
.page-hero__location {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* ─── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-sm);
}
.section-title { margin-bottom: var(--space-md); }

/* ─── CARDS (serviços) ───────────────────────────────────────── */
.services { background: var(--bg-soft); }
.services__intro {
  max-width: 600px;
  margin-bottom: var(--space-lg);
  color: var(--muted);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.cards-grid--5 .card:nth-child(4),
.cards-grid--5 .card:nth-child(5) {
  grid-column: span 1;
}
.cards-grid--5 {
  grid-template-columns: repeat(3, 1fr);
}
.cards-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(31,90,102,0.08);
}
.card__title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--black);
}
.card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
  margin-bottom: var(--space-sm);
}
.card__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card__link:hover { gap: 10px; }
.card__link::after { content: '→'; }

/* ─── Prose Section ──────────────────────────────────────────── */
.prose { max-width: var(--max-text); }
.prose p + p { margin-top: 0; }

/* ─── Steps ──────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: var(--space-md); }
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-sm);
  align-items: start;
}
.step__num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-top: 4px;
}
.step__title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}
.step__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── About Section (home) ───────────────────────────────────── */
.about-home { background: var(--bg-soft); }
.about-home__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.profile-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.about-home__cred {
  font-size: 13px;
  color: var(--muted);
  margin-top: var(--space-md);
  line-height: 1.8;
}
.about-home__cred strong { color: var(--text); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
}
.faq-q__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-q__icon::before,
.faq-q__icon::after {
  content: '';
  position: absolute;
  background: var(--teal);
  transition: transform 0.25s;
}
.faq-q__icon::before { width: 100%; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q__icon::after  { width: 1.5px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.is-open .faq-q__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s;
  padding-bottom: 0;
}
.faq-item.is-open .faq-a {
  max-height: 600px;
  padding-bottom: var(--space-md);
}

/* ─── CTA Final ──────────────────────────────────────────────── */
.cta-final {
  background: var(--teal);
  color: #fff;
  text-align: center;
}
.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-sm);
}
.cta-final p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  font-size: 16px;
}
.cta-final__btns {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--teal);
  color: rgba(255,255,255,0.8);
  padding-block: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}
.footer__brand .footer__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.footer__brand .footer__desc {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}
.footer__nav-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
}
.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer__nav-list a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.footer__social {
  margin-top: var(--space-sm);
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__social-link:hover { color: #fff; }

.footer__deco {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 380px;
  opacity: 0.12;
  pointer-events: none;
}

/* ─── Internal Page Sections ─────────────────────────────────── */
.section-alt { background: var(--bg-soft); }
.section-alt--illustrated {
  background-image: url('../assets/bg2.png');
  background-size: cover;
  background-position: center top;
  position: relative;
}
.section-alt--illustrated::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 245, 243, 0.82);
  pointer-events: none;
}
.section-alt--illustrated > * {
  position: relative;
  z-index: 1;
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}
.content-list li {
  font-size: 16px;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}
.content-list li:last-child { border-bottom: none; }

.resources-box {
  border: 1px solid var(--border);
  padding: var(--space-md);
  margin-top: var(--space-md);
  background: var(--bg);
}
.resources-box p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}
.resources-box strong { color: var(--text); }

/* ─── Sobre page ─────────────────────────────────────────────── */
.sobre-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.sobre-meta { display: flex; flex-direction: column; gap: var(--space-md); }
.meta-block { }
.meta-block__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-xs);
}
.meta-block ul { display: flex; flex-direction: column; gap: 8px; }
.meta-block li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.meta-block li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* ─── Contato page ───────────────────────────────────────────── */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contato-info h3 {
  margin-bottom: var(--space-sm);
}
.contato-info p {
  font-size: 16px;
  color: var(--muted);
}
.contato-address {
  font-style: normal;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.modalities-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-lg); }
.modalities-list li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.modalities-list li::before { content: '–'; position: absolute; left: 0; color: var(--teal); }

.whatsapp-card {
  background: var(--teal);
  color: #fff;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}
.whatsapp-card h3 {
  color: #fff;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.whatsapp-card p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 0;
}

/* ─── Background Illustrations ──────────────────────────────── */
.hero--illustrated {
  background-image: url('../assets/bg5.png');
  background-size: cover;
  background-position: center top;
}
.hero--illustrated .hero__headline { color: #fff; }
.hero--illustrated .hero__sub { color: rgba(255,255,255,0.82); }
.hero--illustrated .hero__image { display: none; }

.page-hero--warm {
  background-image: url('../assets/bg4.png');
  background-size: cover;
  background-position: center top;
  border-bottom: none;
  padding-bottom: var(--space-xl);
}

.page-hero--light {
  background-image: url('../assets/bg2.png');
  background-size: cover;
  background-position: center top;
  border-bottom: none;
  padding-bottom: var(--space-xl);
}

.cta-final--illustrated {
  background-image: url('../assets/bg3.png');
  background-size: cover;
  background-position: center;
}

.btn--white {
  background: #fff;
  color: var(--teal);
  border-color: #fff;
}
.btn--white:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}

.cta-final .btn--primary {
  background: #fff;
  color: var(--teal);
  border-color: #fff;
}
.cta-final .btn--primary:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-row-2 { grid-template-columns: 1fr 1fr; }
  .about-home__inner { grid-template-columns: 1fr; }
  .profile-photo { aspect-ratio: 1; max-width: 300px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .sobre-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root {
    --space-xl: 64px;
    --space-lg: 40px;
  }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-row-2 { grid-template-columns: 1fr; }
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .cta-final__btns { flex-direction: column; align-items: center; }
  .step { grid-template-columns: 36px 1fr; }
  .step__num { font-size: 28px; }
}
