/* ============================================================
   CONTATO PAGE
   ============================================================ */

/* ==================== LAYOUT ==================== */
.contact-section {
  padding-block: var(--space-11);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-9);
  align-items: start;
}

/* ==================== CANAIS DIRETOS ==================== */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-channels__heading {
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.channel-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--dur-mid) var(--ease-out),
              background-color var(--dur-mid) var(--ease-out);
}

.channel-card:hover {
  border-color: var(--color-gold);
  background-color: var(--color-bg-elevated);
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: background-color var(--dur-mid) var(--ease-out);
}

.channel-card:hover .channel-icon {
  background-color: rgba(201, 162, 75, 0.15);
}

.channel-info {
  flex: 1;
}

.channel-label {
  font-size: 12px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.channel-value {
  font-size: 16px;
  font-weight: var(--weight-medium);
  color: var(--color-text);
}

.channel-arrow {
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}

.channel-card:hover .channel-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Bloco endereço + horário */
.contact-address-block {
  margin-top: var(--space-5);
  padding: var(--space-5);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
}

.contact-address-title {
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.contact-address-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.contact-hours {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--color-text-muted);
}

.contact-hours-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: #5CB85C;
  flex-shrink: 0;
}

/* Mapa embed */
.map-wrap {
  margin-top: var(--space-5);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
  background-color: var(--color-bg-elevated);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(60%) brightness(0.7);
  transition: filter var(--dur-mid) var(--ease-out);
}

.map-wrap:hover iframe {
  filter: grayscale(20%) brightness(0.85);
}

/* ==================== FORMULÁRIO ==================== */
.contact-form {
  background-color: var(--color-bg-elevated);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}

.contact-form__title {
  font-size: 24px;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.contact-form__sub {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-7);
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* ==================== PÁGINA OBRIGADO ==================== */
.thanks-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-9);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid var(--color-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--color-gold);
}

.thanks-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: var(--weight-heavy);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.thanks-sub {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-7);
  max-width: 44ch;
  margin-inline: auto;
  line-height: 1.6;
}

.thanks-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== PÁGINA 404 ==================== */
.error-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-9);
}

.error-number {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: var(--weight-heavy);
  color: var(--color-line);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-5);
  display: block;
}

.error-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.error-body {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-7);
  max-width: 40ch;
  margin-inline: auto;
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: var(--space-6) var(--space-5);
  }
}
