/* ============================================================
   BASTOS & SÁ — Main Stylesheet
   ============================================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--color-offwhite);
  border-bottom: 1px solid var(--color-border-light);
  transition: border-color 150ms ease;
}
.nav.scrolled { border-bottom-color: var(--color-sand); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo svg { height: 46px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-navy);
  transition: opacity 150ms ease;
}
.nav__link:hover { opacity: 0.6; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--color-navy);
  color: var(--color-offwhite);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border: 1px solid var(--color-navy);
  transition: background 150ms ease, color 150ms ease;
}
.nav__cta:hover { background: transparent; color: var(--color-navy); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-navy);
  transition: all 150ms ease;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--color-offwhite);
  border-bottom: 1px solid var(--color-sand);
  padding: 24px;
  z-index: 199;
  flex-direction: column;
  gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-navy);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-light);
  display: block;
}
.nav__mobile a:last-child { border-bottom: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  padding: 15px 32px;
  border: 1px solid transparent;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--color-sand);
  color: var(--color-navy);
  border-color: var(--color-sand);
}
.btn--primary:hover { background: var(--color-sand-step-2); border-color: var(--color-sand-step-2); }
.btn--outline-light {
  background: transparent;
  color: var(--color-offwhite);
  border-color: rgba(247,244,238,0.35);
}
.btn--outline-light:hover { border-color: var(--color-offwhite); }
.btn--outline-dark {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn--outline-dark:hover { background: var(--color-navy); color: var(--color-offwhite); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--color-navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Geometric decorative blocks */
.hero__block-right {
  position: absolute;
  top: 0; right: 0;
  width: 24%; height: 100%;
  background: #061d28;
}
.hero__block-right-2 {
  position: absolute;
  top: 0; right: 0;
  width: 12%; height: 100%;
  background: #040f15;
}
.hero__accent-top {
  position: absolute;
  top: 0; right: 0;
  width: 28%; height: 4px;
  background: var(--color-sand);
}
.hero__accent-left {
  position: absolute;
  bottom: 0; left: 64px;
  width: 2px; height: 38%;
  background: var(--color-sand);
  opacity: 0.4;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 64px 100px;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--label-font);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-sand);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.56vw, 2.56rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
  color: var(--color-offwhite);
  letter-spacing: -0.02em;
  max-width: 560px;
  margin-bottom: 24px;
  text-wrap: pretty;
  padding-left: 20px;
  border-left: 2px solid var(--color-sand);
}
.hero__headline em {
  font-style: italic;
  color: var(--color-sand);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: #8AAAB8;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: #5a7282;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: #4a6070;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 100px 0; }
.section--alt { background: var(--color-lightgray); }
.section--dark { background: var(--color-navy); }
.section--warm { background: var(--color-sand-step-1); }

.section__eyebrow {
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--color-sand);
  flex-shrink: 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.section--dark .section__title { color: var(--color-offwhite); }

.section__lead {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.75;
  max-width: 560px;
}
.section--dark .section__lead { color: #7C93A0; }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}

.sobre__text p {
  color: var(--color-graphite);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}
.sobre__text p:last-child { margin-bottom: 0; }

.sobre__img-wrap {
  position: relative;
}
.sobre__img-wrap img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.sobre__img-corner {
  position: absolute;
  bottom: -10px; right: -10px;
  width: 72px; height: 72px;
  background: var(--color-sand);
}
.sobre__img-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--color-sand);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--color-sand);
  border-left: 1px solid var(--color-border-light);
}
.pillar {
  padding: 40px 32px;
  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}
