/* ── Primeira dobra ── */
.contato-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  background-image: url('../assets/images/contatofotofundo.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Textura sobre a foto (abaixo da faixa) */
.contato-textura-fundo {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/contatotexturafundo.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}

/* Faixa salvia na base (só o fundo) */
.contato-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background-color: var(--salvia);
  z-index: 2;
}

/* Frase e grafismos — acima da textura cima */
.contato-band-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 4;
}

.contato-band-grafismo {
  position: absolute;
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1); /* algodão */
}

.contato-band-grafismo--left {
  left: 20px;
  transform: scaleX(-1);
}

.contato-band-grafismo--right {
  right: 20px;
}

.contato-band-frase {
  font-family: 'Meshed Display', sans-serif;
  font-weight: 300;
  font-size: 28pt;
  color: var(--musgo);
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.contato-band-frase strong {
  font-weight: 600;
}

/* Bloco de informações de contato */
.contato-info {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}

.contato-info-title {
  font-family: 'ZT Nature', sans-serif;
  font-weight: 500;
  font-size: 12pt;
  color: var(--algodao);
  text-transform: uppercase;
  margin: 0 0 16px 0;
  letter-spacing: 0.05em;
}

.contato-info-rows {
  display: flex;
  flex-direction: column;
}

.contato-info-row {
  display: flex;
  align-items: center;
}

.contato-info-row + .contato-info-row {
  border-top: 1px solid var(--algodao);
}

.contato-info-label {
  font-family: 'ZT Nature', sans-serif;
  font-weight: 500;
  font-size: 42pt;
  color: var(--algodao);
  line-height: 2;
}

.contato-info-value {
  font-family: 'ZT Nature', sans-serif;
  font-weight: 300;
  font-size: 32pt;
  color: var(--algodao);
  line-height: 2;
  margin-left: auto;
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .contato-band-frase {
    font-size: 22pt;
  }
}

@media (max-width: 768px) {
  .contato-band-grafismo {
    display: none;
  }

  .contato-band,
  .contato-band-content {
    height: 160px;
  }

  .contato-band-frase {
    font-size: 18pt;
  }

  .contato-info {
    bottom: 160px;
  }

  .contato-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
  }

  .contato-info-value {
    margin-left: 0;
    line-height: 1.2;
  }

  .contato-info-label {
    font-size: 20pt;
    line-height: 1.2;
  }

  .contato-info-value {
    font-size: 16pt;
  }
}

@media (max-width: 480px) {
  .contato-band,
  .contato-band-content {
    height: 140px;
  }

  .contato-band-frase {
    font-size: 14pt;
  }

  .contato-info {
    bottom: 140px;
  }

  .contato-info-label {
    font-size: 16pt;
  }

  .contato-info-value {
    font-size: 13pt;
  }
}

/* Textura sobreposta a tudo (foto + textura fundo + faixa) */
.contato-textura-cima {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/contatotexturacima.webp');
  background-size: cover;
  background-position: center;
  z-index: 3;
  pointer-events: none;
}

a.contato-info-label, a.contato-info-value {
    transition: opacity 0.2s ease;
}
a.contato-info-label:hover, a.contato-info-value:hover {
    opacity: 0.7;
}
