/* ═══════════════════════════════════════════════════
   B6 Incorporadora — Mobile-first CSS
   Breakpoints: 768px (tablet), 1024px (desktop), 1280px (wide)
═══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --red: #e73c38;
  --red-dark: #ce2723;
  --red-darker: #b91511;
  --red-light: #ff928f;
  --orange: #f08236;
  --orange-light: #ffb786;
  --white: #ffffff;
  --grey-50: #f6f6f6;
  --grey-100: #e7e7e7;
  --grey-800: #454545;
  --dark: #484848;
  --mid: #626261;
  --light: #8e8e8e;
  --lighter: #bfbfbf;
  --darker: #2f2f2f;
  --font: 'Inter', sans-serif;
  --r: 8px;
  --shadow: 0 40px 40px -25px rgba(0, 0, 0, .25);
  --fill-0: #ffffff;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

/* ════════════════════════════════════════
   COMPONENTES GLOBAIS
════════════════════════════════════════ */

/* Container */
.u-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Overline */
.overline {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.75px;
  font-weight: 400;
}

.overline--main {
  color: var(--red);
}

.overline--negative {
  color: var(--white);
}

.overline strong {
  font-weight: 700;
}

.overline__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
  white-space: nowrap;
}

.btn:hover {
  opacity: .88;
}

.btn--red {
  background: var(--red);
  color: #fff;
  border-radius: 6px;
}

.btn--orange {
  background: var(--orange);
  color: #fff;
}

.btn--green {
  background: #2e9e5b;
  color: #fff;
  border-radius: 6px;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--mid);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.btn-link:hover {
  opacity: .8;
}

/* Arrow round button */
.arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid var(--red);
  background: transparent;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  transition: background .2s;
}

.arrow-btn:hover {
  background: rgba(231, 60, 56, .1);
}

.arrow-btn--flipped {
  transform: rotate(180deg);
}

/* Section header */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 32px;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title--center {
  align-items: center;
  text-align: center;
}

.heading-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.heading-group--center {
  align-items: center;
  text-align: center;
}

.heading-group h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}

.heading-group h2.white {
  color: #fff;
}

.heading-sub {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--light);
}

/* Features */
.features {
  display: flex;
  gap: 16px;
  align-items: center;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red-dark);
  border-radius: 4px;
  background: rgba(247, 247, 247, .08);
  backdrop-filter: blur(8px);
  padding: 8px;
  flex-shrink: 0;
}

.feature__icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.feature__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--grey-100);
  font-size: 12px;
  text-transform: uppercase;
}

.feature__label {
  opacity: .8;
  font-weight: 400;
}

.feature__value {
  font-weight: 700;
}

/* Card name */
.card-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-name h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--orange-light);
  text-transform: uppercase;
}

.card-name p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   HAMBURGER
════════════════════════════════════════ */
.menu__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 4px;
  flex-shrink: 0;
  z-index: 1001;
}

.menu__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

.menu__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.menu__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════
   MENU — MOBILE BASE
════════════════════════════════════════ */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.menu__bg-left {
  display: none;
}

.menu__logo-wrap {
  display: flex;
  align-items: center;
}

.menu__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Mobile drawer */
.menu__nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, box-shadow .35s;
  z-index: 999;
}

.menu__nav.is-open {
  max-height: 640px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.menu__link {
  display: block;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--grey-800);
  border-bottom: 1px solid var(--grey-50);
  transition: color .2s;
}

.menu__link:hover,
.menu__link--active {
  color: var(--red);
}

.menu__dot {
  display: none;
}

.menu__cta--desktop {
  display: none;
}

.menu__cta--mobile {
  display: flex;
  margin: 16px 20px 24px;
  justify-content: center;
  border-radius: 6px;
}

/* ── Dropdown ── */
.menu__dropdown {
  position: relative;
}

.menu__dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  text-align: left;
}

.menu__dropdown-arrow {
  flex-shrink: 0;
  transition: transform .2s;
}

.menu__dropdown.is-open .menu__dropdown-arrow {
  transform: rotate(180deg);
}

.menu__dropdown-menu {
  display: none;
  background: var(--grey-50);
}

.menu__dropdown.is-open .menu__dropdown-menu {
  display: block;
}

