body {
  font-family: "Roboto", sans-serif;
}

:root {
  --negro: #272727;
  --morado: #652D90;
  --morado-dark: #4e2270;
  --amarillo: #FFC600;
  --amarillo-dark: #e6b200;
  --naranja: #ff5700;
  --verde: #00914e;
}

html,
body.cef-body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Roboto", sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

.cef-wrapper {
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
}

.cef-inner {
  width: 100%;
  max-width: 640px;
}

.form-title {
  margin: 0 0 1rem;
  max-width: 100%;
  width: inherit;
  font-weight: unset;
  font-size: 28px;
  line-height: 32px;
  color: #000;
  font-family: "Roboto", sans-serif;
}

.form-wrapper .form-description {
  font-weight: unset;
  font-size: 18px;
  line-height: 24px;
  text-align: start;
  overflow-wrap: break-word;
  margin-bottom: 2rem;
}

label {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: normal;
  word-spacing: 0;
  font-weight: 400;
  color: #000 !important;
}

input::placeholder,
textarea::placeholder {
  color: #bcbcbc;
  opacity: 1;
}

input.text,
input.title,
input[type=email],
input[type=password],
input[type=tel],
input[type=text],
select,
textarea {
  font-family: "Roboto", sans-serif;
  display: block;
  width: 100%;
  color: #000;
  padding-block-start: 0;
  padding-block-end: var(--spacing-100, 8px);
  padding-inline: 0;
  border: none;
  font-size: 20px;
  line-height: unset;
  box-shadow: rgba(48, 48, 48, 0.3) 0 1px;
  background-color: transparent !important;
  margin-bottom: 30px;
  padding-bottom: 15px;
  padding-top: 15px;
  outline: none;
  transition: box-shadow 0.1s ease-out;
  box-sizing: border-box;
}

input:focus {
  box-shadow: #000 0 2px;
}

.wpcf7-form .wpcf7-submit {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  background: #ff5700;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 0.04em;
}
.wpcf7-form .wpcf7-submit:hover {
  background-color: #e64d00;
  color: #fff;
}

.wpcf7-response-output {
  margin-top: 1rem;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  border: none;
}
.wpcf7-response-output[aria-hidden=true] {
  display: none;
}

.wpcf7-form.sent .wpcf7-response-output {
  background: #e8f5e9;
  color: #2e7d32;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output {
  background: #fdecea;
  color: #c62828;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e53935;
  margin-top: 4px;
  display: block;
}

.cef-inner iframe {
  width: 100%;
  min-height: 80dvh;
  min-height: 80vh;
  border: none;
  display: block;
}

@media (max-width: 480px) {
  .cef-wrapper {
    padding: 2rem 1rem;
    align-items: flex-start;
  }
  .form-title {
    font-size: 22px;
  }
  label {
    font-size: 17px;
  }
  input.text,
  input.title,
  input[type=email],
  input[type=password],
  input[type=tel],
  input[type=text],
  select,
  textarea {
    font-size: 17px;
  }
}
