/* -----------------------------------------------------------------------------
   ENGFER � Estilos Principais
   Componentes: Header, Hero, Se��es, Cards, Footer, WhatsApp
----------------------------------------------------------------------------- */

/* ------------------------------------------------------------------
   HEADER
------------------------------------------------------------------ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: height var(--transition-base),
              background-color var(--transition-base),
              backdrop-filter var(--transition-base),
              box-shadow var(--transition-base);
}

.header.transparent {
  background-color: transparent;
}

.header.scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--container-px) 16px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
  }

.header__logo:hover {
  opacity: 0.8;
}

.header__logo img {
  height:  72px;
  width: auto;
  transition: filter var(--transition-base);
}

/* Quando transparente no hero (logo precisa ser vis�vel sobre foto) */
.header.transparent .header__logo img {
  filter: brightness(0) invert(1);
}

.header.scrolled .header__logo img {
  filter: none;
  height: 72px;
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav-link {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.02em;
  color: var(--color-white);
  position: relative;
  transition: color var(--transition-fast);
  padding: var(--space-1) 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-turquoise);
  transition: width var(--transition-base);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header.scrolled .header__nav-link {
  color: var(--color-graphite);
}

.header__nav-link:hover {
  color: var(--color-turquoise-light);
}

.header.scrolled .header__nav-link:hover {
  color: var(--color-turquoise);
}

/* Bot�o CTA header */
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.02em;
  background-color: var(--color-turquoise);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.btn-header-cta:hover {
  background-color: var(--color-turquoise-dark);
  transform: translateY(-1px);
}

.btn-header-cta svg {
  width: 16px;
  height: 16px;
}

/* Menu hamb�rguer mobile */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-white);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-fast), background-color var(--transition-base);
  transform-origin: center;
}

.header.scrolled .header__hamburger span {
  background-color: var(--color-graphite);
}

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

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

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

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  padding: var(--space-8);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: var(--weight-light);
  color: var(--color-graphite);
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-turquoise);
}

.mobile-menu__cta {
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-10);
  background-color: var(--color-turquoise);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: background-color var(--transition-fast);
}

.mobile-menu__cta:hover {
  background-color: var(--color-turquoise-dark);
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-graphite);
  cursor: pointer;
  background: none;
  border: none;
}

/* ------------------------------------------------------------------
   HERO
------------------------------------------------------------------ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Overlay suave somente na �rea do conte�do (gradient da esquerda/baixo) */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10, 20, 22, 0.62) 0%,
    rgba(10, 20, 22, 0.32) 55%,
    rgba(10, 20, 22, 0.05) 100%
  ),
  linear-gradient(
    to top,
    rgba(10, 20, 22, 0.45) 0%,
    transparent 55%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--container-px);
  padding-bottom:  clamp(var(--space-24), 24vh, calc(var(--space-32) + var(--space-4)));
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.25em;
  color: var(--color-turquoise-light);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: var(--space-6);
  max-width: 680px;
  color: var(--color-white);
}

.hero__headline em {
  font-style: italic;
  color: var(--color-turquoise);
}

.hero__body {
  font-family: var(--font-sans);
  font-size: clamp(var(--text-base), 1.5vw, var(--text-md));
  font-weight: var(--weight-light);
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Bot�es globais */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background-color: var(--color-turquoise);
  color: var(--color-white);
  border-color: var(--color-turquoise);
}

.btn--primary:hover {
  background-color: var(--color-turquoise-dark);
  border-color: var(--color-turquoise-dark);
  box-shadow: 0 6px 20px rgba(42, 173, 167, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--color-graphite);
  border-color: var(--color-graphite);
}

.btn--outline-dark:hover {
  background-color: var(--color-graphite);
  color: var(--color-white);
}

.btn--outline-turquoise {
  background-color: transparent;
  color: var(--color-turquoise);
  border-color: var(--color-turquoise);
}

.btn--outline-turquoise:hover {
  background-color: var(--color-turquoise);
  color: var(--color-white);
}

/* Seta na CTA */
.btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0.55;
  transition: opacity var(--transition-fast);
}

.hero__scroll-hint:hover {
  opacity: 0.9;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.5); }
}

.hero__scroll-text {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ------------------------------------------------------------------
   FAIXA DE DIFERENCIAIS
------------------------------------------------------------------ */

.diferenciais-strip {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
}

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

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-10) var(--space-8);
  position: relative;
}