.menu__dropdown-item {
  display: block;
  padding: 13px 20px 13px 32px;
  font-size: 15px;
  color: var(--grey-800);
  border-bottom: 1px solid var(--grey-100);
  transition: color .2s;
}

.menu__dropdown-item:hover {
  color: var(--red);
}

/* ════════════════════════════════════════
   HERO — MOBILE BASE
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 64px;
  /* menu height */
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}

.hero__bg-img.is-active {
  opacity: 1;
}

/* ── Hero slide content ── */
.hero__slide-content {
  display: none;
  flex-direction: column;
  gap: 24px;
}

.hero__slide-content.is-active {
  display: flex;
}

/* ── Hero bottom bar slides ── */

/* ── Hero dots ── */
.hero__dots {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}

.hero__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* ── Hero arrows ── */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.35);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.hero__arrow:hover {
  background: rgba(0,0,0,.6);
  border-color: rgba(255,255,255,.7);
}

.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

@media (min-width: 1024px) {
  .hero__arrow--prev { left: 40px; }
  .hero__arrow--next { right: 40px; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__overlay--gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
}

.hero__overlay--dark {
  background: rgba(0, 0, 0, .2);
}

.hero__nav {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.hero__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__spacer {
  width: 32px;
  height: 3px;
  background: var(--red);
}

.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__heading h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.5px;
}

.hero__sub {
  font-size: 15px;
  font-weight: 700;
  color: var(--red-light);
  letter-spacing: 0.5px;
}

/* Mobile: barra vermelha largura total, scroll oculto */
.hero__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}

.hero__bar-wrap {
  width: 100%;
}

.hero__bar {
  background: var(--red);
  padding: 20px;
  display: none;
  align-items: center;
}

.hero__bar.is-active {
  display: flex;
}

.hero__bar .features {
  flex-wrap: nowrap;
  gap: 16px;
}

/* "Role para baixo" — oculto no mobile */
.hero__scroll {
  display: none;
}

/* ════════════════════════════════════════
   SESSION FEATURED — MOBILE BASE
════════════════════════════════════════ */
.session-featured {
  padding: 32px 0;
  background: #fff;
}

.session-featured .u-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-card {
  position: relative;
  min-height: 460px;
  border-radius: var(--r);
  border-bottom: 8px solid var(--red);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-card__bg {
  position: absolute;
  inset: 0;
}

.featured-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.featured-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .72) 100%);
}

.featured-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 20px 20px 28px;
  border-left: 6px solid var(--red);
}


.featured-card__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ════════════════════════════════════════
   SESSION IMÓVEIS — MOBILE BASE
════════════════════════════════════════ */
.session-imoveis {
  background: var(--grey-50);
  padding: 56px 0;
}

.session-imoveis .u-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cards-carousel {
  display: flex;
  align-items: center;
  gap: 0;
}

.carousel-btn {
  display: none;
}

.cards-wrap {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 4px 20px 16px;
  flex: 1;
}

.cards-wrap::-webkit-scrollbar {
  display: none;
}

.card-imovel {
  position: relative;
  min-width: 82vw;
  width: 82vw;
  height: 460px;
  scroll-snap-align: start;
  border-radius: var(--r);
  border-bottom: 6px solid var(--red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  flex-shrink: 0;
  transition: transform .3s;
}

.card-imovel:hover {
  transform: translateY(-4px);
}

.card-imovel__bg {
  position: absolute;
  inset: 0;
}

.card-imovel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.card-imovel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .82));
}

.card-imovel__product-logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 42px;
  object-fit: contain;
  z-index: 2;
}

.card-imovel__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* ════════════════════════════════════════
   SESSION MCMV — MOBILE BASE
════════════════════════════════════════ */
.session-mcmv {
  background: #f7f7f7;
  padding: 72px 0;
}


.mcmv__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* left column */
.mcmv__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 640px;
}

.mcmv__left h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1.25;
  margin: 0;
}

.mcmv__left > p {
  font-size: 15px;
  color: #626261;
  line-height: 1.7;
  margin: 0;
}

/* teaser stats */
.mcmv__teaser-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.mcmv__teaser-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mcmv__teaser-stat strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--red, #e73c38);
  line-height: 1;
}

.mcmv__teaser-stat span {
  font-size: 11px;
  color: #bfbfbf;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.mcmv-page__logo {
  width: 100px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
}

