﻿/* ============================================================
   CONTATO — Seção de contato + Modal de Privacidade
   ============================================================ */

/* ── SEÇÃO CONTATO ── */
.contato {
  background: #f7f8fa;
  padding: 80px 0 72px;
}

.contato__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.contato__header {
  text-align: center;
}

.contato__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0B2D4A;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.contato__sub {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.contato__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 860px;
}

.contato__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1.5px solid rgba(212, 160, 23, 0.15);
  border-radius: 16px;
  padding: 24px 32px;
  min-width: 220px;
  flex: 1;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contato__card:hover {
  border-color: var(--color-teal, #D4A017);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.14);
  transform: translateY(-2px);
}

.contato__card--info {
  cursor: default;
}

.contato__card--info:hover {
  transform: none;
  border-color: rgba(212, 160, 23, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contato__icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contato__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal, #D4A017);
}

.contato__value {
  font-size: 1rem;
  font-weight: 600;
  color: #0B2D4A;
}

/* ── MODAL PRIVACIDADE ── */
.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(11, 22, 40, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.privacy-modal.open {
  display: flex;
}

.privacy-modal__box {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.privacy-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.privacy-modal__header h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0B2D4A;
  margin: 0;
}

.privacy-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.privacy-modal__close:hover {
  background: #f3f4f6;
  color: #0B2D4A;
}

.privacy-modal__body {
  overflow-y: auto;
  padding: 24px 28px 32px;
  font-size: 13.5px;
  line-height: 1.75;
  color: #374151;
}

.privacy-modal__body h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0B2D4A;
  margin: 24px 0 8px;
}

.privacy-modal__body h3:first-child {
  margin-top: 0;
}

.privacy-modal__body p {
  margin: 0 0 12px;
}

.privacy-modal__body ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.privacy-modal__body ul li {
  margin-bottom: 4px;
}

/* ── RESPONSIVO ── */
@media (max-width: 600px) {
  .contato {
    padding: 56px 0 52px;
  }

  .contato__cards {
    flex-direction: column;
  }

  .contato__card {
    min-width: unset;
    flex: none;
    width: 100%;
  }

  .privacy-modal__box {
    max-height: 90vh;
  }

  .privacy-modal__header,
  .privacy-modal__body {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 380px) {
  .privacy-modal {
    padding: 12px;
  }
  .privacy-modal__box {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 14px;
  }
  .privacy-modal__header,
  .privacy-modal__body {
    padding-left: 16px;
    padding-right: 16px;
  }
  .privacy-modal__header { padding-top: 16px; padding-bottom: 14px; }
  .privacy-modal__body   { padding-bottom: 24px; }
}