.pillar__icon {
  color: var(--color-sand);
  margin-bottom: 16px;
  display: flex;
}
.pillar__title {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 10px;
}
.pillar__text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ============================================================
   ÁREAS
   ============================================================ */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--color-navy);
  border-left: 1px solid var(--color-border-light);
  margin-top: 56px;
}
.area-card {
  background: var(--color-offwhite);
  padding: 40px 32px;
  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition: background 150ms ease;
}
.area-card:hover { background: #f0ede7; }
.area-card__icon {
  color: var(--color-sand);
  margin-bottom: 20px;
  display: flex;
}
.area-card__title {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.area-card__desc {
  font-size: 14px;
  color: var(--color-graphite);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.area-card__benefit {
  font-size: 13px;
  color: #7C6B52;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  border-left: 2px solid var(--color-sand);
  padding-left: 12px;
}
.area-card__link {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 150ms ease;
  margin-top: auto;
}
.area-card__link:hover { gap: 14px; }
.area-card__link:focus-visible {
  outline: 2px solid var(--color-sand);
  outline-offset: 3px;
}

/* ============================================================
   SÓCIOS
   ============================================================ */
.socios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.socio-card__img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(15%);
  transition: filter 150ms ease;
}
.socio-card:hover .socio-card__img { filter: grayscale(0%); }
.socio-card__body {
  padding: 20px 0 0;
  border-top: 2px solid var(--color-sand);
}
.socio-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: 4px;
}
.socio-card__role {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 14px;
}
.socio-card__bio {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 14px;
}
.socio-card__linkedin {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
  transition: opacity 150ms ease;
}
.socio-card__linkedin:hover { opacity: 0.85; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.dep__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.dep__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.dep__star {
  color: var(--color-sand);
  font-size: 16px;
  line-height: 1;
}
.dep__rating-label {
  font-size: 10px;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: #7C93A0;
}
.dep__google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-sand);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 150ms ease;
}
.dep__google-badge:hover { opacity: 0.7; }

.dep__carousel {
  overflow: hidden;
  margin-top: 48px;
}
.dep__track {
  display: flex;
  gap: 20px;
  transition: transform 350ms ease;
}
.dep-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(203,184,157,0.18);
  padding: 36px 30px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
}
.dep-card__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--fw-light);
  font-style: italic;
  color: var(--color-offwhite);
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.88;
}
.dep-card__author {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-sand);
}
.dep-card__stars { display: flex; gap: 2px; margin-bottom: 14px; }
.dep-card__star { color: var(--color-sand); font-size: 12px; }

.dep__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.dep__btn {
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid rgba(203,184,157,0.25);
  color: var(--color-sand);
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms ease, border-color 150ms ease;
}
.dep__btn:hover { background: rgba(203,184,157,0.08); border-color: var(--color-sand); }
.dep__btn:focus-visible { outline: 2px solid var(--color-sand); outline-offset: 3px; }
.dep__dots { display: flex; gap: 8px; align-items: center; }
.dep__dot {
  width: 6px; height: 6px;
  background: rgba(203,184,157,0.2);
  transition: background 150ms ease, width 150ms ease;
  cursor: pointer;
  border: none;
  padding: 0;
}
.dep__dot.active { background: var(--color-sand); width: 20px; }

/* ============================================================
   CONTEÚDO / CANAL
   ============================================================ */
.canal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  background: var(--color-border-light);
}
.canal-block {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
}
.canal-block--yt { background: var(--color-navy); }
.canal-block--wa { background: var(--color-sand-step-1); border-top: 2px solid var(--color-sand); }
.canal-block__icon { margin-bottom: 20px; }
.canal-block__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--fw-light);
  line-height: 1.15;
  margin-bottom: 14px;
  text-wrap: pretty;
}
.canal-block--yt .canal-block__title { color: var(--color-offwhite); }
.canal-block--wa .canal-block__title { color: var(--color-navy); }
.canal-block__text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 32px;
  flex: 1;
}
.canal-block--yt .canal-block__text { color: #7C93A0; }
.canal-block--wa .canal-block__text { color: var(--color-graphite); }

/* ============================================================
   CONTATO
   ============================================================ */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border-top: 2px solid rgba(203,184,157,0.3);
}
.contato__info { padding: 48px 0 48px 0; padding-right: 64px; }
.contato__map { }
.contato__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  display: block;
  filter: grayscale(40%) contrast(85%) brightness(80%);
}