.diferencial-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: var(--color-border);
}

.diferencial-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-turquoise);
}

.diferencial-item__icon svg {
  width: 100%;
  height: 100%;
}

.diferencial-item__content {}

.diferencial-item__title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  color: var(--color-graphite);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.diferencial-item__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
}

/* ------------------------------------------------------------------
   EMPREENDIMENTOS
------------------------------------------------------------------ */

.section-empreendimentos {
  padding: var(--space-24) 0;
  background-color: var(--color-off-white);
}

.section-empreendimentos__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
  gap: var(--space-6);
}

.section-empreendimentos__intro {
  max-width: 520px;
}

.section-empreendimentos__intro p {
  margin-top: var(--space-4);
  font-size: var(--text-base);
  color: var(--color-muted);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  color: var(--color-graphite);
  padding: var(--space-3) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: border-color var(--transition-fast),
              color var(--transition-fast),
              box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.btn-link:hover {
  border-color: var(--color-turquoise);
  color: var(--color-turquoise);
  box-shadow: var(--shadow-sm);
}

.btn-link:hover svg {
  transform: translateX(4px);
}

/* Grid de cards */
.empreendimentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--color-border-light);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}

/* Card de empreendimento */
.empreend-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.empreend-card:hover {
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.empreend-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background-color: var(--color-sand);
}

.empreend-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.empreend-card:hover .empreend-card__image img {
  transform: scale(1.04);
}

/* Badge de status */
.empreend-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-1) var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-turquoise-dark);
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Conte�do do card */
.empreend-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.empreend-card__location {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.empreend-card__location svg {
  width: 12px;
  height: 12px;
  color: var(--color-turquoise);
  flex-shrink: 0;
}

.empreend-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: var(--weight-regular);
  color: var(--color-graphite);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.empreend-card__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-5);
}

.empreend-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-graphite);
  transition: color var(--transition-fast);
}

.empreend-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.empreend-card:hover .empreend-card__link {
  color: var(--color-turquoise);
}

.empreend-card:hover .empreend-card__link svg {
  transform: translateX(5px);
}

/* ------------------------------------------------------------------
   SE��O INSTITUCIONAL � A ENGFER
------------------------------------------------------------------ */

.section-institucional {
  padding: var(--space-24) 0;
  background-color: var(--color-cream);
  overflow: hidden;
}

.institucional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}

.institucional-content {
  max-width: 520px;
}

.institucional-content .section-title {
  margin-bottom: var(--space-6);
}

.institucional-content p {
  font-size: var(--text-md);
  color: var(--color-mid);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

/* M�tricas demonstrativas */
.institucional-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-border);
}

.metric-item {}

.metric-item__value {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
  color: var(--color-graphite);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.metric-item__value sup {
  font-size: 0.5em;
  vertical-align: super;
}

.metric-item__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.metric-item__note {
  display: block;
  font-size: 10px;
  color: var(--color-stone);
  margin-top: 2px;
  font-style: italic;
}

/* Imagem institucional */
.institucional-visual {
  position: relative;
}

.institucional-visual__main {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0;
}

.institucional-visual__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.institucional-visual__accent {
  position: absolute;
  bottom: -var(--space-6);
  left: calc(-1 * var(--space-8));
  width: 55%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 4px solid var(--color-cream);
  box-shadow: var(--shadow-lg);
}

.institucional-visual__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------------------------
   NOSSOS DIFERENCIAIS
------------------------------------------------------------------ */

.section-diferenciais {
  padding: var(--space-24) 0;
  background-color: var(--color-off-white);
  position: relative;
  overflow: hidden;
}

/* Textura sutil de fundo */
.section-diferenciais::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(180,170,155,0.07) 39px,
      rgba(180,170,155,0.07) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(180,170,155,0.07) 39px,
      rgba(180,170,155,0.07) 40px
    );
  pointer-events: none;
}

.section-diferenciais__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-16);
}

.section-diferenciais__header .section-label {
  display: block;
  text-align: center;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.diferencial-block {
  padding: var(--space-8);
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base),
              transform var(--transition-base);
}

.diferencial-block:hover {
  border-color: var(--color-turquoise);
  box-shadow: 0 4px 24px rgba(42, 173, 167, 0.1);
  transform: translateY(-4px);
}

.diferencial-block__icon {
  width: 48px;
  height: 48px;
  color: var(--color-turquoise);
  margin-bottom: var(--space-5);
}

