/* Support page */

.frogmi-soporte-page-wrap {
  --soporte-shadow: 0 12px 30px rgba(33, 68, 99, 0.1);
}

.frogmi-soporte-page__page-bg {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.frogmi-soporte-page {
  padding: 72px 0 80px;
}

.frogmi-soporte-page__grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 58px;
  align-items: start;
}

.frogmi-soporte-page__copy {
  padding-top: 8px;
}

.frogmi-soporte-page__title {
  margin: 0 0 16px;
  max-width: 520px;
  font-size: 43px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--title);
  text-transform: none;
}

.frogmi-soporte-page__intro {
  margin: 0 0 34px;
  max-width: 520px;
  color: #555;
  font-size: 16px;
  line-height: 1.55;
}

.frogmi-soporte-page__intro a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

.frogmi-soporte-page__intro a:hover {
  color: var(--green-dark);
}

.frogmi-soporte-page__media {
  display: flex;
  justify-content: flex-start;
}

.frogmi-soporte-page__illustration {
  width: min(100%, 420px);
  height: auto;
}

.frogmi-soporte-page__form-wrap {
  padding: 29px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soporte-shadow);
}

.frogmi-soporte-page__form-title {
  margin: 0 0 8px;
  text-align: center;
  font-size: 25px !important;
  font-weight: 700;
  color: var(--title);
  text-transform: none;
}

.frogmi-soporte-page__form-intro {
  margin: 0 auto 22px;
  max-width: 530px;
  text-align: center;
  color: #555;
  font-size: 16px;
  line-height: 1.55;
}

.frogmi-soporte-page__form {
  --soporte-row-gap: 18px;
}

.frogmi-soporte-page__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--soporte-row-gap);
}

.frogmi-soporte-page__field--full {
  grid-column: 1 / -1;
}

/* The message and attachments rows are siblings of the grid, not cells, so the
   grid gap never reaches them and they end up flush against the fields above. */
.frogmi-soporte-page__form > .frogmi-soporte-page__field--full {
  margin-top: var(--soporte-row-gap);
}

.frogmi-soporte-page__form .frogmi-float-field--textarea textarea {
  min-height: 120px;
  height: 120px;
}

.frogmi-soporte-page__attachments {
  padding-bottom: 0;
}

.frogmi-soporte-page__attachments-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.frogmi-soporte-page__file {
  position: relative;
}

.frogmi-file-input__native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.frogmi-soporte-page__file-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  border: 1px dashed #cfd8d1;
  border-radius: 12px;
  background: #fff;
  color: #666;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.frogmi-soporte-page__file-trigger svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.frogmi-soporte-page__file-trigger:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: #f8fcf9;
}

.frogmi-soporte-page__form-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.frogmi-soporte-page-wrap .frogmi-contact {
  padding-top: 8px;
  padding-bottom: 56px;
}

@media (max-width: 1100px) {
  .frogmi-soporte-page__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .frogmi-soporte-page__media {
    justify-content: center;
  }

  .frogmi-soporte-page__illustration {
    width: min(100%, 360px);
  }
}

@media (max-width: 768px) {
  .frogmi-soporte-page {
    padding-top: 56px;
  }

  .frogmi-soporte-page__title {
    font-size: 34px;
  }

  .frogmi-soporte-page__form-wrap {
    padding: 24px 20px;
  }

  .frogmi-soporte-page__form {
    --soporte-row-gap: 16px;
  }

  .frogmi-soporte-page__form-grid {
    grid-template-columns: 1fr;
  }

  .frogmi-soporte-page__file-trigger {
    min-height: 52px;
  }
}
