section.label {
  margin: 41px 0;
  max-width: 558px;
  width: 60%;
  background: #FFE8D2;
  padding: 17px 60px 17px 80px;
  border-radius: 30px;
  transform: translate(-20px, 0);
  display: flex;

  label {
    color: var(--bg-color-orange);
    font-family: "DINAlternate-Bold", sans-serif;
    font-size: 30px;
    line-height: 35px;
    /* 116.667% */
    margin-left: auto;
    box-sizing: border-box;
    max-width: 70%;
  }
}

section.forms {
  .container {
    width: 70%;

    .tabs {
      display: flex;
      flex-direction: row;
      gap: 12px;
      margin-left: 42px;

      h2 {
        color: var(--bg-color-white);
        font-family: "DIN-Medium", sans-serif;
        font-size: 20px;
        line-height: 18px;
        /* 90% */

        border-radius: 28px 28px 0px 0px;
        background: #C3C3C3;
        box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.35);

        padding: 20px 34px;
        box-sizing: border-box;
        cursor: pointer;
      }

      h2.active {
        border-radius: 28px 28px 0px 0px;
        background: var(--1, #F47E24);
        box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.35);
      }
    }

    .form-container {
      border-radius: 28px;
      border: 1px solid var(--1, #F47E24);
      background: var(--5, #FFF);
      box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.35);

      padding: 35px 42px;
      box-sizing: border-box;

      &>div {
        display: none;

        form {
          display: flex;
          width: 100%;
          flex-wrap: wrap;
          row-gap: 26px;
          justify-content: space-between;
          box-sizing: border-box;

          span.recaptcha{
            width: 100%;
          }
          div.container-field {
            min-width: 250px;
            width: 47%;

            p {
              display: flex;
              flex-direction: column;
              gap: 5px;

              .field-name {
                color: var(--bg-color-grey);
                font-family: "DIN-Medium", sans-serif;
                font-size: 15px;
                line-height: 18px;
                /* 120% */

                background: unset;
                border-radius: unset;
                box-sizing: unset;
              }

              span {
                background: #fde5d3;
                border-radius: 16px;
                color: var(--bg-color-orange);

                input,
                textarea {
                  width: 100%;
                  background: transparent;
                  padding: 1rem;
                  box-sizing: border-box;

                  color: var(--bg-color-orange);
                  font-family: "DIN-Regular", sans-serif;
                  font-size: 15px;
                  line-height: 18px;
                  /* 120% */

                  &::placeholder {
                    color: var(--bg-color-orange);
                  }
                }

                textarea {
                  height: 107px;
                }
              }
            }


          }

          div.container-field.terminos-check {
            span {
              background: transparent;
            }

            span.wpcf7-list-item {
              background: transparent;

              label {
                display: flex;
                gap: 0.5rem;
                align-items: center;

                input[type="checkbox"] {
                  cursor: pointer;
                  width: fit-content;

                  appearance: none;
                  padding: 0;
                  width: 12px;
                  ;
                  height: 12px;
                  border: 1px solid var(--bg-color-orange);

                  /* Cambia el color del borde aquí */
                  &:checked {
                    background-color: var(--bg-color-orange);
                    /* Cambia el color de fondo cuando está seleccionado */
                    border-color: var(--bg-color-orange);
                    /* Cambia el color del borde cuando está seleccionado */
                    position: relative;
                    /*
                    &::before {
                      content: "✔";
                      display: block;
                      color: #fff;
                      font-size: 12px;
                      text-align: center;
                      line-height: 12px;
                    }
                    */
                  }
                }

                span.wpcf7-list-item-label {
                  color: #6d6d6d;
                  font-family: "DIN-Medium", sans-serif;
                  font-size: 12px;
                  line-height: 15px;
                  /* 125% */
                }
              }
            }
          }

          & > div:nth-last-child(2) {
            display: flex;
            align-items: center;
            flex-direction: row;
            gap: 0.5rem;
            position: relative;


            min-width: unset;
            margin: 0 auto;

            box-sizing: border-box;

            p {
              input[type="submit"] {
                color: var(--bg-color-white);
                cursor: pointer;
                font-family: "DIN-Medium", sans-serif;
                font-size: 20.288px;
                line-height: 20.288px;
                /* 100% */

                background: transparent;
                width: fit-content;

                padding: 13px 50px 13px 20px;
                box-sizing: border-box;
                width: fit-content;

                position: relative;
                z-index: 1;

              }
              .wpcf7-spinner{
                display: none;
              }
            }

            &::before {
              content: "";
              background: linear-gradient(180deg, #F47E24 0%, #F59F42 100%);
              border-radius: 29px;
              padding: 13px 50px 13px 20px;
              box-sizing: border-box;
              width: 100%;
              height: 100%;
              position: absolute;
              z-index: 0;
            }

            &::after {
              content: "";
              /* display: inline-block; */
              background: url("../../images/arrow-white-right.svg");
              background-repeat: no-repeat;
              background-size: contain;
              background-position: center;
              right: 20px;
              width: 22px;
              height: 15px;
              position: absolute;
            }
          }
        }
      }

      &>div.active {
        display: flex;
      }

      .container-contacto {
        form {
          div.container-field {
            p {
              .field-name {}

              span {

                input,
                textarea {

                  &::placeholder {}
                }

                textarea {}
              }
            }

            
            &:nth-child(8),
            &:nth-child(9),
            &:nth-child(10),
            &:nth-child(11) {
              width: 100%;
            }

          }

          div.custom-select-cotizar {
            width: 100%;

            p {
              margin-bottom: 5px;

              .field-name {
                color: var(--bg-color-grey);
                font-family: "DIN-Medium", sans-serif;
                font-size: 15px;
                line-height: 18px;
                /* 120% */

                background: unset;
                border-radius: unset;
                box-sizing: unset;
              }
            }

            .select-selected {
              width: 100%;
              background: #FFDDC2;
              padding: 1rem;
              box-sizing: border-box;

              color: var(--bg-color-orange);
              font-family: "DIN-Regular", sans-serif;
              font-size: 15px;
              line-height: 18px;
              /* 120% */
            }

            .container-select-items {
              .select-items {
                /* border-radius: 16.874px 16.874px 0px 0px; */
                background: #fff6ee;

                &>div {
                  border-bottom: 1px solid #F89D4B;

                  .opcion {
                    p {
                      color: var(--bg-color-orange);
                      font-family: "DIN-Medium", sans-serif;
                      font-size: 15px;
                      line-height: 18px;
                      /* 120% */
                    }
                  }

                  &:last-child {
                    border: none;
                  }

                  &:hover {
                    background: #FFB97A;
                  }
                }
              }
            }
          }

          div.container-field.terminos-check {
            span {
              background: transparent;
            }

            span.wpcf7-list-item {
              background: transparent;

              label {
                display: flex;
                gap: 0.5rem;
                align-items: center;

                input[type="checkbox"] {
                  cursor: pointer;
                  width: fit-content;

                  appearance: none;
                  padding: 0;
                  width: 12px;
                  ;
                  height: 12px;
                  border: 1px solid var(--bg-color-orange);

                  /* Cambia el color del borde aquí */
                  &:checked {
                    background-color: var(--bg-color-orange);
                    /* Cambia el color de fondo cuando está seleccionado */
                    border-color: var(--bg-color-orange);
                    /* Cambia el color del borde cuando está seleccionado */
                    position: relative;
                    /*
                    &::before {
                      content: "✔";
                      display: block;
                      color: #fff;
                      font-size: 12px;
                      text-align: center;
                      line-height: 12px;
                    }
                    */
                  }
                }

                span.wpcf7-list-item-label {
                  color: #6d6d6d;
                  font-family: "DIN-Medium", sans-serif;
                  font-size: 12px;
                  line-height: 15px;
                  /* 125% */
                }
              }
            }
          }
        }
      }

      .container-reclamo {
        form {
          div.container-field {
            p {
              .field-name {}

              span {

                input,
                textarea {

                  &::placeholder {}
                }

                textarea {}
              }
            }

            &:nth-child(5),
            &:nth-child(8),
            &:nth-child(10),
            &:nth-child(11) {
              width: 100%;
            }

          }

          div.custom-select-solicitud {
            width: 100%;

            p {
              margin-bottom: 5px;

              .field-name {
                color: var(--bg-color-grey);
                font-family: "DIN-Medium", sans-serif;
                font-size: 15px;
                line-height: 18px;
                /* 120% */

                background: unset;
                border-radius: unset;
                box-sizing: unset;
              }
            }

            .select-selected {
              width: 100%;
              background: #FFDDC2;
              padding: 1rem;
              box-sizing: border-box;

              color: var(--bg-color-orange);
              font-family: "DIN-Regular", sans-serif;
              font-size: 15px;
              line-height: 18px;
              /* 120% */
            }

            .container-select-items {
              .select-items {
                /* border-radius: 16.874px 16.874px 0px 0px; */
                background: #fff6ee;

                &>div {
                  border-bottom: 1px solid #F89D4B;

                  .opcion {
                    p {
                      color: var(--bg-color-orange);
                      font-family: "DIN-Medium", sans-serif;
                      font-size: 15px;
                      line-height: 18px;
                      /* 120% */
                    }
                  }

                  &:last-child {
                    border: none;
                  }

                  &:hover {
                    background: #FFB97A;
                  }
                }
              }
            }
          }

          div.custom-select-es {
            width: 100%;

            p {
              margin-bottom: 5px;

              .field-name {
                color: var(--bg-color-grey);
                font-family: "DIN-Medium", sans-serif;
                font-size: 15px;
                line-height: 18px;
                /* 120% */

                background: unset;
                border-radius: unset;
                box-sizing: unset;
              }
            }

            .select-selected {
              width: 100%;
              background: #FFDDC2;
              padding: 1rem;
              box-sizing: border-box;

              color: var(--bg-color-orange);
              font-family: "DIN-Regular", sans-serif;
              font-size: 15px;
              line-height: 18px;
              /* 120% */
            }

            .container-select-items {
              .select-items {
                /* border-radius: 16.874px 16.874px 0px 0px; */
                background: #fff6ee;

                &>div {
                  border-bottom: 1px solid #F89D4B;

                  .opcion {
                    p {
                      color: var(--bg-color-orange);
                      font-family: "DIN-Medium", sans-serif;
                      font-size: 15px;
                      line-height: 18px;
                      /* 120% */
                    }
                  }

                  &:last-child {
                    border: none;
                  }

                  &:hover {
                    background: #FFB97A;
                  }
                }
              }
            }
          }

          div.custom-select-fecha {
            width: 100%;
            position: relative;

            p {
              .field-name {}

              span.wpcf7-form-control-wrap {
                display: flex;
                align-items: center;
                /* padding: 1rem;
                box-sizing: border-box; */
                position: relative;

                input#datepicker {
                  cursor: pointer;
                  padding: 0;
                  padding: 1rem 2rem 1rem 1rem;
                  box-sizing: border-box;
                }

                &::after {
                  content: '';
                  background: url('../../images/contacto/calendar-icon-forms.svg');
                  background-position: center center;
                  background-repeat: no-repeat;
                  background-size: contain;
                  width: 18px;
                  height: 20px;
                  position: absolute;
                  right: 16px;
                }
              }
            }
          }

          div.custom-file {
            /* Ocultar el input tipo file real */
            width: 35%;

            p {
              display: flex;
              flex-direction: column;
              gap: 0.5rem;

              .field-name {
                color: var(--bg-color-grey);
                font-family: "DIN-Medium", sans-serif;
                font-size: 15px;
                line-height: 18px;
                background: unset;
                border-radius: unset;
                box-sizing: unset;
              }

              .custom-file-input {
                opacity: 0;
                position: absolute;
                z-index: -1;
              }

              /* Contenedor para el archivo */
              .custom-file {
                position: relative;
                width: 100%;
              }

              .wpcf7-form-control-wrap {
                display: inline-block;
                width: 100%;
                position: relative;
              }

              /* Placeholder personalizado */
              .custom-placeholder {
                display: flex;
                width: 100%;
                padding: 1rem 27px 1rem 1rem;
                box-sizing: border-box;
                background-color: #fde6d0;
                /* Color de fondo suave */
                border-radius: 20px;
                text-align: start;
                cursor: pointer;

                color: var(--1, #F47E24);
                font-family: "DIN-Regular", sans-serif;
                font-size: 15px;
                line-height: 18px;
                /* 120% */

                width: fit-content;

                &::before {
                  content: '';
                  display: inline-block;
                  background: url("../../images/contacto/file-icon-forms.svg");
                  background-position: center;
                  /* Alinear la imagen a la derecha */
                  background-repeat: no-repeat;
                  background-size: contain;
                  width: 24px;
                  height: 24px;
                  margin-right: 8px;
                }
              }

              /* Cambios en hover */
              .custom-placeholder:hover {
                background-color: #ffd7b2;
                /* Cambio de color al hacer hover */
                border-color: #ff9933;
              }

              /* Ajustar el tamaño del label y la caja del file input */
              .custom-file p {
                position: relative;
                margin: 0;
                padding: 0;
                width: 100%;
              }
            }
          }
        }
      }

      .container-encuesta {
        flex-direction: column;
        gap: 39px;
        form {
          h3 {
            color: var(--5, #FFF);
            font-family: "DIN-Medium", sans-serif;
            font-size: 15px;
            line-height: 18px;
            /* 120% */

            border-radius: 15px;
            box-sizing: border-box;
            background: var(--2, #F89D4B);
            padding: 8px 16px;
            margin-top: 24px;
            width: 100%;
          }

          div.container-field {
            p {
              .field-name {}

              span {

                input,
                textarea {

                  &::placeholder {}
                }

                textarea {}
              }
            }

            &:nth-child(23),&:nth-child(24),
            &:nth-child(25){
              width: 100%;
            }

          }

          div.radio {
            width: 100%;

            p {
              gap: 1rem;

              .field-name {}

              span.wpcf7-form-control-wrap {
                background: unset;

                span.mis-opciones {
                  display: flex;
                  flex-direction: row;
                  column-gap: 3.5rem;
                  row-gap: 1rem;
                  background: unset;
                  flex-wrap: wrap;
                  /*
                  span.wpcf7-list-item {
                    background: unset;
                    display: flex;
                    align-items: center;
                    position: relative;
                    gap: 11px;

                    &::before {
                      content: '';
                      display: inline-block;
                      width: 21px;
                      height: 21px;
                      border-radius: 16.874px;
                      background: #FFEFE0;
                    }

                    input[type='radio'] {
                      position: absolute;
                    }

                    input[type='radio']:checked~ ::before {
                      background: var(--bg-color-orange);
                    }

                    span.wpcf7-list-item-label {
                      background: unset;
                      color: var(--bg-color-grey);
                      font-family: "DIN-Medium", sans-serif;
                      font-size: 15px;
                      line-height: 18px;
                    }
                  }
                  */

                  span.wpcf7-list-item {
                    background: unset;
                    display: flex;
                    align-items: center;
                    position: relative;
                    gap: 11px;

                    input[type='radio'] {
                      position: absolute;
                      opacity: 0;
                      width: 100%;
                      height: 100%;
                      cursor: pointer;
                      margin: 0;
                    }

                    

                    /* Cambiar el background del ::before cuando el radio está seleccionado */
                    input[type='radio']:checked+span::before {
                      background: var(--bg-color-orange);
                      /* Cambia a naranja cuando esté seleccionado */
                    }

                    span.wpcf7-list-item-label {
                      background: unset;
                      color: var(--bg-color-grey);
                      font-family: "DIN-Medium", sans-serif;
                      font-size: 15px;
                      line-height: 18px;

                      display: flex;
                      align-items: center;
                      gap: 11px;
                      
                      /* Añadimos un span para actuar como pseudo-elemento visual */
                      &::before {
                        content: '';
                        display: inline-block;
                        width: 21px;
                        height: 21px;
                        border-radius: 16.874px;
                        background: #FFEFE0;
                        /* Color por defecto */
                        transition: background-color 0.3s ease;
                        /* Transición suave */
                      }
                    }
                  }

                }
              }
            }
          }
        }
        p{
          color: var(--bg-color-grey-2);
          font-family: "DIN-Regular",sans-serif;
          font-size: 18px;
          line-height: 30px;
        }
      }

    }
  }
}

section.datos-contacto {
  margin-top: 52px;
  padding-bottom: 4rem;
  position: relative;
  &::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: url("../../images/Vector-bg-nuestros-servicios.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }
  &::after{
    content: '';
    position: absolute;
    height: 400px;
    width: 400px;
    background: url(../../images/omnisys-bg-logo-grande.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    transform: translate(0, -50%);
    top: 50%;
    left: -12rem;
  }
  .container {
    display: flex;
    gap: 4rem;
    align-items: center;

    .mail-position {
      width: 50%;
      display: flex;
      flex-direction: row;
      height: fit-content;
      padding: 30px 63px;
      box-sizing: border-box;
      border-radius: 30px;
      background: #FFE8D2;

      .contact {
        display: flex;
        flex-direction: column;
        width: 45%;
        align-items: center;
        gap: 15px;

        .container-img {
          height: 37px;
          width: 25px;

          img {
            height: 100%;
            width: 100%;
            object-position: center;
            object-fit: contain;
          }
        }

        span {
          color: var(--bg-color-orange-2);
          font-family: "DIN-Medium", sans-serif;
          font-size: 20px;
          line-height: 20px;
          /* 100% */
        }

        p {
          color: var(--bg-color-grey-2);
          text-align: center;
          font-family: "DIN-Regular", sans-serif;
          font-size: 18px;
          line-height: 21px;
          /* 116.667% */
        }
      }

      hr {
        background: #3B3A3C;
        width: 1px;
        margin: 2% auto;
      }
    }

    .pill-imgs {
      width: 50%;
      display: flex;
      flex-direction: row;
      gap: 28px;

      .col {
        display: flex;
        flex-direction: column;

        min-height: 490px;
        min-width: 200px;
        width: 40%;

        .container-img {
          height: 80%;

          img {
            border-radius: 110px;
            height: 100%;
            width: 100%;
            object-position: center;
            object-fit: cover;
          }
        }
      }

      .col.left {
        justify-content: end;
      }

      .col.right {
        justify-content: start;
      }
    }
  }
}

section.map {
  .container-img-map {
    aspect-ratio: 1326/426;

    img {
      height: 100%;
      width: 100%;
      object-position: center;
      object-fit: cover;
    }

  }
}

@media (max-width: 850px) {
  section.forms {
    .container {
      width: 85%;
      .tabs {
        margin: 0 0 20px 0;
        flex-wrap: wrap;
        h2 {
          font-family: "DIN-Medium",sans-serif;
          font-size: 18px;
          line-height: normal;
          border-radius: 12px;
          max-width: 162px;
          padding: 15px;
          text-align: center;
          align-items: center;
          display: flex;
          width: calc(50% - 14px);
        }
        h2.active {
          border-radius: 12px;
        }
      }
  
      .form-container { 
        padding: 32px 23px;
  
        &>div {
          display: none;
  
          form {
            div.container-field {
              width: 100%;
              min-width: unset;
              p {  
                .field-name {
                }
  
                span {
                  input,
                  textarea {  
                    &::placeholder {
                    }
                  }
  
                  textarea {
                    height: 132px;
                  }
                }
              }
  
  
            }
  
            div.container-field.terminos-check {
              span {
              }
  
              span.wpcf7-list-item {
                label {
                    
                  input[type="checkbox"] {
                    
                    &:checked {
                      
                    }
                  }
  
                  span.wpcf7-list-item-label {
                  }
                }
              }
            }
  
            &>div:last-child {  
              p {
                input[type="submit"] {
                    
                }
              }
  
              &::before {

              }
  
              &::after {
                
              }
            }
          }
        }
  
        &>div.active {
          
        }
  
        .container-contacto {
          .wpcf7{
            width: 100%;
          }
          form {
            div.container-field {
              p {
                .field-name {}
  
                span {
  
                  input,
                  textarea {
  
                    &::placeholder {}
                  }
  
                  textarea {}
                }
              }
  
              &:nth-child(7),
              &:nth-child(8),
              &:nth-child(9),
              &:nth-child(10) {
                width: 100%;
              }
  
            }
  
            div.custom-select-cotizar {
              width: 100%;
  
              p {
                margin-bottom: 5px;
  
                .field-name {
                  color: var(--bg-color-grey);
                  font-family: "DIN-Medium", sans-serif;
                  font-size: 15px;
                  line-height: 18px;
                  /* 120% */
  
                  background: unset;
                  border-radius: unset;
                  box-sizing: unset;
                }
              }
  
              .select-selected {
                width: 100%;
                background: #FFDDC2;
                padding: 1rem;
                box-sizing: border-box;
  
                color: var(--bg-color-orange);
                font-family: "DIN-Regular", sans-serif;
                font-size: 15px;
                line-height: 18px;
                /* 120% */
              }
  
              .container-select-items {
                .select-items {
                  /* border-radius: 16.874px 16.874px 0px 0px; */
                  background: #fff6ee;
  
                  &>div {
                    border-bottom: 1px solid #F89D4B;
  
                    .opcion {
                      p {
                        color: var(--bg-color-orange);
                        font-family: "DIN-Medium", sans-serif;
                        font-size: 15px;
                        line-height: 18px;
                        /* 120% */
                      }
                    }
  
                    &:last-child {
                      border: none;
                    }
  
                    &:hover {
                      background: #FFB97A;
                    }
                  }
                }
              }
            }
  
            div.container-field.terminos-check {
              span {
                background: transparent;
              }
  
              span.wpcf7-list-item {
                background: transparent;
  
                label {
                  display: flex;
                  gap: 0.5rem;
                  align-items: center;
  
                  input[type="checkbox"] {
                    cursor: pointer;
                    width: fit-content;
  
                    appearance: none;
                    padding: 0;
                    width: 12px;
                    ;
                    height: 12px;
                    border: 1px solid var(--bg-color-orange);
  
                    /* Cambia el color del borde aquí */
                    &:checked {
                      background-color: var(--bg-color-orange);
                      /* Cambia el color de fondo cuando está seleccionado */
                      border-color: var(--bg-color-orange);
                      /* Cambia el color del borde cuando está seleccionado */
                      position: relative;
                      /*
                      &::before {
                        content: "✔";
                        display: block;
                        color: #fff;
                        font-size: 12px;
                        text-align: center;
                        line-height: 12px;
                      }
                      */
                    }
                  }
  
                  span.wpcf7-list-item-label {
                    color: #6d6d6d;
                    font-family: "DIN-Medium", sans-serif;
                    font-size: 12px;
                    line-height: 15px;
                    /* 125% */
                  }
                }
              }
            }
          }
        }
  
        .container-reclamo {
          .wpcf7{
            width: 100%;
          }
          form {
            div.container-field {
              p {
                .field-name {}
  
                span {
  
                  input,
                  textarea {
  
                    &::placeholder {}
                  }
  
                  textarea {}
                }
              }
  
              &:nth-child(4),
              &:nth-child(7),
              &:nth-child(9),
              &:nth-child(10) {
                width: 100%;
              }
  
            }
  
            div.custom-select-solicitud {
              width: 100%;
  
              p {
                margin-bottom: 5px;
  
                .field-name {
                  color: var(--bg-color-grey);
                  font-family: "DIN-Medium", sans-serif;
                  font-size: 15px;
                  line-height: 18px;
                  /* 120% */
  
                  background: unset;
                  border-radius: unset;
                  box-sizing: unset;
                }
              }
  
              .select-selected {
                width: 100%;
                background: #FFDDC2;
                padding: 1rem;
                box-sizing: border-box;
  
                color: var(--bg-color-orange);
                font-family: "DIN-Regular", sans-serif;
                font-size: 15px;
                line-height: 18px;
                /* 120% */
              }
  
              .container-select-items {
                .select-items {
                  /* border-radius: 16.874px 16.874px 0px 0px; */
                  background: #fff6ee;
  
                  &>div {
                    border-bottom: 1px solid #F89D4B;
  
                    .opcion {
                      p {
                        color: var(--bg-color-orange);
                        font-family: "DIN-Medium", sans-serif;
                        font-size: 15px;
                        line-height: 18px;
                        /* 120% */
                      }
                    }
  
                    &:last-child {
                      border: none;
                    }
  
                    &:hover {
                      background: #FFB97A;
                    }
                  }
                }
              }
            }
  
            div.custom-select-es {
              width: 100%;
  
              p {
                margin-bottom: 5px;
  
                .field-name {
                  color: var(--bg-color-grey);
                  font-family: "DIN-Medium", sans-serif;
                  font-size: 15px;
                  line-height: 18px;
                  /* 120% */
  
                  background: unset;
                  border-radius: unset;
                  box-sizing: unset;
                }
              }
  
              .select-selected {
                width: 100%;
                background: #FFDDC2;
                padding: 1rem;
                box-sizing: border-box;
  
                color: var(--bg-color-orange);
                font-family: "DIN-Regular", sans-serif;
                font-size: 15px;
                line-height: 18px;
                /* 120% */
              }
  
              .container-select-items {
                .select-items {
                  /* border-radius: 16.874px 16.874px 0px 0px; */
                  background: #fff6ee;
  
                  &>div {
                    border-bottom: 1px solid #F89D4B;
  
                    .opcion {
                      p {
                        color: var(--bg-color-orange);
                        font-family: "DIN-Medium", sans-serif;
                        font-size: 15px;
                        line-height: 18px;
                        /* 120% */
                      }
                    }
  
                    &:last-child {
                      border: none;
                    }
  
                    &:hover {
                      background: #FFB97A;
                    }
                  }
                }
              }
            }
  
            div.custom-select-fecha {
              width: 100%;
              position: relative;
  
              p {
                .field-name {}
  
                span.wpcf7-form-control-wrap {
                  display: flex;
                  align-items: center;
                  /* padding: 1rem;
                  box-sizing: border-box; */
                  position: relative;
  
                  input#datepicker {
                    cursor: pointer;
                    padding: 0;
                    padding: 1rem 2rem 1rem 1rem;
                    box-sizing: border-box;
                  }
  
                  &::after {
                    content: '';
                    background: url('../../images/contacto/calendar-icon-forms.svg');
                    background-position: center center;
                    background-repeat: no-repeat;
                    background-size: contain;
                    width: 18px;
                    height: 20px;
                    position: absolute;
                    right: 16px;
                  }
                }
              }
            }
  
            div.custom-file {
              /* Ocultar el input tipo file real */
              width: 100%;
  
              p {
               
                .field-name {
                  
                }
  
                .custom-file-input {
                 
                }
  
                /* Contenedor para el archivo */
                .custom-file {
                  position: relative;
                  width: 100%;
                }
  
                .wpcf7-form-control-wrap {
                  display: inline-block;
                  width: 100%;
                  position: relative;
                }
  
                /* Placeholder personalizado */
                .custom-placeholder {
                  display: flex;
                  width: 100%;
                  padding: 1rem 27px 1rem 1rem;
                  box-sizing: border-box;
                  background-color: #fde6d0;
                  /* Color de fondo suave */
                  border-radius: 20px;
                  text-align: start;
                  cursor: pointer;
  
                  color: var(--1, #F47E24);
                  font-family: "DIN-Regular", sans-serif;
                  font-size: 15px;
                  line-height: 18px;
                  /* 120% */
  
                  width: fit-content;
  
                  &::before {
                    content: '';
                    display: inline-block;
                    background: url("../../images/contacto/file-icon-forms.svg");
                    background-position: center;
                    /* Alinear la imagen a la derecha */
                    background-repeat: no-repeat;
                    background-size: contain;
                    width: 24px;
                    height: 24px;
                    margin-right: 8px;
                  }
                }
  
                /* Cambios en hover */
                .custom-placeholder:hover {
                  background-color: #ffd7b2;
                  /* Cambio de color al hacer hover */
                  border-color: #ff9933;
                }
  
                /* Ajustar el tamaño del label y la caja del file input */
                .custom-file p {
                  position: relative;
                  margin: 0;
                  padding: 0;
                  width: 100%;
                }
              }
            }
          }
        }
  
        .container-encuesta {
          form {
            h3 {
              color: var(--5, #FFF);
              font-family: "DIN-Medium", sans-serif;
              font-size: 15px;
              line-height: 18px;
              /* 120% */
  
              border-radius: 15px;
              box-sizing: border-box;
              background: var(--2, #F89D4B);
              padding: 8px 16px;
              margin-top: 24px;
              width: 100%;
            }
  
            div.container-field {
              p {
                .field-name {}
  
                span {
  
                  input,
                  textarea {
  
                    &::placeholder {}
                  }
  
                  textarea {}
                }
              }
  
              &:nth-child(22),&:nth-child(23),
              &:nth-child(24){
                width: 100%;
              }
  
            }
  
            div.radio {
              width: 100%;
  
              p {
                gap: 1rem;
  
                .field-name {}
  
                span.wpcf7-form-control-wrap {
                  background: unset;
  
                  span.mis-opciones {
                    display: flex;
                    flex-direction: row;
                    column-gap: 3.5rem;
                    row-gap: 1rem;
                    background: unset;
                    flex-wrap: wrap;
  
                    span.wpcf7-list-item {
                      width: 100%;
  
                      input[type='radio'] {
                        position: absolute;
                        opacity: 0;
                        width: 100%;
                        height: 100%;
                        cursor: pointer;
                        margin: 0;
                      }
  
                      
  
                      /* Cambiar el background del ::before cuando el radio está seleccionado */
                      input[type='radio']:checked+span::before {
                        background: var(--bg-color-orange);
                        /* Cambia a naranja cuando esté seleccionado */
                      }
  
                      span.wpcf7-list-item-label {
                        width: 100%;
                        
                        /* Añadimos un span para actuar como pseudo-elemento visual */
                        &::before {
                          content: '';
                          display: inline-block;
                          width: 21px;
                          height: 21px;
                          border-radius: 16.874px;
                          background: #FFEFE0;
                          /* Color por defecto */
                          transition: background-color 0.3s ease;
                          /* Transición suave */
                        }
                      }
                    }
  
                  }
                }
              }
            }
          }
          p{
            font-size: 15px;
          line-height: normal;
          }
        }
  
      }
    }
  }
}

@media (max-width: 700px) {
  section.label {
    width: 60%;
    padding: 17px 15px 17px 50px;
    label {
      font-size: 25px;
      line-height: 30px;
      max-width: unset;
    }
  }  

  section.datos-contacto {
    margin-top: 60px;
    padding-bottom: 40px;
    &::before{
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      background: url("../../images/Vector-bg-nuestros-servicios.png");
      background-position: bottom center;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: -1;
    }
    &::after{
      transform: translate(-50%, 85%);
      top: 0;
      left: 0;
      width: 185px;
      height: 185px;
    }
    .container {
      flex-direction: column;
      gap: 36px;
      .mail-position {
        width: 100%;
        gap: 1rem;
        flex-direction: column;
        padding: 2rem;
        width: fit-content;
        margin: 0 auto;
        .contact {
          width: 100%;
          gap: 8px;
          .container-img {  
            img {
            }
          }
  
          span {
            color: var(--bg-color-orange-2);
            font-family: "DIN-Medium", sans-serif;
            font-size: 20px;
            line-height: 20px;
            /* 100% */
          }
  
          p {
            color: var(--bg-color-grey-2);
            text-align: center;
            font-family: "DIN-Regular", sans-serif;
            font-size: 18px;
            line-height: 21px;
            /* 116.667% */
          }
        }
  
        hr {
          background: #3B3A3C;
          width: 70%;
          height: 2px;
          margin: 2% auto;
        }
      }
  
      .pill-imgs {
        gap: 21px;
        width: 100%;
        height: 320px;
        .col {
          width: 50%;
          min-width: unset;
          min-height: unset;
          .container-img {
            img {
            }
          }
        }
      }
    }
  }

  section.map {
    .container-img-map {
      aspect-ratio: 390/663;
      img {
        height: 100%;
        width: 100%;
        object-position: center;
        object-fit: cover;
      }
  
    }
  }
}