.diferencial-block__icon svg {
  width: 100%;
  height: 100%;
}

.diferencial-block__title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: var(--weight-regular);
  color: var(--color-graphite);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}

.diferencial-block__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
}

/* ------------------------------------------------------------------
   ONDE ATUAMOS
------------------------------------------------------------------ */

.section-onde-atuamos {
  padding: var(--space-24) 0;
  background-color: var(--color-white);
}

.section-onde-atuamos__header {
  margin-bottom: var(--space-12);
}

.cidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--color-border-light);
}

.cidade-block {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.cidade-block__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.cidade-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cidade-block:hover .cidade-block__image img {
  transform: scale(1.04);
}

.cidade-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 20, 0.72) 0%,
    rgba(10, 18, 20, 0.2) 55%,
    transparent 100%
  );
  transition: background var(--transition-base);
}

.cidade-block:hover .cidade-block__overlay {
  background: linear-gradient(
    to top,
    rgba(10, 18, 20, 0.78) 0%,
    rgba(10, 18, 20, 0.3) 60%,
    transparent 100%
  );
}

.cidade-block__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  z-index: 1;
}

.cidade-block__name {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: var(--weight-light);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-3);
}

.cidade-block__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: var(--space-5);
}

.cidade-block__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-turquoise-light);
  transition: gap var(--transition-fast);
}

.cidade-block__link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.cidade-block:hover .cidade-block__link svg {
  transform: translateX(5px);
}

/* ------------------------------------------------------------------
   CTA FINAL
------------------------------------------------------------------ */

.section-cta {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.section-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.section-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.9);
  z-index: 1;
}

.section-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-8) var(--container-px);
}

.section-cta__content .section-label {
  display: block;
  text-align: center;
  margin-bottom: var(--space-6);
}

.section-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--weight-light);
  color: var(--color-graphite);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

.section-cta__body {
  font-size: var(--text-md);
  color: var(--color-mid);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.btn--whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border-color: #25D366;
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
}