/* benefits grid */
.mcmv__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mcmv__benefit {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mcmv__benefit-icon {
  width: 48px;
  height: 48px;
  background: #2e9e5b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mcmv__benefit h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0;
  line-height: 1.3;
}

.mcmv__benefit p {
  font-size: 13px;
  color: #626261;
  margin: 0;
  line-height: 1.5;
}

/* ── Hero (página mcmv.html) ── */
.mcmv__hero {
  background: #1e1e1e;
  padding: 72px 0 64px;
}

.mcmv__hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mcmv__hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 560px;
}

.mcmv__hero-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.mcmv__highlight {
  color: #2e9e5b;
}

.mcmv__hero-text p {
  font-size: 15px;
  color: #bfbfbf;
  line-height: 1.7;
  margin: 0;
}

.mcmv__hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  background: #163352;
  overflow: hidden;
}

.mcmv__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.mcmv__stat:last-child {
  border-right: none;
}

.mcmv__stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #2e9e5b;
  line-height: 1;
}

.mcmv__stat-label {
  font-size: 11px;
  color: #bfbfbf;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── Faixas de renda ── */
.mcmv__faixas-section {
  padding: 64px 0;
  background: #f7f7f7;
}

.mcmv__faixas-header {
  margin-bottom: 32px;
}

.mcmv__faixas-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0 0 8px;
}

.mcmv__faixas-header p {
  font-size: 14px;
  color: #626261;
  margin: 0;
}

.mcmv__faixas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.mcmv__faixa {
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
}

.mcmv__faixa:hover {
  border-color: var(--red, #e73c38);
  box-shadow: 0 4px 20px rgba(231, 60, 56, .1);
}

.mcmv__faixa--destaque {
  border-color: var(--red, #e73c38);
  background: #fff8f8;
}

.mcmv__faixa-tag {
  display: inline-flex;
  align-items: center;
  background: var(--red, #e73c38);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

.mcmv__faixa--destaque .mcmv__faixa-tag {
  background: var(--red, #e73c38);
}

.mcmv__faixa-renda {
  font-size: 20px;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 1;
}

.mcmv__faixa p {
  font-size: 13px;
  color: #626261;
  margin: 0;
  line-height: 1.5;
}

.mcmv__faixa-beneficios {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mcmv__faixa-beneficios li {
  font-size: 13px;
  color: #2f2f2f;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mcmv__faixa-beneficios li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red, #e73c38);
  flex-shrink: 0;
}

/* ── Como contratar ── */
.mcmv__steps-section {
  padding: 64px 0;
  background: #fff;
}

.mcmv__steps-header {
  margin-bottom: 36px;
}

.mcmv__steps-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0 0 8px;
}

.mcmv__steps-header p {
  font-size: 14px;
  color: #626261;
  margin: 0;
}

.mcmv__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.mcmv__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.mcmv__step-num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #2e9e5b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mcmv__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.mcmv__step-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0;
}

.mcmv__step-body p {
  font-size: 13px;
  color: #626261;
  margin: 0;
  line-height: 1.5;
}

/* ── FAQ ── */
.mcmv__faq-section {
  padding: 64px 0;
  background: #f7f7f7;
}

.mcmv__faq-header {
  margin-bottom: 28px;
}

.mcmv__faq-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0;
}

.mcmv__faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.mcmv__faq-item {
  border-bottom: 1.5px solid #e5e5e5;
}

.mcmv__faq-item:last-child {
  border-bottom: none;
}

.mcmv__faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.mcmv__faq-btn span {
  font-size: 15px;
  font-weight: 600;
  color: #2f2f2f;
  line-height: 1.3;
}

.mcmv__faq-icon {
  flex-shrink: 0;
  transition: transform .25s;
}

.mcmv__faq-item.is-open .mcmv__faq-icon {
  transform: rotate(180deg);
}

.mcmv__faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.mcmv__faq-item.is-open .mcmv__faq-answer {
  display: block;
}

.mcmv__faq-answer p {
  font-size: 14px;
  color: #626261;
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════
   SESSION SOBRE — MOBILE BASE
════════════════════════════════════════ */
.session-sobre {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
  background: #fff;
}

.sobre__bg-red {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: #ea3b37;
}

.session-sobre .u-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 56px;
}

.sobre__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.sobre__title h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.sobre__frame {
  display: flex;
  flex-direction: column;
  border-radius: var(--r);
  overflow: hidden;
}

.sobre__frame-bg {
  position: relative;
  width: 100%;
  height: 240px;
  flex-shrink: 0;
}

.sobre__frame-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.sobre__frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .5));
}

