/* Vencendo o Ciclo — estilos da landing page */

/* ==========================================================================
   Header — aparece só ao rolar
   ========================================================================== */
.vc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 1rem 0;
  background: rgba(26, 0, 53, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.vc-header.scrolled {
  transform: translateY(0);
}
.vc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vc-logo {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.vc-logo span { color: var(--gold); }

.btn--vc {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
}


/* ==========================================================================
   S1 — Hero
   ========================================================================== */
.s1 {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.s1__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/lp/s1-bg-ok.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.s1__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 0, 53, 0.55) 0%,
    rgba(26, 0, 53, 0.15) 60%,
    transparent 100%
  );
}

.s1__content-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.s1__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
}

/* Coluna esquerda: centralizada verticalmente */
.s1__inner > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 0;
}

/* Coluna esquerda */
.s1__brand-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.s1__brand-logo {
  width: 185px;
  height: 185px;
  object-fit: contain;
  flex-shrink: 0;
  margin-bottom: -22px;
}

.s1__date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  white-space: nowrap;
}
.s1__date svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.s1__title {
  font-size: clamp(1.75rem, 3.2vw, 2.625rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.625rem;
  color: var(--white);
}

.s1__subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.875rem;
}

.s1__desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0 0 1.75rem;
  max-width: 30rem;
}

/* Form */
.form-wrap {
  max-width: 26rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lead-form .field input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9375rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.15s, background 0.15s;
  outline: none;
}
.lead-form .field input::placeholder { color: rgba(255, 255, 255, 0.55); }
.lead-form .field input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.lead-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.lead-form .fine {
  font-size: 0.75rem;
  color: var(--text-mute);
  text-align: center;
  margin: 0.5rem 0 0;
  line-height: 1.4;
}
.lead-form .fine a {
  color: var(--text-mute);
  text-decoration: underline;
}

.lead-form .error {
  font-size: 0.8125rem;
  color: #ff6b6b;
  margin: 0;
  min-height: 1.2em;
}

.hp-field { display: none !important; }

/* Coluna direita — imagem */
.s1__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.s1__image img {
  height: 100svh;
  width: auto;
  max-width: none;
  max-height: none;
  display: block;
}


/* ==========================================================================
   S2 — O que você vai aprender
   ========================================================================== */
.s2 {
  background: #f7f4fb;
  padding: 5rem 0 4rem;
}

.s2__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1a0035;
  margin: 0 0 2.5rem;
}

.s2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.s2__card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: default;
}

.s2__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s2__card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 0, 50, 0.85) 0%,
    rgba(20, 0, 50, 0.35) 55%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.s2__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.s2__cta .btn--vc {
  padding: 1rem 3rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

/* S2 mobile */
@media (max-width: 860px) {
  .s2__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
  .s2__card__overlay {
    font-size: 0.8125rem;
    padding: 1rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .s2__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .s2__card__overlay {
    font-size: 0.625rem;
    padding: 0.75rem 0.5rem;
  }
}


/* ==========================================================================
   S3 — Como vai funcionar
   ========================================================================== */
.s3 {
  background: linear-gradient(135deg, #520085 0%, #06000e 100%);
  overflow: hidden;
}

.s3__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: end;
  min-height: 420px;
}

/* Coluna esquerda */
.s3__left {
  display: flex;
  align-items: center;
  padding: 4rem 0;
  align-self: center; /* centraliza verticalmente no grid */
}

.s3__box--left {
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
}
.s3__box--left strong { color: var(--white); }

/* Coluna central: Aloma */
.s3__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
}
.s3__image img {
  width: 320px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

/* Coluna direita */
.s3__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
}

.s3__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1rem;
}

.s3__body {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0 0 0.875rem;
}

.s3__box--right {
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
}
.s3__box--right strong { color: var(--gold); }

.s3__callout {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  line-height: 1.4;
}

/* S3 mobile */
@media (max-width: 860px) {
  .s3__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0;
    align-items: end;
    min-height: unset;
    padding-top: 2.5rem;
    padding-bottom: 0;
  }

  /* Linha 1: box Acredite centralizado + Aloma ancorada na base */
  .s3__left {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
    align-self: center;
  }

  .s3__image {
    grid-column: 2;
    grid-row: 1;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: -4px; /* senta a imagem sobre o box escuro */
  }
  .s3__image img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    object-position: bottom center;
  }

  /* Linha 2: box escuro em largura total, Aloma apoiada sobre ele */
  .s3__right {
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 1rem 1rem 0 0;
    /* quebra padding do container para ir de borda a borda */
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 2rem 1.5rem 2.5rem;
  }
}


/* ==========================================================================
   S4 — Para quem é
   ========================================================================== */
.s4 {
  background: #f7f4fb;
  padding: 5rem 0 4rem;
  text-align: center;
}

.s4__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1a0035;
  margin: 0 0 0.75rem;
}

