* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #ff0000;
  --secondary-color: #000;
  --background-color: #fff;
  --border-color: #f1f1f1;
  --text-color: #333;
  --heading-color: #111;
  --sub-heading-color: #555;
  --light-color: #f9f9f9;
  --dark-color: #222;
  --danger-color: #ff0000;
  --success-color: #00ff00;
  --warning-color: #ffcc00;
  --info-color: #00ccff;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --btn-color: #0096ae;
  --header-color-text: #fff;
  --footer-bg-color: #222627;
  --footer-text-color: #fff;
  --color-btn-font-cotizar: #006e80;
  --color-border-font-cotizar: #6db5c6;
  --background-color-cotizador: #f9fafb;

  --max-width-container: 1400px;

  --font-size-txt: 16px;

  --radius-btn: 16px;
}

.modal {
  position: fixed;
  z-index: 99999999999 !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

.modal-content {
  background-color: #fefefe;

  padding: 20px;
  width: 80% !important;
  max-width: 600px;
  min-height: 264px;
  border-radius: 12px !important;
  border: none !important;

  background-image: url("../assets/bg-modal.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -100px -100px;

  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);

  @media only screen and (max-width: 640px) {
    background-image: none !important;
    padding: 10px !important;
  }
}

.modal-content-dos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;

  background-color: #fefefe;

  max-width: 600px;
  min-height: 264px;
  border-radius: 12px !important;
  border: none !important;
  padding: 16px;


  @media only screen and (max-width: 1024px) {
    width: 80%;
    background-image: none;
    padding: 10px;
  }

  @media only screen and (max-width: 640px) {
    width: 90%;
    background-image: none;
    padding: 10px;
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal__close-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: none;
  position: absolute;
  right: 32px;
  top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.modal__header-container {
  padding: 12px 0px;
  margin-bottom: 16px;
}

.container__img-icon {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #add5df;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container__img-icon::before,
.container__img-icon::after,
.container__img-icon .wave1,
.container__img-icon .wave2,
.container__img-icon .wave3 {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #eaecf0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.container__img-icon::before {
  width: 200%;
  height: 200%;
  animation-delay: 0s;
}

.container__img-icon::after {
  width: 300%;
  height: 300%;
  animation-delay: 1s;
}

.container__img-icon .wave1 {
  width: 400%;
  height: 400%;
  animation-delay: 2s;
}

.container__img-icon .wave2 {
  width: 500%;
  height: 500%;
  animation-delay: 3s;
}

.container__img-icon .wave3 {
  width: 600%;
  height: 600%;
  animation-delay: 4s;
}

.modal__container-data {
  display: flex;
  flex-direction: column;
  gap: 4px;

  @media only screen and (max-width: 640px) {
    padding: 10px;
  }
}

.modal__data-title {
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  margin: 0px;
}

.modal__data-description {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin: 0px;
}

.modal__container-data-dos {
  display: flex;
  flex-direction: column;
  gap: 4px;

  @media only screen and (max-width: 640px) {
    padding: 10px;
  }
}

.container-list-description-modal {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.cotizacion {
  font-size: 20px;
  color: #344054;
  font-family: "Montserrat", sans-serif;
}

.datos {
  font-size: 18px;
  color: #667085;
}

.campo {
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  color: #344054;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
}

.form__input::-webkit-outer-spin-button,
.form__input::-webkit-inner-spin-button {
  /* WebKit browsers like Chrome and Safari */
  -webkit-appearance: none;
  margin: 0;
}

.form__input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  /* Firefox */
  -moz-appearance: textfield;

}

/* @media only screen and (max-width: 600px) {
  .form {
    width: auto;
    padding: 10px;
  }
} */

.progress-bar__container {
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background-color: #eaecf0;
}

.progress-bar__container-progress {
  width: 0%;
  height: 10px;
  border-radius: 10px;
  transition: width 0.5s ease-in-out;

  background-color: #0096ae;
}

.form__wrapper-paragraph {
  margin-top: 6px;
}

.form__header-paragraph {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #344054;
}

.arrowIMG {
  width: 16px;
  height: 12px;
  cursor: pointer;
}

:root {
  --primary-color: #ff0000;
  --secondary-color: #000;
  --background-color: #fff;
  --border-color: #f1f1f1;
  --text-color: #333;
  --heading-color: #111;
  --sub-heading-color: #555;
  --light-color: #f9f9f9;
  --dark-color: #222;
  --danger-color: #ff0000;
  --success-color: #00ff00;
  --warning-color: #ffcc00;
  --info-color: #00ccff;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --btn-color: #0096ae;
  --header-color-text: #fff;
  --footer-bg-color: #222627;
  --footer-text-color: #fff;
  --color-btn-font-cotizar: #006e80;
  --color-border-font-cotizar: #6db5c6;
  --background-color-cotizador: #f9fafb;

  --max-width-container: 1400px;

  --font-size-txt: 16px;

  --radius-btn: 16px;
}

.header {
  background-color: var(--background-color);
  color: var(--text-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 70px;

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
  }

  @media only screen and (max-width: 640px) {
    padding: 10px 24px;
  }
}

.logo-image {
  height: 48px;
  cursor: pointer;

  @media only screen and (max-width: 640px) {
    display: none;
  }
}

.logo-image-mobile {
  margin-right: 10px;
  display: none;

  @media only screen and (max-width: 640px) {
    height: 38px;
    display: block;
  }
}

.nav-txt {
  font-size: var(--font-size-txt);
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  display: block;

  @media only screen and (max-width: 640px) {
    display: none;
  }
}

.nav-txt-mobile {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin: 0px;

  @media only screen and (max-width: 640px) {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  }
}

.btn-cta {
  padding: 10px 20px;
  background-color: var(--btn-color);
  color: var(--background-color);
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-txt);
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}

.header__btn-cta {
  padding: 10px 20px;
  color: #344054;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: 1px solid #d0d5dd;
  background-color: transparent;
  box-shadow: 0px 4px 4px rgba(16, 24, 40, 0.05);
  transition: all 0.25s ease-in-out;
  line-height: 20px;

  &:hover {
    background-color: #f8f9fa;
  }
}


.container-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.form {
  margin: 104px auto 0px auto;
  font-family: "Inter", sans-serif;
  width: 600px;
  height: auto;
  border-radius: 16px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 50px;

  @media only screen and (max-width: 600px) {
    margin: 50px auto 0px auto;
    width: 91.5%;
    padding: 24px 16px;
  }
}


/* .arrowIMG {
  width: 16px;
  height: 12px;
} */

.parrafo {
  margin-top: 10px;
  font-size: 14px;
}

.imgCotContainer {
  display: flex;
  justify-content: space-between;
  margin: 20px;
}

.imgCot {
  float: left;
}

.select-container {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  height: 44px;
}

.select-box {
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px;

  display: flex;
  width: 100%;
  color: #667085;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.select-tip {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  border: 1px solid red;
}

.container__form-uno {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../assets/Cotizador-1.webp);
  padding: 0px 0px 40px 0px;
  overflow: hidden;

}

@media only screen and (max-width: 640px) {
  .container__form-uno {
    padding: 24px 0px;
  }
}

.form__input-container {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  flex-direction: column;
}

.separacion-box {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #344054;
  margin-bottom: 6px;
}

.form__container-inputs {
  margin: 32px 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__container-of-images {
  display: flex;
  justify-content: space-between;
  margin: 32px 0px;
}

.form__image-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  color: #344054;

  &:hover {
    transition: opacity 1s ease-in-out;
    background-color: #f9f9f9;
  }
}

.form__container-header {}

.form__header-title {
  font-family: "Montserrat";

  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  color: #344054;
}

.form__header-subtitle {
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  color: #667085;
}

.form__header-paragraph {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #344054;
}

.form__checkbox-container {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.form__label-checkbox {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #344054;
}

.form__label-span {
  text-decoration: underline;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #0096ae;
  cursor: pointer;
}

.form-container-checkboxes {
  margin: 32px 0px;
}


.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-direction: column;
  padding: 72px;

  overflow: hidden;

  @media only screen and (max-width: 1024px) {
    padding: 24px;
    margin: auto;
    flex-direction: column;
    align-items: center;
  }

  @media only screen and (max-width: 640px) {
    padding: 24px;
    margin: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-logo {
  width: 400px;

  @media only screen and (max-width: 1024px) {
    width: auto;
  }

  @media only screen and (max-width: 640px) {
    width: 100%;
  }
}

.footer-contacto {
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  gap: 8px;

  display: flex;
  align-items: start;

  .footer-box-data {
    gap: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-contact-number {
    font-size: 18px;
    font-weight: 700;
    line-height: 21.94px;
    text-align: left;
    text-decoration: underline;
    cursor: pointer;
    color: white;

  }
}

.footer-container-contacto {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 380px;
}

.footer-redes-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.title-redes {
  font-family: Inter;
  font-size: var(--font-size-txt);
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}

.text-redes {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  line-height: 17.07px;
  &:hover {
    text-decoration: underline;
    color: #fff;
  }
}

.container-red {
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.icon-red {
  height: 18px;
  width: 18px;
}

.aviso-terminos-container {
  border-top: 1px solid #fff;
  padding-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.derechos-reservados {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: left;
}

.aviso-terminos {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  line-height: 17.07px;
  text-align: left;
  cursor: pointer;
}

.rigth-side-footer {
  display: flex;
  gap: 40px;

  @media only screen and (max-width: 1024px) {
    flex-direction: column;
    align-items: flex-start;
  }

  @media only screen and (max-width: 640px) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.first-section-footer {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: auto;

  @media only screen and (max-width: 1024px) {
    flex-direction: column;
    align-items: center;
  }

  @media only screen and (max-width: 640px) {
    flex-direction: column;
    align-items: center;
  }
}

.container-redirect-footer {
  display: flex;
  gap: 20%;

  @media only screen and (max-width: 1024px) {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  @media only screen and (max-width: 640px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.footer__redirect {
  text-decoration: none;
  color: #fff;

  &:hover {
    text-decoration: underline;
    color: #fff;
  }
}

/* Form styles */

.form__error-message {
  font-family: Inter;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #d92d20;
  margin-top: 4px;
}

/** Container barra de progreso **/
.progress-bar__container {
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background-color: #eaecf0;
}

.progress-bar__container-progress {
  width: 0%;
  height: 10px;
  border-radius: 10px;
  transition: width 0.5s ease-in-out;

  background-color: #0096ae;
}

.button-cotizar-form {
  border-radius: 30px;
  background-color: #0096ae;
  color: white;
  cursor: pointer;
  float: right;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 63px;
  -webkit-transition: background-color 0.5s ease-out;
  -moz-transition: background-color 0.5s ease-out;
  -o-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;

  background-color: #d0d5dd;
  color: #fff;
  cursor: not-allowed;
  /* background-color: #0096ae;
  color: white;
  cursor: pointer; */


  @media only screen and (max-width: 640px) {
    width: 100%;
  }
}

.able-btn {
  /* background-color: #d0d5dd;
  color: #fff;
  cursor: not-allowed;  */
  background-color: #0096ae;
  color: white;
  cursor: pointer;

  &:hover {
    background: #006e80;
  }
}

.barra {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  height: 44px;

  .arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.25s ease-out;

    /* Colocamos un hover al contenedor del icono*/
    &:hover {
      background-color: #F8F9FA;

      .fill-arrow {
        stroke: #5B657A;
      }
    }
  }


  .arrowIMG {
    width: 16px;
    height: 12px;
    /* color: black */
  }

  .fill-arrow {
    stroke: #98A2B3;
    transition: all 0.25s ease-out;

    &:hover {
      stroke: #5B657A
    }

  }
}

/** Container barra de progreso **/
 /* Estilos del loader */
 .loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-top: 8px solid purple;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-input {
  border: 1px solid #d92d20 !important;
  background: url(../assets/error-icon-input.svg) no-repeat scroll 98% 50%;

}