.btn--whatsapp:hover {
  background-color: #1EB957;
  border-color: #1EB957;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ------------------------------------------------------------------
   FOOTER
------------------------------------------------------------------ */

.footer {
  background-color: var(--color-graphite);
  color: rgba(255, 255, 255, 0.65);
  padding-top: var(--space-16);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {}

.footer__logo {
  margin-bottom: var(--space-5);
  display: inline-block;
}

.footer__logo img {
  height: 68px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__slogan {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: border-color var(--transition-fast),
              color var(--transition-fast),
              background-color var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--color-turquoise);
  color: var(--color-turquoise);
  background-color: rgba(42, 173, 167, 0.1);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-turquoise-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-turquoise);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item span {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer__contact-item a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
  color: var(--color-turquoise-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer__cidades {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

/* ------------------------------------------------------------------
   WHATSAPP FLUTUANTE
------------------------------------------------------------------ */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background-color: #25D366;
  color: var(--color-white);
  padding: var(--space-3) var(--space-5);
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              background-color var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  background-color: #1EB957;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float__text {
  white-space: nowrap;
}

/* Pulso inicial */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background-color: #25D366;
  animation: whatsappPulse 2.5s ease-out 1.5s 3;
  z-index: -1;
}

@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ------------------------------------------------------------------
   RESPONSIVIDADE
------------------------------------------------------------------ */

@media (max-width: 1200px) {
  .diferenciais-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .diferencial-item:nth-child(2)::after,
  .diferencial-item:nth-child(4)::after {
    display: none;
  }

  .diferencial-item:nth-child(1),
  .diferencial-item:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
  }

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

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}

@media (max-width: 1024px) {
  .empreendimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .institucional-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .institucional-content {
    max-width: 100%;
    order: 2;
  }

  .institucional-visual {
    order: 1;
  }

  .institucional-visual__main {
    aspect-ratio: 16 / 9;
  }

  .header__nav {
  display: none;
  }

  .header__hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
    --header-height-scrolled: 72px; /* Set same height to keep header vertical position perfectly stable */
    --container-px: 20px;
  }

  .mobile-only {
    display: inline;
  }

  /* Fade out logo cleanly when the mobile menu is open to prevent overlapping */
  body:has(.mobile-menu.is-open) .header__logo {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-16px);
  }

  /* Backdrop blur overlay behind the minimalist menu drawer */
  body:has(.mobile-menu.is-open)::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 22, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 950; /* Sits behind header (1000) and drawer (990) */
    pointer-events: none;
    animation: drawerFadeIn 0.3s ease forwards;
  }

  @keyframes drawerFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* 1. MENU MOBILE Light Minimalist Drawer */
  .mobile-menu {
    z-index: 990; /* Behind header so logo/hamburger are fully accessible */
    background-color: var(--color-off-white);
    width: 220px;
    height: 100%;
    top: 0; right: 0; bottom: 0; left: auto;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 108px 20px 40px; /* Clear header height, reduced horizontal padding */
    gap: var(--space-8);
    box-shadow: -8px 0 24px rgba(10, 20, 22, 0.12);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    width: 100%;
  }

  .mobile-menu__list li {
    width: 100%;
  }

  .mobile-menu__link {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: var(--weight-medium);
    color: var(--color-graphite);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .mobile-menu__link:hover {
    color: var(--color-turquoise);
    transform: translateX(4px);
  }

  .mobile-menu__cta {
    margin-top: auto;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-turquoise);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: var(--weight-semibold);
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.25s ease;
    white-space: nowrap; /* Prevent line wrapping */
  }

  .mobile-menu__cta:hover {
    background-color: var(--color-turquoise-dark);
  }

  /* Close button is hidden since header hamburger acts as toggle on the same line */
  .mobile-menu__close {
    display: none;
  }

  /* 2. HEADER MOBILE (Logo size: ~150px in both states, Hamburger lowered and redesigned) */
  .header__inner {
    align-items: center;
    padding: 0 20px;
  }

  .header__logo {
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition for fade-out */
  }

  .header__logo img {
    width: 150px; /* Slightly reduced as requested (approx -2% / smaller look) */
    height: auto;
    object-fit: contain;
  }

  .header.scrolled .header__logo img {
    width: 150px; /* Kept exactly the same size on scroll */
    height: auto;
  }

  .header__hamburger {
    width: 36px;
    height: 36px;
    padding: 6px;
    gap: 4px;
    margin-top: 10px; /* Lower the hamburger icon a bit more as requested */
    align-items: flex-end; /* Align spans to the right to enable the modern uneven line look */
  }

  .header__hamburger span {
    width: 18px;
    height: 1.5px;
  }

  /* Modern Uneven Hamburger Design (Middle line is shorter) */
  .header__hamburger span:nth-child(2) {
    width: 12px;
  }

  /* Center alignment when open to form a perfect X */
  .header__hamburger.is-open {
    align-items: center;
  }

  .header__hamburger.is-open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
    width: 18px;
  }

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

  .header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
    width: 18px;
  }

  /* 3. HERO MOBILE Headline & Spacings diminished */
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: 84px; /* starts below header */
    padding-bottom: 30px;
    align-items: center;
  }

  .hero__bg img {
    object-position: 78% center; /* Moved further to the right to clear left side for text area */
  }

  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 20, 22, 0.45) 0%,
      rgba(10, 20, 22, 0.25) 50%,
      rgba(10, 20, 22, 0.65) 100%
    ),
    linear-gradient(
      to right,
      rgba(10, 20, 22, 0.72) 0%,
      rgba(10, 20, 22, 0.35) 60%,
      transparent 100%
    ); /* Sophisticated vertical + horizontal dark gradient to shield the left side text */
  }

  .hero__content {
    padding: 0 24px; /* Restored back to exactly 24px horizontal padding for content blocks and buttons */
    padding-bottom: 0;
    max-width: 100%;
  }

  .hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(10, 20, 22, 0.45); /* Subtle shadow for clean readability over image */
  }

  .hero__headline {
    font-size: 1.95rem; /* Reduced slightly to ensure it wraps in max 3 lines */
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    max-width: 100%;
    text-shadow: 0 2px 8px rgba(10, 20, 22, 0.45); /* Subtle shadow for clean readability over image */
  }

  .hero__body {
    font-size: 0.9rem; /* Reduced slightly to ensure it wraps in max 3 lines */
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
    text-shadow: 0 2px 8px rgba(10, 20, 22, 0.45); /* Subtle shadow for clean readability over image */
  }

  /* 5. BOTÕES DO HERO */
  .hero__actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    height: 50px; /* diminished */
    font-size: 15px; /* diminished */
    padding: 0 20px;
    justify-content: center;
  }

  /* 7. SEÇÃO "ONDE ATUAMOS" Cards */
  .cidades-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    background-color: transparent;
  }

  .cidade-block {
    height: 360px;
    border-radius: var(--radius-md);
  }

  .cidade-block__image {
    aspect-ratio: auto;
    height: 100%;
    width: 100%;
  }

  .cidade-block__content {
    padding: 28px;
  }

  .cidade-block__name {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: var(--space-3);
  }

  .cidade-block__desc {
    line-height: 1.5;
    margin-bottom: var(--space-4);
  }

  .cidade-block__overlay {
    background: linear-gradient(
      to top,
      rgba(10, 18, 20, 0.85) 0%,
      rgba(10, 18, 20, 0.4) 60%,
      rgba(10, 18, 20, 0.1) 100%
    );
  }

  /* 8. BOTÃO FLUTUANTE DE WHATSAPP */
  .whatsapp-float__text {
    display: none;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    z-index: 990;
  }

  .whatsapp-float__text {
    display: none;
  }

  .whatsapp-float::before {
    border-radius: 50%;
  }

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

  /* Preservação de outras regras originais */
  .empreendimentos-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .empreend-card__image {
    aspect-ratio: 16 / 9;
  }

  .diferenciais-strip__inner {
    grid-template-columns: 1fr;
  }

  .diferencial-item::after {
    display: none !important;
  }

  .diferencial-item:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .section-empreendimentos__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .institucional-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }

  .hero__scroll-hint {
    display: none;
  }

  /* Reduzir a distância de deslocamento vertical/horizontal no mobile para maior suavidade e fluidez */
  .reveal {
    transform: translateY(16px);
  }
  .reveal-left {
    transform: translateX(-16px);
  }
  .reveal-right {
    transform: translateX(16px);
  }
  .reveal.is-visible,
  .reveal-left.is-visible,
  .reveal-right.is-visible {
    opacity: 1;
    transform: translate(0);
  }
}

