.map-wrapper {
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

/* ── Seção "Solicite Orçamento" ocupa a tela inteira no primeiro load ── */
#contato {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#contato .section-inner {
    width: 100%;
}

.contato-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(0, 200, 255, 0.35);
    background: rgba(0, 200, 255, 0.06);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}

.contato-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.chip {
    padding: 8px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.02);
}

/* FORM */
.form-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.form-section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    margin-bottom: 16px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    border-radius: 10px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--cyan);
}

.form-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='%2300C2FF' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-select option {
    background: var(--navy-dark);
}

.form-textarea {
    min-height: 110px;
    resize: vertical;
}

.btn-submit {
    width: 90%;
    background: var(--cyan);
    color: var(--navy-dark);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 4px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.btn-submit:hover {
    opacity: 0.85;
}

.form-footer-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* ── Cartão do formulário (sobreposição) ── */
.form-card {
    background: #101c30;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .form-card {
        padding: 28px 24px;
    }
}

/* ── Botão com animação de brilho ── */
.btn-submit {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--cyan), #00e5ff, var(--cyan));
    background-size: 200% auto;
    transition: background-position 0.5s ease, box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 0 0 rgba(0, 200, 255, 0);
}

.btn-submit:hover {
    background-position: right center;
    box-shadow: 0 0 24px rgba(0, 200, 255, 0.55);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ── Contato rápido abaixo dos chips ── */
.contato-quick-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── CONTATO ── */
#contato, #base-1, #base-2 {
  background: var(--navy-dark);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  margin: 14px 0 20px;
}

.contato-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 320px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.bases-title {
  margin-bottom: 48px;
}

#bases{
    background: var(--navy-dark);
}

.base-block {
  margin-bottom: 0;
}

.base-block .contato-grid {
  align-items: center; /* centraliza o texto verticalmente em relação ao mapa */
}

.base-name {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 24px;
}

.base-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 64px 0;
}

/* ── Mobile: mapa vai para baixo do texto ── */
@media (max-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .map-wrapper {
    min-height: 280px;
  }

  .base-divider {
    margin: 40px 0;
  }
}