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

.ct-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Faixa azul atrás da navbar */
.ct-nav-band {
  display: block;
  width: 100%;
  background: var(--color-primary);
}

/* ---- Mapa de ponta a ponta ---- */
.ct-mapa {
  width: 100%;
  height: 420px;
  display: block;
  line-height: 0;
}

.ct-mapa iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Seção contato + form ---- */
.ct-section {
  padding: 72px 0 96px;
  background: #ffffff;
}

.ct-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

/* ---- Reveal ---- */
.ct-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.ct-reveal.ct-visible { opacity: 1; transform: translateY(0); }

/* ---- Info ---- */
.ct-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}
.ct-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 10px; height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.ct-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ct-accent { color: var(--color-secondary); }

.ct-desc {
  font-size: 0.97rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 28px;
}
.ct-desc a { color: var(--color-secondary); }

.ct-dados {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.ct-dados li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ct-dado-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(242,123,19,0.1);
  display: flex; align-items: center; justify-content: center;
}
.ct-dado-icon svg { width: 18px; height: 18px; color: var(--color-secondary); }

.ct-dados li div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
}
.ct-dados strong { font-size: 0.95rem; color: var(--color-text); }
.ct-dados span  { font-size: 0.88rem; color: #6b7280; }
.ct-dados a     { color: var(--color-text); transition: color 0.2s ease; }
.ct-dados a:hover { color: var(--color-secondary); }

.ct-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  border-radius: 100px;
  padding: 10px 20px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.ct-maps-btn svg { width: 16px; height: 16px; }
.ct-maps-btn:hover {
  background: var(--color-secondary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(242,123,19,0.35);
}

/* ---- Formulário ---- */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-gray-lighter);
  border: 1.5px solid var(--color-gray-light);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  -webkit-appearance: none;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(242,123,19,0.12);
  background: #ffffff;
}

.ct-field textarea {
  resize: vertical;
  min-height: 130px;
}

.ct-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.ct-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--color-secondary);
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.ct-submit svg { width: 18px; height: 18px; }
.ct-submit:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,123,19,0.3);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .ct-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ct-mapa { height: 320px; }
}

@media (max-width: 600px) {
  .ct-container { padding: 0 20px; }
  .ct-section { padding: 48px 0 64px; }
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-mapa { height: 260px; }
  .ct-submit { width: 100%; justify-content: center; }
}