.sobre__text-card {
  background: rgba(47, 47, 47, .95);
  border-bottom: 6px solid var(--red);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.sobre__text-card strong {
  font-weight: 700;
}

.sobre__cta {
  padding-top: 24px;
  display: flex;
  justify-content: center;
}

/* ════════════════════════════════════════
   FOOTER — MOBILE BASE
════════════════════════════════════════ */
.footer {
  background: #fff;
}

.footer__contact-section {
  padding: 32px 0 0;
}

.footer__contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-cards {
  background: var(--darker);
  border-radius: var(--r);
  box-shadow: 0 40px 40px -25px rgba(185, 21, 17, .25);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-bottom: -56px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 28px 20px;
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-card__label {
  font-size: 14px;
  font-weight: 400;
  color: var(--lighter);
  text-align: center;
}

.contact-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.contact-card__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

.footer__bottom {
  background: linear-gradient(to bottom, #eb5650 0%, var(--darker) 85%);
  padding: 96px 20px 40px;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer__top-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  height: 38px;
  object-fit: contain;
  align-self: flex-start;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social>span {
  font-size: 13px;
  color: #fff;
}

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

.footer__social-icons a {
  display: flex;
}

.footer__social-icons img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  transition: opacity .2s;
}

.footer__nav-link:hover {
  opacity: .75;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
}

.footer__contact-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: #fff;
  text-decoration: underline;
}

.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
}

.footer__made-by {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer__agency {
  height: 14px;
  object-fit: contain;
}

/* ════════════════════════════════════════
   MOBILE ONLY  < 768px
════════════════════════════════════════ */
@media (max-width: 767px) {
  .sobre__cta {
    background: rgba(47, 47, 47, .95);
    padding: 24px 24px 32px;
  }

  .hero__bar .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    width: 100%;
  }

  .featured-card__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
  }
}

/* ════════════════════════════════════════
   TABLET  ≥ 768px
════════════════════════════════════════ */
@media (min-width: 768px) {
  .u-container {
    padding: 0 40px;
  }

  /* MCMV */
  .mcmv__benefit {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

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

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

  /* Overline */
  .overline {
    font-size: 13px;
  }

  .overline__icon {
    width: 22px;
    height: 22px;
  }

  /* Section header */
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 28px;
  }

  .heading-group h2 {
    font-size: 28px;
  }

  .heading-sub {
    font-size: 19px;
  }

  /* Features */
  .features {
    gap: 24px;
  }

  .feature__icon {
    width: 40px;
    height: 40px;
  }

  .feature__icon img {
    width: 16px;
    height: 16px;
  }

  .feature__text {
    font-size: 13px;
  }

  /* Card name */
  .card-name h3 {
    font-size: 24px;
  }

  .card-name p {
    font-size: 16px;
  }

  /* Menu — tablet stays mobile-style */
  .menu {
    height: 70px;
  }

  .menu__logo {
    height: 44px;
  }

  .menu__nav {
    top: 70px;
  }

  /* Hero */
  .hero {
    padding-top: 70px;
  }

  .hero__content {
    padding: 32px 40px 40px;
    gap: 28px;
  }

  .hero__heading h1 {
    font-size: 36px;
  }

  .hero__sub {
    font-size: 18px;
  }

  .hero__bar {
    padding: 20px 48px;
    border-radius: 0 60px 0 0;
  }

  .hero__bar .features {
    gap: 28px;
  }

  /* Featured */
  .session-featured {
    padding: 80px 0;
  }

  .session-featured .u-container {
    gap: 0px;
  }

  .featured-card {
    min-height: 480px;
  }

  .featured-card__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px;
    border-left: 10px solid var(--red);
    gap: 32px;
  }

  .featured-card__left {
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
  }

  .featured-card__features {
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 32px;
  }

  .card-heading {
    gap: 14px;
  }

  /* Imóveis */
  .session-imoveis {
    padding: 80px 0;
  }

  .session-imoveis .u-container {
    gap: 40px;
  }

  .cards-wrap {
    padding: 4px 40px 16px;
    gap: 24px;
  }

  .card-imovel {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: 0;
    width: calc((100% - 24px) / 2);
    height: 520px;
  }

  .cards-carousel {
    position: relative;
  }

  .carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 9999px;
    border: 1px solid var(--dark);
    background: transparent;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    transition: background .2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .carousel-btn--prev {
    left: -26px;
  }

  .carousel-btn--next {
    right: -26px;
  }

  .carousel-btn:hover {
    background: rgba(72, 72, 72, .1);
  }

  .cards-wrap {
    padding: 4px 0 16px;
    width: 100%;
  }

  /* Sobre */
  .sobre__bg-red {
    height: 340px;
  }

  .session-sobre .u-container {
    padding-top: 72px;
    gap: 40px;
  }

  .sobre__title h2 {
    font-size: 28px;
  }

  .sobre__frame {
    flex-direction: row;
    align-items: flex-end;
    min-height: 400px;
  }

  .sobre__frame-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .sobre__frame-bg img {
    border-radius: var(--r);
  }

  .sobre__frame {
    position: relative;
    overflow: hidden;
  }

  .sobre__frame-overlay {
    position: absolute;
    inset: 0;
  }

  .sobre__text-card {
    position: relative;
    z-index: 2;
    width: 65%;
    min-width: 320px;
    border-radius: 8px 8px 0 0;
    margin: 0;
    font-size: 15px;
  }

  .sobre__cta {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
  }

  /* Footer contact */
  .contact-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-card {
    flex: 1 1 45%;
    min-width: 180px;
  }

  .contact-card__divider {
    width: 1px;
    height: auto;
    align-self: stretch;
  }

  .contact-card__title {
    font-size: 26px;
  }

  /* Footer bottom */
  .footer__bottom {
    padding: 110px 40px 50px;
  }

  .footer__top-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer__social {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .footer__contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer__copyright {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
  }
}

