div {
}

/* === Contenedor centrado === */

.gd-contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Poppins", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* === Formulario === */

.gd-form {
  width: 100%;
  max-width: 500px;
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.gd-title {
  margin: 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
}

.gd-field {
  display: grid;
  gap: 6px;
}

.gd-field span {
  font-size: .9rem;
  font-weight: 600;
  color: #333;
}

.gd-field input, .gd-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.15);
  font-size: 1rem;
  background: #fff;
  color: #111;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.gd-field input:focus, .gd-field textarea:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 4px rgba(0,113,227,.15);
}

.gd-field textarea {
  resize: vertical;
  min-height: 120px;
}

.gd-button {
  justify-self: center;
  padding: 12px 24px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.gd-button:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
}

/* === Popup === */

.gd-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 9999;
}

.gd-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.gd-popup-box {
  background: #fff;
  padding: 28px 32px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  animation: scaleIn .3s ease;
}

.gd-popup-box h3 {
  margin: 0 0 8px;
  color: #0071e3;
  font-size: 1.4rem;
}

.gd-popup-box p {
  margin: 0;
  color: #333;
}

@keyframes scaleIn {
  from {
    transform: scale(.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

