/* ============================================
   FALE CONOSCO PAGE — Contact Page Styles
   ============================================ */

/* --- Breadcrumb spacing --- */
.contato-banner .breadcrumb {
  margin-bottom: 24px;
}

/* --- Contact Banner (light teal bg) --- */
.contato-banner {
  position: relative;
  padding: 320px 48px 220px;
  overflow: hidden;
}

.contato-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.contato-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.contato-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.contato-banner__text {
  padding-bottom: 0;
}

.contato-banner__title {
  font-family: 'Season Mix', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contato-banner__subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 520px;
}

.contato-banner__image {
  width: 380px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

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

/* --- Contact Cards Section --- */
.contato-cards {
  position: relative;
  z-index: 2;
  background: linear-gradient(to right, #eef3fb 50%, #fff 50%);
  min-height: 60vh;
}

.contato-cards__wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.contato-cards__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contato-cards__divider {
  display: none;
}

.contato-card {
  background: transparent;
  border-radius: 0;
  padding: 80px 64px;
}

.contato-card__title {
  font-family: 'Season Mix', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 32px);
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 32px;
}

/* --- Left card: phone + email --- */
.contato-card__group {
  margin-bottom: 32px;
}

.contato-card__group:last-child {
  margin-bottom: 0;
}

.contato-card__label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.contato-card__value {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #0263e0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.contato-card__value:hover {
  color: #014bb0;
}

.contato-card__detail {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(26, 26, 46, 0.5);
  line-height: 1.6;
  margin-top: 6px;
}

/* --- Right card: WhatsApp --- */
.contato-card__desc {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contato-card__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contato-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.contato-btn:hover {
  transform: none;
  box-shadow: none;
}

.contato-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.contato-btn--whatsapp svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.contato-card__hours {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(26, 26, 46, 0.5);
  line-height: 1.6;
  margin-top: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .contato-banner {
    padding: 180px 48px 140px;
  }

  .contato-banner__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contato-banner__image {
    width: 320px;
    height: 320px;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .contato-banner {
    padding: 170px 24px 120px;
  }

  .contato-banner__image {
    width: 260px;
    height: 260px;
    border-radius: 20px;
  }

  .contato-cards {
    background: #eef3fb;
  }

  .contato-cards__inner {
    grid-template-columns: 1fr;
  }

  .contato-card {
    padding: 48px 24px;
  }

  .contato-card:last-child {
    background: #fff;
  }

  .contato-card__buttons {
    flex-direction: column;
  }

  .contato-btn {
    justify-content: center;
  }
}
