/* ── CTA / CONTACTO ── */
#contacto {
  background: var(--accent); text-align: center;
  padding: 7rem 15%; position: relative; overflow: hidden;
}
.cta-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%,
      rgba(255,255,255,0.08) 0%, transparent 70%);
}
#contacto > * { position: relative; z-index: 1; }
#contacto .sec-label { color: rgba(255,255,255,0.7); justify-content: center; }
#contacto .sec-label::before { background: rgba(255,255,255,0.7); }
#contacto .sec-title { color: #fff; text-align: center; margin: 0 auto 1rem; }
.cta-sub {
  color: rgba(255,255,255,0.75); font-size: 1rem;
  max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.cta-form {
  display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap; max-width: 480px; margin: 0 auto;
}
.cta-form input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; padding: 0.8rem 1.2rem;
  border-radius: 6px; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.55); }
.cta-form input:focus { border-color: rgba(255,255,255,0.7); }
.btn-white {
  background: #fff; color: var(--accent);
  padding: 0.8rem 1.8rem; border-radius: 6px;
  font-size: 0.95rem; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.cta-note { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-top: 1rem; }