@media (max-width: 480px) {
  .institucional-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }

  .metric-item__value {
    font-size: var(--text-2xl);
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION LEADS — CAPTAÇÃO BALNEÁRIO PIÇARRAS
═══════════════════════════════════════════════════════════════ */

.section-leads { overflow: hidden; }

.leads-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 700px;
  max-height: 780px;
}

/* ── Coluna Esquerda ── */
.leads-image-col { position: relative; overflow: hidden; }

.leads-image__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  transition: transform 1.4s ease;
}
.leads-image-col:hover .leads-image__photo { transform: scale(1.04); }

.leads-image__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(5,12,22,0.72) 0%, rgba(5,12,22,0.08) 68%),
    linear-gradient(to top,    rgba(5,12,22,0.65) 0%, rgba(5,12,22,0.00) 42%),
    linear-gradient(to bottom, rgba(5,12,22,0.42) 0%, rgba(5,12,22,0.00) 32%);
}

.leads-image__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  height: 100%; padding: 36px 40px;
}

/* Logo */
.leads-img-logo { display: flex; flex-direction: column; gap: 4px; }
.leads-img-logo img {
  display: block;
  max-width: 160px;
  width: auto; height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.leads-img-logo span {
  font-family: var(--font-sans);
  font-size: 0.57rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(255,255,255,0.42);
}

/* Divider dourado */
.leads-img-divider {
  width: 34px; height: 2px;
  background: #c9a96e; border-radius: 2px;
  margin: 20px 0 16px;
}

/* Headline */
.leads-img-headline { margin-bottom: 14px; }
.leads-img-headline h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 300; line-height: 1.13;
  color: #fff; letter-spacing: -0.01em;
}
.leads-img-headline h2 em { font-style: italic; color: #fff; }

/* Local */
.leads-img-local { display: flex; flex-direction: column; gap: 3px; }
.leads-local-label {
  font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: var(--weight-medium);
  letter-spacing: 0.18em; text-transform: uppercase; color: #c9a96e;
}
.leads-local-city {
  font-family: var(--font-sans);
  font-size: 0.88rem; font-weight: var(--weight-semibold);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

/* Spacer */
.leads-img-spacer { flex: 1; min-height: 16px; }

/* Diferenciais */
.leads-img-difs {
  display: flex; gap: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.13);
}
.leads-dif-item {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 7px; flex: 1;
}
.leads-dif-item svg { width: 26px; height: 26px; flex-shrink: 0; }
.leads-dif-item span {
  font-family: var(--font-sans);
  font-size: 0.67rem; font-weight: 400;
  color: rgba(255,255,255,0.70); line-height: 1.45;
}

/* ── Coluna Direita ── */
.leads-form-col {
  background-color: var(--color-off-white);
  display: flex; align-items: center; justify-content: center;
  padding: 28px 36px;
}

.leads-card {
  width: 100%; max-width: 460px;
  background: #fff; border-radius: 14px;
  padding: 36px 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
}

.leads-card__icon { width: 34px; height: 34px; color: #c9a96e; margin-bottom: 14px; opacity: 0.88; }
.leads-card__icon svg { width: 100%; height: 100%; }

.leads-card__label {
  font-family: var(--font-sans);
  font-size: 0.6rem; font-weight: var(--weight-medium);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-stone); margin-bottom: 5px;
}

.leads-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 400; line-height: 1.28; margin-bottom: 14px;
}
.leads-card__title-brand {
  display: block;
  color: var(--color-graphite);
  font-weight: 700; font-family: var(--font-sans);
  font-size: 0.92rem; letter-spacing: 0.05em;
}
.leads-card__title-city { color: var(--color-turquoise); font-style: normal; }

