.contacto {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.contacto-texto {
  text-align: center;
  margin-bottom: 40px;
}

.contacto-texto h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.contacto-texto p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

.formulario {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border: 2px solid #FFD700;
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.formulario input {
  width: 100%;
  padding: 13px 16px;
  background: #ffffff;
  border: 1.5px solid #FFD700;
  border-radius: 10px;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.formulario input::placeholder {
  color: #999;
}

.formulario input:focus {
  border-color: #e6b800;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.formulario button {
  margin-top: 6px;
  padding: 14px 0;
  background: #FFD700;
  color: #0a0a0f;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.formulario button:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .formulario {
    padding: 28px 20px;
  }
  .contacto-texto h1 {
    font-size: 1.8rem;
  }
}

#mapa{
    width: 100%;
    height: 400px;
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
}