.contact-page {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.contact-hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(240.99deg, #00024F 10.21%, #0A1C92 30.83%, #183EEB 61.25%, #BAD8FE 117.45%);
  display: flex;
  flex-direction: column;
}

.contact-lines-wrapper {
  position: absolute;
  inset: 0;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}

.contact-lines-image {
  position: absolute;
  right: -230px;
  top: -3%;
  width: 1372px;
  min-height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.contact-nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.contact-nav-brand {
  display: flex;
  align-items: center;
  gap: 48px;
}

.contact-brand-link {
  text-decoration: none;
  flex-shrink: 0;
}

.contact-brand-lockup {
  width: 154px;
  height: 34px;
  position: relative;
  overflow: hidden;
}

.contact-brand-icon-slot {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 74.79%;
}

.contact-brand-text-slot {
  position: absolute;
  inset: 14.84% 0 0.33% 27.93%;
}

.contact-brand-image {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-mobile-menu {
  display: flex;
  flex-direction: column;
}

.contact-hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  gap: 64px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact-copy {
  max-width: 540px;
}

.contact-headline {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 30px;
}

.contact-subtext {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  line-height: 1.55;
}

.contact-card {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.contact-card-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #101828;
  line-height: 1.33;
  margin-bottom: 8px;
}

.contact-card-description {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #4A5565;
  line-height: 1.5;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #364153;
  display: block;
  text-align: left;
}

.form-control {
  width: 100%;
  border: 0.8px solid #D1D5DC;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: #1D1D1D;
  background: #fff;
}

.form-input,
.form-select {
  height: 36px;
  padding: 4px 12px;
}

.form-textarea {
  min-height: 64px;
  padding: 8px 12px;
  resize: vertical;
  line-height: 1.5;
}

.form-select-wrap {
  position: relative;
  width: 100%;
  height: 36px;
}

.form-select {
  padding-right: 36px;
  color: #717182;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.form-select.has-value {
  color: #1D1D1D;
}

.form-select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #183EEB;
  box-shadow: 0 0 0 3px rgba(24, 62, 235, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #717182;
  opacity: 1;
}

.btn-submit {
  width: 100%;
  background: #183EEB;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.2s ease, transform 0.1s ease;
  cursor: pointer;
}

.btn-submit:not(:disabled):hover {
  opacity: 0.88;
}

.btn-submit:not(:disabled):active {
  transform: scale(0.98);
}

.btn-submit.is-disabled,
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-feedback-el {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.4s ease;
}

.form-feedback-el.is-visible {
  display: block;
}

.form-feedback-el.is-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-feedback-el.is-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #6A7282;
  line-height: 1.5;
  justify-content: flex-start;
  text-align: left;
}

.privacy-checkbox {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #183EEB;
  cursor: pointer;
}

.privacy-link {
  color: #183EEB;
  text-decoration: underline;
}

.footer-brand {
  width: 100%;
  max-width: 280px;
  position: relative;
}

.footer-brand-ratio {
  padding-bottom: 21.48%;
  position: relative;
  height: 0;
}

.footer-brand-icon-slot {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 74.79%;
}

.footer-brand-text-slot {
  position: absolute;
  inset: 14.84% 0 0.33% 27.93%;
}

.footer-brand-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.footer-section-tag {
  border: 0.818px solid #183EEB;
  border-radius: 3.273px;
  padding: 0 6.545px;
  display: inline-flex;
}

.footer-section-tag-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 13.091px;
  color: #183EEB;
  text-transform: uppercase;
  line-height: 32.727px;
}

.footer-links-stack {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-link {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1D1D1D;
  opacity: 0.7;
  text-decoration: none;
  line-height: 1.5;
}

.footer-divider {
  margin-top: 60px;
  width: 100%;
  height: 1px;
  background: #183EEB;
  opacity: 0.3;
}

.footer-note {
  margin-top: 30px;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #1D1D1D;
  opacity: 0.7;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-note-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .contact-hero {
    min-height: auto !important;
    padding-top: 60px !important;
    padding-bottom: 80px !important;
    scroll-margin-top: 60px;
  }

  .contact-nav-inner {
    padding: 0 20px;
  }

  .contact-hero-content {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 40px !important;
    padding-top: 120px !important;
  }

  .contact-copy {
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-headline,
  .contact-subtext {
    text-align: center !important;
  }

  .contact-card {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
  }

  .footer-links-stack {
    align-items: flex-start;
  }

  .privacy-consent {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .contact-headline {
    font-size: 24px !important;
  }

  .contact-subtext {
    font-size: 14px !important;
  }

  .contact-brand-lockup {
    width: 130px !important;
    height: 30px !important;
  }

  .contact-card {
    padding: 28px 20px;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   MODAL PÓS-ENVIO (waitlist <100k  |  WhatsApp >=100k)
   ────────────────────────────────────────────────────────────────────────── */
.post-submit-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: postSubmitFadeIn .2s ease-out;
}
.post-submit-modal[hidden] {
  display: none !important;
}
.post-submit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 40, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.post-submit-dialog {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
  animation: postSubmitSlideUp .25s cubic-bezier(.2, .8, .25, 1);
}
.post-submit-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #717171;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.post-submit-close:hover {
  color: #183EEB;
  background: #f3f4fb;
}
.post-submit-view {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.post-submit-view[hidden] { display: none; }
.post-submit-title {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #11182C;
  line-height: 1.2;
}
.post-submit-text {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: #404458;
  line-height: 1.55;
}
.post-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 13px 28px;
  background: #183EEB;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s ease, transform .15s ease;
  border: none;
  cursor: pointer;
}
.post-submit-btn:hover {
  background: #0f2dc7;
  transform: translateY(-1px);
}
.post-submit-btn--wa {
  background: #25D366;
}
.post-submit-btn--wa:hover {
  background: #1ea952;
}

@keyframes postSubmitFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes postSubmitSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