/* ════════════════════════════════════════
   DESKTOP  ≥ 1024px
════════════════════════════════════════ */
@media (min-width: 1024px) {
  .u-container {
    padding: 0 40px;
  }

  /* MCMV */
  .mcmv__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .mcmv__left {
    flex: 0 0 380px;
  }

  .mcmv__left h2 {
    font-size: 36px;
  }

  .mcmv__benefits {
    flex: 1;
  }

  .mcmv__hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .mcmv__hero-text {
    flex: 0 0 45%;
    max-width: none;
  }

  .mcmv__hero-text h2 {
    font-size: 40px;
  }

  .mcmv__hero-stats {
    flex: 1 1 0;
    flex-direction: column;
    border-radius: 16px;
  }

  .mcmv__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 20px;
  }

  .mcmv__stat:last-child {
    border-bottom: none;
  }

  .mcmv__stat-value {
    font-size: 32px;
  }

  .mcmv__stat-label {
    font-size: 13px;
  }

  .mcmv__stat {
    padding: 28px 32px;
  }

  .mcmv__faixas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .mcmv__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Menu — full desktop */
  .menu {
    height: 75px;
    justify-content: flex-start;
    padding: 0;
    gap: 0;
    background: rgba(255, 255, 255, .45);
  }

  .menu__bg-left {
    display: none;
  }

  .menu__logo-wrap {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 0 0 8px 8px;
    padding: 30px 20px 18px;
    height: 110px;
    display: flex;
    align-items: flex-start;
    margin-left: 40px;
    flex-shrink: 0;
  }

  .menu__logo {
    height: 56px;
    width: 110px;
  }

  .menu__hamburger {
    display: none;
  }

  /* Desktop nav — horizontal */
  .menu__nav {
    position: static;
    max-height: none;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    flex: 1;
    gap: 28px;
    padding: 0 20px 0 40px;
    z-index: 1;
  }

  .menu__link {
    display: inline;
    padding: 0;
    border-bottom: none;
    font-size: 14px;
    white-space: nowrap;
  }

  .menu__dot {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--grey-800);
    opacity: .4;
    flex-shrink: 0;
  }

  .menu__cta--mobile {
    display: none;
  }

  .menu__dropdown-toggle {
    width: auto;
  }

  .menu__dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    min-width: 155px;
    padding: 6px 0;
    z-index: 200;
  }

  .menu__dropdown-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
  }

  .menu__dropdown:hover .menu__dropdown-menu {
    display: block;
  }

  .menu__dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: none;
  }

  .menu__cta--desktop {
    display: inline-flex;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    padding: 12px 18px;
    font-size: 14px;
    gap: 10px;
    margin-right: max(40px, calc((100vw - 1440px) / 2 + 40px));
  }

  /* Button class used in HTML without --desktop modifier */
  .menu__cta {
    display: inline-flex;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    padding: 12px 18px;
    font-size: 14px;
    gap: 10px;
    margin-right: max(40px, calc((100vw - 1440px) / 2 + 40px));
  }

  /* Hero */
  .hero {
    padding-top: 0;
    min-height: 860px;
  }

  .hero__nav {
    display: flex;
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    z-index: 5;
    pointer-events: none;
  }

  .hero__arrow {
    pointer-events: all;
    background: transparent;
    border: none;
    padding: 0;
  }

  .hero__arrow img {
    width: 38px;
    height: 60px;
    object-fit: contain;
  }

  .hero__arrow--left {
    transform: rotate(180deg);
  }

  .hero__content {
    padding: 40px max(40px, calc((100vw - 1440px) / 2 + 40px)) 48px;
    gap: 40px;
    align-items: flex-start;
  }

  .hero__heading h1 {
    font-size: 44px;
  }

  .hero__sub {
    font-size: 20px;
  }

  /* Faixa inferior: bar vermelha (~80%) + lado direito transparente */
  .hero__bottom {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    background: transparent;
  }

  .hero__bar-wrap {
    flex: 0 0 80%;
    position: relative;
    z-index: 2;
  }

  .hero__bar {
    border-radius: 0 85px 0 0;
    padding: 32px 64px 32px 200px;
    overflow-x: visible;
    position: relative;
    z-index: 2;
  }

  .hero__bar .features {
    gap: 32px;
    flex-wrap: nowrap;
  }

  /* Lado direito: apenas "Role para baixo" + seta */
  .hero__scroll {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    padding-right: 48px;
    gap: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
  }

  /* Featured */
  .session-featured {
    padding: 120px 0;
  }

  .session-featured .u-container {
    gap: 0;
  }

  .featured-card {
    min-height: 520px;
  }

  .featured-card__content {
    padding: 32px 56px;
    border-left: 12px solid var(--red);
    gap: 40px;
  }

  .featured-card__features {
    gap: 48px;
  }

  /* Imóveis */
  .session-imoveis {
    padding: 120px 0;
  }

  .session-imoveis .u-container {
    gap: 56px;
  }

  .cards-wrap {
    padding: 4px 0 16px;
    gap: 28px;
  }

  .card-imovel {
    flex: 0 0 calc((100% - 56px) / 3);
    min-width: 0;
    width: calc((100% - 56px) / 3);
    height: 580px;
  }

  .card-imovel__product-logo {
    left: 140px;
    transform: none;
    width: 110px;
    height: 46px;
  }

  .card-imovel__content {
    width: 340px;
  }

  /* Sobre */
  .sobre__bg-red {
    height: 700px;
  }

  .session-sobre .u-container {
    padding-top: 90px;
    gap: 50px;
  }

  .sobre__title h2 {
    font-size: 32px;
  }

  .sobre__frame {
    min-height: 680px;
    align-items: flex-end;
    padding: 0 80px;
    box-shadow: var(--shadow);
  }

  .sobre__text-card {
    width: 60%;
    font-size: 17px;
    padding: 48px 56px;
  }

  /* Footer contact */
  .contact-cards {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .contact-card {
    flex: 1;
    height: 252px;
  }

  .contact-card__divider {
    width: 1px;
    height: 253px;
    align-self: auto;
  }

  .contact-card__title {
    font-size: 30px;
  }

  /* Footer bottom */
  .footer__bottom {
    padding: 120px 60px 60px;
  }

  .footer__bottom-inner {
    gap: 22px;
  }

  .footer__nav {
    flex-direction: row;
    gap: 60px;
  }

  .footer__contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
  }
}