.s4__subtitle {
  font-size: 1rem;
  color: #555;
  margin: 0 0 3rem;
}

.s4__avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.s4__avatar {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

/* mesmo tamanho que os demais */
.s4__avatar--destaque {
  width: 170px;
  height: 170px;
}

.s4__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s4__avatar__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 0, 53, 0.45);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.s4__extra {
  font-size: 0.9375rem;
  color: #444;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.s4__cta {
  display: flex;
  justify-content: center;
}

.s4__cta .btn--vc {
  padding: 1rem 3rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

/* S4 mobile */
@media (max-width: 860px) {
  .s4__avatars {
    gap: 0.875rem;
  }
  .s4__avatar {
    width: 130px;
    height: 130px;
  }
  .s4__avatar--destaque {
    width: 130px;
    height: 130px;
  }
  .s4__avatar__label {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .s4__avatar {
    width: 100px;
    height: 100px;
  }
  .s4__avatar--destaque {
    width: 100px;
    height: 100px;
  }
  .s4__avatar__label {
    font-size: 0.75rem;
  }
}


/* ==========================================================================
   S5 — Quote + Benefícios + CTA
   ========================================================================== */
.s5 {
  background: linear-gradient(160deg, #520085 0%, #06000e 100%);
  overflow-x: hidden;
}

/* Grid escuro: Aloma (esq) + texto (dir) */
.s5__top {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
  padding-top: 4rem;
  position: relative;
}

/* Aloma: flutua acima do box branco */
.s5__image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -400px; /* pés da Aloma ficam dentro do box branco */
}
.s5__image img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
}

/* Coluna de texto */
.s5__content {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.5rem;
}

.s5__quote {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin: 0 0 1.5rem;
}

.s5__body {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 0.875rem;
}

.s5__pronta {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.25rem 0 0;
}

/* Box branco: contido dentro do container, não full-width */
.s5__beneficios-section {
  background: transparent;
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}

.s5__beneficios-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr; /* espelha o grid acima */
  gap: 3rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  /* conteúdo fica na col. direita — Aloma ocupa a esq. visualmente via z-index */
}

.s5__beneficios-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1a0035;
  margin: 0 0 1rem;
}

.s5__beneficios-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.s5__beneficios-list li {
  font-size: 0.9375rem;
  color: #333;
  padding-left: 1.25rem;
  position: relative;
}
.s5__beneficios-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* 3 cards dentro do box branco */
.s5__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.s5__card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.s5__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s5__card__label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,0,50,0.82) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* Bloco CTA inferior */
.s5__cta-block {
  padding: 3.5rem 0 4rem;
  text-align: center;
}

.s5__cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 2rem;
}

.s5__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.s5__cta-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.s5__cta-date svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.s5__cta-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.s5__cta-desc {
  font-size: 0.9375rem;
  color: var(--text-soft);
  max-width: 22rem;
  line-height: 1.55;
  margin: 0;
  text-align: left;
}

.s5__cta-block .btn--vc {
  padding: 1rem 3rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

/* S5 mobile */
@media (max-width: 860px) {
  .s5__top {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
    gap: 1.5rem;
  }

  .s5__image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: -50px;
    position: relative;
    z-index: 2;
    order: 2; /* aparece após o texto no mobile */
  }
  .s5__image img {
    max-width: 112px;
    margin: 0 auto;
  }

  .s5__content {
    order: 1; /* texto aparece primeiro no mobile */
  }

  .s5__beneficios-section {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }

  .s5__beneficios-inner {
    grid-template-columns: 1fr; /* uma coluna no mobile */
  }
  /* oculta a célula vazia do grid no mobile */
  .s5__beneficios-inner > div:first-child {
    display: none;
  }

  .s5__cards {
    gap: 0.5rem;
  }
  .s5__card__label {
    font-size: 0.625rem;
    padding: 0.375rem 0.5rem;
  }

  .s5__cta-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .s5__cta-divider { display: none; }
  .s5__cta-desc { text-align: center; max-width: 100%; }
}


/* ==========================================================================
   S6 — Olá, sou Aloma
   ========================================================================== */
.s6 {
  background: #f5deff;
  overflow: hidden;
}

.s6__inner {
  display: grid;
  grid-template-columns: 1.3fr 1.55fr;
  gap: 4rem;
  align-items: end;
}

.s6__content {
  padding: 6rem 0 2rem;
}

.s6__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #1a0035;
  margin: 0 0 1.5rem;
}

.s6__body {
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.45;
  margin: 0 0 1rem;
}

.s6__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.s6__image img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 860px) {
  .s6__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .s6__content {
    padding: 3rem 0 1.5rem;
  }
  .s6__image img {
    max-width: 100%;
  }
}


/* ==========================================================================
   Footer
   ========================================================================== */