.contato__wa-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-sand);
  color: var(--color-navy);
  padding: 24px 28px;
  margin-bottom: 40px;
  transition: background 150ms ease;
  text-decoration: none;
}
.contato__wa-cta:hover { background: var(--color-sand-step-2); }
.contato__wa-cta-texts {}
.contato__wa-label {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 3px;
}
.contato__wa-text {
  font-size: 16px;
  font-weight: var(--fw-semibold);
}

.contato__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contato__item-icon { color: var(--color-sand); flex-shrink: 0; margin-top: 2px; }
.contato__item-label {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 3px;
  display: block;
}
.contato__item-value {
  font-size: 15px;
  color: var(--color-offwhite);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #061d28;
  border-top: 1px solid rgba(203,184,157,0.1);
}
.footer__main {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(203,184,157,0.08);
}
.footer__brand {}
.footer__logo-wrap { margin-bottom: 16px; }
.footer__tagline {
  font-size: 12px;
  color: #3d5565;
  line-height: 1.7;
  max-width: 190px;
}
.footer__col-title {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 20px;
  display: block;
}
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 13px;
  color: #7C93A0;
  transition: color 150ms ease;
}
.footer__nav a:hover { color: var(--color-offwhite); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer__contact-icon { color: #4a6070; flex-shrink: 0; margin-top: 2px; }
.footer__contact-text {
  font-size: 13px;
  color: #7C93A0;
  line-height: 1.55;
}
.footer__socials { display: flex; gap: 8px; margin-top: 20px; }
.footer__social {
  width: 34px; height: 34px;
  border: 1px solid rgba(203,184,157,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #4a6070;
  transition: color 150ms ease, border-color 150ms ease;
}
.footer__social:hover { color: var(--color-sand); border-color: var(--color-sand); }
.footer__social:focus-visible { outline: 2px solid var(--color-sand); outline-offset: 3px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 11px; color: #3d5565; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 11px;
  color: #3d5565;
  letter-spacing: var(--tracking-wide);
  transition: color 150ms ease;
}
.footer__legal a:hover { color: var(--color-sand); }

/* ============================================================
   LOGO TIPOGRÁFICO (conforme brand-logo.html do design system)
   ============================================================ */
.logo-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 3px;
}
.logo-wordmark__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--color-navy);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.logo-wordmark__name .amp {
  font-size: 22px;
  opacity: 0.85;
}
.logo-wordmark__sub {
  font-family: 'DM Sans', Helvetica, Arial, sans-serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-graphite);
}

/* Variante inversa (rodapé escuro) */
.logo-wordmark--inv .logo-wordmark__name { color: var(--color-offwhite); }
.logo-wordmark--inv .logo-wordmark__sub  { color: var(--color-sand); }

/* Monograma nav mobile / favicon */
.logo-mono {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}
.logo-mono__accent {
  height: 3px;
  background: var(--color-sand);
}
.logo-mono__box {
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.logo-mono__letters {
  display: flex;
  align-items: center;
}
.logo-mono__b,
.logo-mono__s {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--color-offwhite);
  line-height: 1;
  font-size: 22px;
}
.logo-mono__s { margin-left: -0.12em; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--color-sand);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .nav__inner { padding: 0 40px; }
  .hero__inner { padding: 80px 40px; }
  .hero__scroll { left: 40px; }
  .hero__accent-left { left: 40px; }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .sobre__grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .socios__grid { grid-template-columns: repeat(2, 1fr); }
  .dep-card { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }
  .canal__grid { grid-template-columns: 1fr; }
  .contato__grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 24px; }
  .nav__inner { padding: 0 24px; }
  .hero__inner { padding: 60px 24px 80px; }
  .hero__scroll { display: none; }
  .section { padding: 64px 0; }
  .areas__grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .socios__grid { grid-template-columns: 1fr; }
  .dep-card { flex: 0 0 100%; min-width: 100%; }
  .canal-block { padding: 36px 28px; }
  .contato__info { padding-right: 0; }
  .footer__main { grid-template-columns: 1fr; gap: 32px; }
  .hero__block-right, .hero__block-right-2 { display: none; }
  .hero__headline { font-size: 2.3rem; }
}