/* ════════════════════════════════════════
   WIDE  ≥ 1280px
════════════════════════════════════════ */
@media (min-width: 1280px) {
  .u-container {
    padding: 0 10px;
  }

  .menu__bg-left {
    width: 400px;
  }

  .menu__logo-wrap {
    margin-left: 240px;
    height: 119px;
    padding: 34px 21px 22px;
  }

  .menu__logo {
    height: 67px;
    width: 125px;
  }

  .menu__nav {
    gap: 36px;
    padding: 0 32px 0 56px;
  }

  .menu__link {
    font-size: 16px;
  }

  .menu__cta--desktop {
    padding: 15px 22px;
    font-size: 16px;
    gap: 14px;
    margin-right: max(10px, calc((100vw - 1440px) / 2 + 10px));
  }

  .menu__cta {
    padding: 15px 22px;
    font-size: 16px;
    gap: 14px;
    margin-right: max(10px, calc((100vw - 1440px) / 2 + 10px));
  }

  .hero__content {
    padding: 48px 239px 56px;
    gap: 56px;
  }

  .hero__heading h1 {
    font-size: 48px;
  }

  .hero__sub {
    font-size: 22px;
  }

  .hero__bar {
    padding: 36px 80px 32px 241px;
    border-radius: 0 85px 0 0;
  }

  .hero__bar-wrap {
    flex: 0 0 78%;
  }

  .hero__product-logo {
    height: 60px;
  }

  .hero__bar {
    padding: 36px 80px 32px 241px;
  }

  .hero__bottom-right {
    padding: 24px 40px 24px 40px;
  }

  .section-header {
    margin-bottom: 64px;
  }

  .heading-group h2 {
    font-size: 32px;
  }

  .heading-sub {
    font-size: 22px;
  }

  .session-featured {
    padding: 140px 0;
  }

  .featured-card {
    min-height: 544px;
  }

  .session-imoveis {
    padding: 140px 0;
  }

  .cards-wrap {
    gap: 32px;
  }

  .card-imovel {
    flex: 0 0 calc((100% - 64px) / 3);
    min-width: 0;
    width: calc((100% - 64px) / 3);
    height: 626px;
  }

  .card-imovel__product-logo {
    left: 170px;
    width: 119px;
    height: 50px;
  }

  .card-imovel__content {
    width: 391px;
  }

  .sobre__frame {
    min-height: 745px;
    padding: 0 91px;
  }

  .sobre__text-card {
    width: 62%;
    font-size: 18px;
    padding: 53px 61px;
  }

  .footer__bottom {
    padding: 120px 65px 65px;
  }

  .footer__nav {
    gap: 81px;
  }

  .contact-card__title {
    font-size: 32px;
  }
}