.leads-card__divider {
  width: 30px; height: 2px;
  background: #c9a96e; border-radius: 2px; margin-bottom: 13px;
}

.leads-card__body {
  font-family: var(--font-sans);
  font-size: 0.78rem; color: var(--color-muted);
  line-height: 1.65; margin-bottom: 20px;
}

/* Formulário */
.leads-form { display: flex; flex-direction: column; gap: 13px; }
.leads-field { display: flex; flex-direction: column; gap: 5px; }

.leads-label {
  font-family: var(--font-sans);
  font-size: 0.74rem; font-weight: var(--weight-medium);
  color: var(--color-dark); letter-spacing: 0.01em;
}
.leads-label span { color: var(--color-turquoise); margin-left: 1px; }

.leads-input {
  width: 100%; height: 48px; padding: 0 14px;
  font-family: var(--font-sans); font-size: 0.81rem;
  color: var(--color-graphite);
  background: var(--color-off-white);
  border: 1.5px solid var(--color-border);
  border-radius: 8px; outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}
.leads-input::placeholder { color: var(--color-stone); }
.leads-input:focus {
  border-color: var(--color-turquoise);
  box-shadow: 0 0 0 3px rgba(42,173,167,0.10);
  background: #fff;
}

.leads-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; width: 100%; height: 52px;
  font-family: var(--font-sans); font-size: 0.81rem;
  font-weight: var(--weight-semibold); letter-spacing: 0.02em;
  color: #fff; background: var(--color-turquoise-dark);
  border: none; border-radius: 8px; cursor: pointer;
  margin-top: 4px;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.15s ease;
}
.leads-btn svg { transition: transform 0.2s ease; }
.leads-btn:hover { background: var(--color-turquoise); box-shadow: 0 4px 16px rgba(42,173,167,0.30); }
.leads-btn:hover svg { transform: translateX(4px); }
.leads-btn:active { transform: scale(0.98); }

.leads-trust {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 0.67rem;
  color: var(--color-stone); line-height: 1.5; margin-top: 2px;
}
.leads-trust svg { flex-shrink: 0; color: var(--color-turquoise); }

/* Animações */
.reveal-leads { transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.js .reveal-leads { opacity: 0; }
.reveal-leads.delay-1 { transition-delay: 0.10s; }
.reveal-leads.delay-2 { transition-delay: 0.20s; }
.reveal-leads.delay-3 { transition-delay: 0.32s; }
.reveal-leads.is-visible { opacity: 1; transform: translate(0); }

/* Responsivo */
@media (max-width: 960px) {
  .leads-grid { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .leads-image-col { min-height: 460px; }
  .leads-image__content { min-height: 460px; }
  .leads-form-col { padding: 32px 24px; }
  .leads-card { padding: 30px 26px; }
}
@media (max-width: 480px) {
  .leads-image-col { min-height: 400px; }
  .leads-image__content { padding: 26px 20px; }
  .leads-img-headline h2 { font-size: 1.6rem; }
  .leads-img-difs { gap: 14px; }
  .leads-card { padding: 24px 18px; }
}