.vc-footer {
  background: linear-gradient(135deg, #520085 0%, #06000e 100%);
  padding: 2rem 0;
}

.vc-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Esquerda: ícone + redes sociais */
.vc-footer__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vc-footer__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.vc-footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vc-footer__social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.15s;
}
.vc-footer__social a:hover { color: var(--gold); }
.vc-footer__social svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* Centro */
.vc-footer__center {
  text-align: center;
}
.vc-footer__cnpj,
.vc-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 0.25rem;
}

/* Direita */
.vc-footer__right {
  text-align: right;
}
.vc-footer__legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.vc-footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.vc-footer__legal a:hover { color: var(--gold); }
.vc-footer__legal span { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

.vc-footer__dev {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.vc-footer__dev a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.vc-footer__dev a:hover { color: var(--gold); }

/* Footer mobile */
@media (max-width: 860px) {
  .vc-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .vc-footer__left {
    justify-content: center;
  }
  .vc-footer__right {
    text-align: center;
  }
  .vc-footer__legal {
    justify-content: center;
  }
}


/* ==========================================================================
   Glow do formulário ao clicar em CTA
   ========================================================================== */
@keyframes formGlow {
  0%   { box-shadow: 0 0 0 0 rgba(232, 160, 32, 0); }
  30%  { box-shadow: 0 0 0 6px rgba(232, 160, 32, 0.7), 0 0 48px rgba(232, 160, 32, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(232, 160, 32, 0); }
}
.form--glow {
  border-radius: var(--radius-sm);
  animation: formGlow 1.6s ease-out forwards;
}


/* ==========================================================================
   Zoom proporcional para telas desktop de menor resolução
   Escala tudo (px, imagens, espaçamentos) como se afastasse a câmera.
   As alturas baseadas em svh precisam ser compensadas (divididas pelo zoom)
   para que S1 continue preenchendo o viewport visualmente.
   A tela do usuário (1800px+) não é afetada.
   ========================================================================== */
@media (min-width: 861px) and (max-width: 1299px) {
  body { zoom: 0.74; }
  .s1            { height: calc(100svh / 0.74); }
  .s1__image img { height: calc(100svh / 0.74); }
  /* compacta conteúdo S1 para caber sem scroll */
  .s1__brand-logo           { width: 148px; height: 148px; }
  .s1__brand-row            { margin-bottom: 0.875rem; }
  .s1__title                { line-height: 1.05; margin-bottom: 0.5rem; }
  .s1__subtitle             { margin-bottom: 0.5rem; }
  .s1__desc                 { line-height: 1.35; margin-bottom: 1.25rem; }
  .s1__inner > div:first-child { padding: 1.75rem 0; }
  .form-wrap                { padding: 1rem 1.25rem; }
  .lead-form                { gap: 0.4rem; }
  .lead-form .field input   { padding: 0.625rem 1rem; }
  .lead-form .btn           { padding: 0.75rem; }
}
@media (min-width: 1300px) and (max-width: 1439px) {
  body { zoom: 0.80; }
  .s1            { height: calc(100svh / 0.80); }
  .s1__image img { height: calc(100svh / 0.80); }
  /* compacta levemente */
  .s1__brand-logo           { width: 156px; height: 156px; }
  .s1__brand-row            { margin-bottom: 1.125rem; }
  .s1__title                { line-height: 1.08; }
  .s1__desc                 { line-height: 1.4; margin-bottom: 1.5rem; }
  .form-wrap                { padding: 1.25rem; }
  .lead-form                { gap: 0.5rem; }
  .lead-form .field input   { padding: 0.75rem 1rem; }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  body { zoom: 0.88; }
  .s1            { height: calc(100svh / 0.88); }
  .s1__image img { height: calc(100svh / 0.88); }
  /* ajuste mínimo */
  .s1__brand-logo           { width: 166px; height: 166px; }
  .s1__desc                 { line-height: 1.45; }
}

/* ==========================================================================
   Responsivo S1
   ========================================================================== */
@media (max-width: 860px) {
  .s1 {
    height: auto;
    min-height: 100svh;
  }

  .s1__inner {
    grid-template-columns: 1fr;
    align-items: start;
    height: auto;
    padding-bottom: 0;
  }

  /* conteúdo ancorado no topo */
  .s1__inner > div:first-child {
    justify-content: flex-start;
    padding: 2rem 0 0;
  }

  .s1__brand-logo {
    width: 100px;
    height: 100px;
  }

  /* Aloma menor, abaixo do form com respiro */
  .s1__inner {
    gap: 0.5rem; /* reduz de 2rem para diminuir distância form→Aloma */
  }
  .s1__image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: flex-end; /* impede o stretch do grid de criar espaço acima da imagem */
    padding-top: 0;
  }

  .s1__image img {
    height: 42svh;
    width: auto;
    max-width: 80%;
  }

  .form-wrap { max-width: 100%; }
  .s1__title { font-size: clamp(1.625rem, 6vw, 2rem); }
  .s1__desc { max-width: 100%; }
}