/* ════════════════════════════════════════
   NOTEBOOK  1280px – 1439px
════════════════════════════════════════ */
@media (min-width: 1280px) and (max-width: 1439px) {
  .u-container {
    padding: 0 40px;
  }

  /* Menu — reset to 1024px values */
  .menu__logo-wrap {
    margin-left: 40px;
    height: 110px;
    padding: 30px 20px 18px;
  }

  .menu__logo {
    height: 56px;
    width: 110px;
  }

  .menu__nav {
    gap: 20px;
    padding: 0 16px 0 32px;
  }

  .menu__link {
    font-size: 14px;
  }

  .menu__cta--desktop,
  .menu__cta {
    padding: 12px 18px;
    font-size: 14px;
    gap: 10px;
    margin-right: 32px;
  }

  /* Hero — reset to 1024px values */
  .hero__content {
    padding: 40px 40px 48px;
    gap: 40px;
  }

  .hero__bar {
    padding: 32px 64px 32px 40px;
  }

  .hero__bar-wrap {
    flex: 0 0 80%;
  }
}

/* ══════════════════════════════════════════
   LIGHTBOX (galerias de empreendimentos)
   ══════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 60px 20px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, .24);
}

.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}

.lightbox__btn:hover {
  background: rgba(255, 255, 255, .24);
}

.lightbox__btn--prev {
  left: 12px;
}

.lightbox__btn--next {
  right: 12px;
}

@media (min-width: 768px) {
  .lightbox__btn--prev {
    left: 24px;
  }

  .lightbox__btn--next {
    right: 24px;
  }
}

/* ══════════════════════════════════════════
   BOTÃO FLUTUANTE — WHATSAPP
   ══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
  z-index: 500;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .38);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (min-width: 768px) {
  .whatsapp-float {
    right: 28px;
    bottom: 28px;
    width: 62px;
    height: 62px;
  }

  .whatsapp-float svg {
    width: 34px;
    height: 34px;
  }
}