.whatsapp_flotante_nomadas {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 22px 8px 10px;
  border: 1px solid #ff7268;
  border-radius: 999px;
  background: rgba(22, 22, 24, .82);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .32);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.whatsapp_flotante_nomadas:hover,
.whatsapp_flotante_nomadas:focus {
  border-color: #ff7268;
  background: #ff7268;
  color: #000;
  text-decoration: none;
}

.whatsapp_flotante_nomadas_icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ff7268;
  transition: background .2s ease, filter .2s ease;
}

.whatsapp_flotante_nomadas:hover .whatsapp_flotante_nomadas_icon,
.whatsapp_flotante_nomadas:focus .whatsapp_flotante_nomadas_icon {
  background: transparent;
}

.whatsapp_flotante_nomadas_icon img {
  width: 23px;
  height: 23px;
  display: block;
  transition: filter .2s ease;
}

.whatsapp_flotante_nomadas:hover .whatsapp_flotante_nomadas_icon img,
.whatsapp_flotante_nomadas:focus .whatsapp_flotante_nomadas_icon img {
  filter: brightness(0);
}

@media (max-width: 900px) {
  .whatsapp_flotante_nomadas {
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    padding-right: 16px;
    font-size: 16px;
  }
}

@media (max-width: 550px) {
  .whatsapp_flotante_nomadas span:last-child {
    display: none;
  }

  .whatsapp_flotante_nomadas {
    padding: 8px;
  }
}

.presupuesto_page_wrapper {
  min-height: 100vh;
  padding: 18vh 2.5% 12vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 114, 104, .14), transparent 34%),
    linear-gradient(115deg, rgba(255, 114, 104, .06), transparent 42%);
}

.presupuesto_page_container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

body:has(.presupuesto_page_wrapper) .footer_text_cnt {
  display: none;
}

.presupuesto_hero {
  display: block;
}

.presupuesto_kicker {
  margin-bottom: 24px;
  color: #ff7268;
  font-size: clamp(14px, 1.15vw, 22px);
  font-weight: 900;
  letter-spacing: .32em;
  line-height: 1;
  text-transform: uppercase;
}

.presupuesto_intro h1 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 8.7vw, 165px);
  font-weight: 300;
  line-height: .85;
  letter-spacing: 0;
}

.presupuesto_intro p {
  max-width: 820px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.18;
}

.presupuesto_intro_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 34px;
}

.presupuesto_text_link {
  color: #fff;
  font-size: clamp(18px, 1.5vw, 24px);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.presupuesto_text_link:hover,
.presupuesto_text_link:focus {
  color: #ff7268;
  border-color: #ff7268;
}

.presupuesto_panel {
  width: 100%;
  max-width: 920px;
  margin-top: clamp(42px, 6vw, 86px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 34px;
  padding: clamp(24px, 3vw, 46px);
  background: rgba(22, 22, 24, .82);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
}

.presupuesto_status {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 18px;
  line-height: 1.25;
}

.presupuesto_status_ok {
  background: rgba(60, 214, 123, .16);
  color: #fff;
  border: 1px solid rgba(60, 214, 123, .45);
}

.presupuesto_status_error {
  background: rgba(255, 114, 104, .16);
  color: #fff;
  border: 1px solid rgba(255, 114, 104, .45);
}

.presupuesto_form_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.presupuesto_field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.presupuesto_field_full {
  margin-top: 18px;
}

.presupuesto_field label,
.presupuesto_privacidad {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.2;
}

.presupuesto_field input,
.presupuesto_field select,
.presupuesto_field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(0, 0, 0, .32);
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  line-height: 1.25;
  outline: none;
  padding: 16px 18px;
  transition: border-color .2s ease, background .2s ease;
}

.presupuesto_field textarea {
  resize: vertical;
  min-height: 180px;
}

.presupuesto_field input:focus,
.presupuesto_field select:focus,
.presupuesto_field textarea:focus {
  border-color: #ff7268;
  background: rgba(0, 0, 0, .48);
}

.presupuesto_field input::placeholder,
.presupuesto_field textarea::placeholder {
  color: rgba(255, 255, 255, .38);
}

.presupuesto_privacidad {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
}

.presupuesto_privacidad input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #ff7268;
}

.presupuesto_privacidad a {
  color: #fff;
}

.presupuesto_submit_row {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.presupuesto_submit_row p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.35;
}

.presupuesto_submit {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  padding: 0;
  text-align: left;
}

.presupuesto_submit.enlace_seccion {
  width: auto;
}

.presupuesto_submit.enlace_seccion span {
  display: inline-block;
}

.presupuesto_hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.presupuesto_next_steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 920px;
  margin-top: clamp(58px, 8vw, 120px);
}

.presupuesto_step {
  min-height: initial;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  padding: clamp(22px, 2.6vw, 44px);
  background: rgba(22, 22, 24, .58);
}

.presupuesto_step_number {
  color: #ff7268;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .24em;
  line-height: 1;
}

.presupuesto_step h2 {
  margin: 46px 0 18px;
  color: #fff;
  font-size: clamp(32px, 3.5vw, 62px);
  font-weight: 300;
  line-height: .95;
}

.presupuesto_step p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.18;
}

@media (max-width: 700px) {
  .presupuesto_page_wrapper {
    padding: 130px 15px 90px;
  }

  .presupuesto_intro h1 {
    font-size: 54px;
  }

  .presupuesto_intro p {
    font-size: 21px;
  }

  .presupuesto_panel {
    border-radius: 24px;
    padding: 20px;
  }

  .presupuesto_form_grid {
    grid-template-columns: 1fr;
  }

  .presupuesto_submit_row {
    flex-direction: column;
    align-items: flex-start;
  }

  .presupuesto_submit.enlace_seccion,
  .presupuesto_submit.enlace_seccion span {
    width: 100%;
  }

  .presupuesto_step {
    min-height: initial;
  }

  .presupuesto_step h2 {
    margin-top: 42px;
  }
}
