/* ========================================
   HERO — Slide 2: "A cirurgia plástica do futuro chegou em São Paulo"
   Montado em HTML/CSS sobre a foto da fachada. Tamanhos e posições medidos
   na arte de referência (1920x1080), em % da tela:
     título linha 1 : caixa-alta 8,2% da altura · 82% da largura · topo 20,9%
     título linha 2 : 7,9% · 57% · topo 33,7%
     linhas 3 e 4   : 5,7% · 56% · topo 55,9% e 63,7%
     "agende"       : 4,1% · 40% · topo 83,7%
   18/08/2026.
   ======================================== */

.hero-slide--sp2 {
  /* NÃO declarar position aqui: o motor do slider depende do absolute que vem
     do .hero-slide (o relative jogava este slide para baixo do slide 1 e
     quebrava o fade). */
  overflow: hidden;
}

.sp2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  z-index: 0;
}

/* véu igual ao da arte: o fundo ficou em ~30% do brilho original */
.hero-slide--sp2:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 6, 16, .90) 0%, rgba(3, 6, 16, .74) 42%, rgba(3, 6, 16, .86) 100%);
}

.sp2__conteudo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 3vw;
}

.sp2__titulo {
  font-family: 'Cinzel variablefont wght', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  /* 6,6vw faz a linha 1 ocupar ~82% da largura, como na arte */
  font-size: 4.75vw;
  line-height: 1.1;
  letter-spacing: .005em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  background: linear-gradient(180deg, #f6e6a8 0%, #d9b96a 46%, #b4863a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}

.sp2__titulo span {
  display: block;
  font-weight: 500;
  font-size: 1.06em;
  margin-top: .06em;
}

.sp2__linha {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 3.35vw;
  line-height: 1.24;
  text-transform: uppercase;
  letter-spacing: .005em;
  margin: calc(.28em + 10px) 0 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

/* Botão: usa a MESMA classe dos outros botões do site (btn-inicio-copy-v),
   então herda fonte, altura, cor e raio do padrão. Aqui só o espaçamento. */
.sp2__btn {
  margin-top: 2rem;
}

/* telas largas: trava o crescimento pra não estourar */
@media screen and (min-width: 1700px) {
  .sp2__titulo { font-size: 91px; }
  .sp2__linha  { font-size: 64px; }
}

@media screen and (max-width: 991px) {
  .sp2__titulo {
    font-size: 7.6vw;
    white-space: normal;
  }

  .sp2__linha {
    font-size: 5vw;
    margin-top: .5em;
  }

  .sp2__btn {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .sp2__conteudo {
    justify-content: center;
    padding: 0 20px;
  }

  .sp2__titulo {
    font-size: 8.4vw;
  }

  .sp2__linha {
    font-size: 5.2vw;
    margin-top: .55em;
  }

  .sp2__btn {
    margin-top: 1.8rem;
  }
}
