@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #7b0a92;
  --secondary-color: #fff;
  --parrafo-color: #4d4d4d;
  --font-main-title: 45px;
  --font-secondary-title: 40px;
  --font-parrafo: 18px;
}

body {
  width: 100%;
  overflow-x: hidden;
}

/* El main contiene a todos */
main {
  width: 100%;
}

.contenedor {
  width: min(88%, 1500px);
  margin-inline: auto;
}

/* Clases generales */

.titulo {
  text-align: center;
  font-size: 40px;
  color: #7b0a92;
  font-family: "Inter", sans-serif;
}

.boton {
  display: flex;

  img {
    margin-left: 0.5rem;
  }
  a {
    display: inline-block;
    align-items: center;
    text-decoration: none;
    width: max-content;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.7rem 1rem;
    border-radius: 1.5rem;
    border: 3px solid #87189d;
    font-size: var(--font-parrafo);
    font-family: "Inter", sans-serif;
    transition: all 0.6s ease-out;
    cursor: pointer;
  }
}

/* Fin clases generales */

#sidebar {
  top: 0;
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  opacity: 0.9;
  z-index: 3;

  background-color: #4d025b;
  .container-sidebar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80%;
    margin: auto;
    .cerrar {
      background-color: transparent;
      border: none;
      position: absolute;
      top: 12%;
      right: 10%;
      height: 100%;
      width: 100%;
      max-width: 30px;
      max-height: 34px;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }

    .sidebar-list {
      list-style: none !important;
      display: flex;
      flex-direction: column;
      text-align: center;
      gap: 2rem;
      li {
        a {
          font-family: "Inter", sans-serif;
          font-size: 25px;
          color: white;
          text-decoration: none;
        }
      }

      li.button {
        background-color: rgba(135, 24, 157, 1);
        padding: 1rem 2rem;
        border-radius: 1.5rem;
      }
    }
  }
}

/* Comienzo Header */
#header {
  /* background-color: white; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3); */
  position: fixed; 
   /*position: relative;*/ 
  width: 100%;
  z-index: 3;

  .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 1rem;
    

    .header-logo {
    height: 100%;
    
      img {
        width: 100%;
        height: 100%;
        max-height:10rem;
        object-fit: cover;
      }
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      a {
        text-decoration: none;
      }

      a:nth-child(1),
      a:nth-child(2) {
        color: var(--primary-color);
      }

      .navbar-list {
        display: flex;
        flex-wrap: wrap;
        gap: 5rem;
        justify-content: space-around;
        align-items: center;
        text-decoration: none;
        list-style: none;
        color: var(--primary-color);
        font-size: var(--font-parrafo);
        font-family: "Inter", sans-serif;

        li:nth-child(3) {
          width: max-content;
          background-color: var(--primary-color);
          color: var(--secondary-color);
          list-style: none;

          padding: 0.5rem 1rem;
          border-radius: 1.5rem;
          transition: all 0.3s ease-out;
          border: 3px solid #87189d;

          a {
            color: white;
            &:hover {
              color: var(--primary-color);
            }
          }

          &:hover {
            background-color: #9f8dbf;
            color: #87189d;
          }
        }
      }
      .navbar-list li {
        position: relative;
        outline: none;
        cursor: pointer;
      }

      .navbar-list li:nth-child(1)::after,
      .navbar-list li:nth-child(2)::after {
        content: "";
        position: absolute;
        width: 40%;
        height: 0.175rem;
        background-color: #4d025b;
        bottom: 0;
        left: 30%;
        right: 20%;
        transform: scale(0, 1);
        transition: all 0.6s ease-in-out;
      }

      .navbar-list li:nth-child(1):hover::after,
      .navbar-list li:nth-child(2):hover::after {
        transform: scale(1, 1);
      }

      .navbar-list li:nth-child(4) {
        a {
          svg {
            max-width: 37px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
          }
        }
      }
    }
  }
}

#header.active {
  position: fixed;
  background-color: white;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}
/*Fin header*/

/* Banner */
#banner {
  height: 100vh;
  width: 100%;
  overflow: clip;
  position: relative;
  /* z-index: -1; */
    .fondo-gradiente {
   height: 150%;
    width: 100%;
    /* background-image: url("../../images/Vector.png"); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 124% 70%;
    position: absolute;
    opacity: 0.05;
  }


  .contenedor {
    display: flex;
    height: 100%;
    align-items: center;

    .banner-info {
      flex-basis: 35%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.5rem;

      h1 {
        font-size: 45px;
        color: var(--primary-color);
        font-family: "Inter", sans-serif;
      }

      p {
        color: var(--parrafo-color);
        font-family: "Inter", sans-serif;
        font-size: 15px;
      }

      .container-btn {
        display: flex;
        justify-content: space-between;
        height: 65px;
        align-items: center;
        z-index:2;

        .btn-contactanos {
          display: inline-block;
          align-items: center;
          text-decoration: none;
          width: max-content;
          background-color: #87189d;
          color: var(--secondary-color);
          padding: 0.8rem 1rem;
          border-radius: 1.5rem;
          height: max-content;

          font-size: var(--font-parrafo);
          font-family: "Inter", sans-serif;
          transition: all 0.4s ease-in;
          cursor: pointer;

          img {
            color: var(--secondary-color);
          }
        }

        .btn-contactanos:hover {
          background-color: #4d025b;
          font-size: 20px;
          padding-block: 1rem;
        }
      }
    }

    #splide-banner {
      flex-basis: 65%;
      height: 90%;
                  display: flex;
            justify-content: center;
            align-items: center;

    
    }
  }
  .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;

    .image-container {
      position: relative;
      width: 70%;
      height: 100%;

      .main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .overlay-image {
        position: absolute;
        top: -60px;
        left: 0;
        width: 30%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      }
    }
  }
}

/*Section nosotros*/


.nosotros {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(180deg, rgba(135, 24, 157, 1) 0%, rgba(135, 24, 157, 0) 100%);
   */
    background: linear-gradient(180deg, rgb(135, 24, 157,0.05) 0%, rgba(135, 24, 157, 0.00) 70%);
}
.container {
  flex-basis: 60%;
  height: 50%;
  position: relative;
  /* width: 800px;
  height: 800px; */
  display: flex;
  /* background-image: url("img/Fondo3.png"); */
  background-position: 40% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box {
  position: absolute;
  max-width: 210px;
  max-height: 190px;
  /* background: #ff5733; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;

  transition: all 0.4s ease-in-out;
}

.box.active {
  transform: scale(1.5) !important; /* Escala más grande para la caja activa */
  /* Para asegurarse que la caja activa esté encima */
}

.box1 {
  background-image: url("../../images/cajera1.png");
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 30%;
  transform: translate(-50%, -50%);
}

.box2 {
  background-image: url("../../images/cajero2.png");
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*top: 30%;*/
  left: 60%;
  transform: translate(-50%, -50%);
}

.box3 {
  background-image: url("../../images/cajero3.png");
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 70%;
  left: 30%;
  transform: translate(-50%, -50%);
}

#splide-nosotros {
  flex-basis: 50%;
  height: 100%;

  .splide__track {
    height: 100%;

    .splide__list {
      .splide__slide {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80% ;
        height: 80% ;

        .info-container {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 55%;
          width: 60%;
          background-color: white;
          border-radius: 1.5rem;
          padding-inline: 1rem;
          box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
          position: relative;
          
            strong{
                color:#4d025b;
            }

          .container-title {
            background-color: #87189d;
            border-radius: 2rem;
            top: -13%;
            left: 2%;
            position: absolute;
            padding: .8rem 2rem;
            width: max-content;

            h2 {
              color: white;
              font-family: "Inter", sans-serif;
              font-size: 30px;
            }
          }

          p {
            color: #4d4d4d;
            font-family: "Inter", sans-serif;
            font-size: 15px;
            font-weight: 400;
            line-height: 25px;
            span {
              color: #4d025b;
              font-family: Inter;
              font-size: 15px;
              font-style: normal;
              font-weight: 700;
              line-height: 25px;
            }
          }
        }
      }
    }
  }
}

/*Fin seccion nosotros*/

/*Section de valores*/

#valores {
  width: 100%;
  height: 70vh;
  /*background: linear-gradient(180deg, #fff 50%, #decfe0 50%);*/
    background: linear-gradient(180deg, #fff 50%, #F3EBF4 50%);

  .contenedor {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    height: 100%;
    /* .titulo-valores{
            text-align: center;
            font-size:40px;
            color: var(--primary-color);
            font-family: "Inter", sans-serif;
        } */

    #splide-valores {
      height: 100%;

      .splide__track {
        height: 100%;

        .splide__list {
          height: 100%;
          .splide__slide {
            height: 100%;
            display: flex;
            justify-content: center;
            /* width: calc(29% - 3.75rem) !important;  */

            .box-valor {
              background-color: white;
              border-radius: 2rem;
              width: 100%;
              max-width: 277px;
              max-height: 323px;
              height: 100%;
              display: flex;
              flex-direction: column;
              gap: 1rem;
              box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
              /* border: 5px solid green; */
              padding: 2rem;

              .img-valor {
               
                border-radius: 0.5rem;
                height: 60px;
                width: 60px;
                padding: .2rem;
                background-color: #f3f3f3;
                img {
                  width: 100%;
                  height: 100%;
                  
                  object-fit: contain;
                  object-position: center;
                }
              }

              .valor-info {
                flex-basis: 70%;
                height: 100%;
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                h3 {
                  font-size: 20px;
                  font-weight: 700;
                  color: #4d025b;
                  font-family: "Inter", sans-serif;
                }

                p {
                  color: #4d4d4d;
                  font-size: 15px;
                  font-family: "Inter", sans-serif;
                  line-height: 25px;
                }
              }
            }
          }
        }
      }
    }
  }
}
/*Fin valores*/

/*Comienzo servicios*/

#servicios {
  width: 100%;
  background: #F3EBF4;
  padding-block: 2rem;

  .wrapper {
    background-color: transparent;
    margin-block: 2rem;

    &.white {
      background-color: white;
      padding-block: 3rem;
    }
  }

  .titulo-servicios {
    text-align: center;
  }
  .servicio {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-block: 2rem;

    .servicio-textos {
      flex-basis: 30%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;

      .subtitulo {
        color: var(--Color-2, #4d025b);
        font-family: Inter;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px;
        flex-basis: 40%;
        padding-inline: 1rem;
        border-left: 7px solid #4d025b;
      }
      .parrafo {
        flex-basis: 40%;
        color: #4d4d4d;

        font-family: Inter;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
      }
    }

    .imagenes {
      flex-basis: 50%;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;

      .box-img-1 {
        flex-basis: 48%;
        position: relative;
        border-radius: 1.5rem;

        .fondo-1 {
          position: absolute;
          width: 100%;
          height: 100%;
          opacity: 0.85;
          background: #2f0837;
          border-radius: 1.5rem;
        }

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 1.5rem;
        }
      }

      .box-img-2 {
        position: relative;
        flex-basis: 48%;
        border-radius: 1.5rem;
        .fondo-2 {
          position: absolute;
          width: 100%;
          height: 100%;
          opacity: 0.6;
          background: #2f0837;
          border-radius: 1.5rem;
        }
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 1.5rem;
        }
      }
    }
  }

  .contenido {
    color: white;
    position: absolute;
    display: flex;
    gap: 1rem;
    margin-inline: 2rem;
    width: 80%;
    height: 90%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    h4 {
      color: #fff;
      font-family: Inter;
      font-size: 25px;
      font-style: normal;
      font-weight: 700;
      line-height: 15px;
    }

    p {
      color: #fff;

      font-family: Inter;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;
    }
  }

  .button {
    display: flex;
    justify-content: center;
    height: 65px;
    align-items: center;

    a {
      text-decoration: none;
      background-color: #87189d;
      font-size: 18px;
      font-family: "Inter", sans-serif;
      color: white;
      padding: 15px 20px;
      align-items: center;
      border-radius: 37px;
      transition: all 0.4s ease;
      &:hover {
        background-color: #4d025b;
        font-size: 20px;
        padding-block: 1rem;
      }
    }
  }
}

/*Fin servicios*/

/*Inicio formulario*/

#seccion-formulario {
  height:105vh;
  width: 100%;
  background-color: rgb(47, 8, 55);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  .fondo-gradiente {
    height: 100%;
    width: 100%; /* Ajusta el ancho a la mitad */
    background-repeat: no-repeat;
    background-size: contain; /* Mantén la imagen cubriendo el área asignada */
    background-position: right; /* Coloca la imagen al final del contenedor */
    opacity: 0.1;
  }

  .seccion-contacto {
    position: absolute;
 
    width: 70%;
    display: flex;
    gap: 1.5rem;

    .contacto-info {
      flex-basis: 50%;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 2rem;

      .cortar {
        display: flex;

        flex-direction: column;
        justify-content: center;
        align-items: start;
        width: 80%;
        height: 80%;
        gap: .5rem;
      }

      .titulo {
        color: #fff;

        font-family: Inter;
        font-size: 50px;
        font-style: normal;
        font-weight: 700;
        line-height: 50px;
      }
      .subtitulo {
        color: #b049c5;

        font-family: Inter;
        font-size: 27px;
        font-style: normal;
        font-weight: 600;
        line-height: 35px;
      }
      p {
        color: #fff;

        font-family: Inter;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 23px;
      }
    }

    .formulario {
      flex-basis: 50%;
      background-color: white;
      border-radius: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-block: 1rem;
      flex-direction: column;

      .titulo-formulario {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        color: #4d025b;
        flex-basis: 15%;
        max-width: 80%;
      }

      #wpcf7-f11-o1 {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

    .wpcf7-spinner{
        display:none;
    }
          
      .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px;
    font-weight: normal;
    display: unset;
   
}



.wpcf7-response-output{
    display:none;
}

    
      form {
        width: 90%;
        
        flex-basis: 85%;

        height: 95%;
        display: flex;
        justify-content: space-between;
        padding-block: 1rem;
        gap: -1rem;
        align-items: center;
        flex-direction: column;
         p{
             width:100%;
             display: flex;
            flex-direction: column;
            /*gap: 0.1rem;*/
         }
    
            br{
                display:none;
            }
        input,
        textarea {
          width: 100%;
          border-radius: 1.8rem;
          padding: 1rem 2rem;
          background: #f3ebf4;
          border: none;
          margin-bottom: 1rem;
            font-family: "Inter", sans-serif;
        }
            
            
      
        input::placeholder,
        textarea::placeholder {
          color: rgba(77, 2, 91, 0.4) !important;
          font-family: "Inter", sans-serif;
          font-size: 16px;
        }

        input[type="submit"] {
       
          font-family: "Inter", sans-serif;
          font-size: 20px;
          background-color: transparent;
          color: white;
        }

        .boton {
          display: flex;
          justify-content: space-between;
         align-items: center;
        background-color: var(--primary-color);
        border-radius:1.5rem;
        padding: .1rem .9rem;
          
          input[type="submit"]{
              margin-bottom: unset;
          }

          svg {
         
            fill: white;
          }

          img {
            margin-left: 0.5rem;
          }
          a {
            display: inline-block;
            align-items: center;
            text-decoration: none;
            width: max-content;
            
            color: var(--secondary-color);
            /*padding: 0.7rem 2rem;
            border-radius: 1.5rem;
            border: 3px solid #87189d;*/
            font-size: var(--font-parrafo);
            font-family: "Inter", sans-serif;
            transition: all 0.6s ease-out;
            cursor: pointer;

            &:hover {
              background-color: #4d025b;
              font-size: 20px;
              padding-block: 1rem;
            }
          }
        }
      }
    }
  }
}

footer {
  width: 100%;
  height: 20vh;
  background: linear-gradient(180deg, #87189d 0%, #2f0837 139.74%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  
  
  
  .contenedor{
      display: flex;
    justify-content: space-between;
  }
  
  .footer-icons{
      display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
  }
  .container-logo {
      
      height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    img {
      object-fit: contain;
      width: 100%;
      height: 100%;
      
      max-height: 5rem;
      max-width: 13rem;
        
      
    }
  }
}

/*Fin formulario*/
/*Boton floante WSTP*/

.btn-float {
  position: fixed;
  bottom: 3%;
  right: 2%;
}
.btn-float .button {
  height: 62px;
  width: 62px;
  float: left;
  /* margin: 0 5px; */
  overflow: hidden;
  background-color: rgba(77, 2, 91, 0.2);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.btn-float .button:hover {
  width: 180px;
  background-color: rgba(77, 2, 91, 1);
  margin-inline: 1rem;

  .icon {
    left: 0;
    top: 0;
  }
}
.btn-float .button .icon {
  position: relative;
  /* top: 14%; */
  left: 28%;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}
.btn-float .button .icon .whatsapp-svg {
  transition: fill 0.3s ease-out;
}
.btn-float .button:hover .icon .whatsapp-svg {
  fill: #fff; /* Color al hacer hover */
}

.btn-float .button:hover .icon .arrow {
  fill: #fff; /* Color al hacer hover */
  margin-right: 2rem;
}

.btn-float .button .icon svg {
  font-size: 25px;
  line-height: 60px;
  fill: #4d025b;
  transition: all 0.3s ease-out;
}
.btn-float .button:hover .icon svg {
  color: #fff;
  fill: "white";
}
.btn-float .button span {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 15.889px;
  margin-left: 50px;
    text-wrap: nowrap;
  transition: all 0.3s ease-out;
}

.btn-float .button:hover {
  span {
    margin-left: unset;
  }
}
.btn-float .button:nth-child(1) span {
  color: white;
}

/*Fin  floante WSTP*/

/*Gracias estilos*/
#gracias {
  height: 95vh;
  width: 100%;
  display: flex;

  .content {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;

    .header-logo {
      flex-basis: 15%;
      display: flex;
      align-items: center;
      
      img {
        object-fit: fit;
        height: 100%;
        width: 100%;
        max-width: 11rem;
        max-height: 4.2rem;
        margin-left: 3rem;
      }
    }

    .info {
      flex-basis: 85%;
      display: flex;
      justify-content: center;
      margin-inline: unset;

      .info-texto {
        width: 60%;
        height: 60%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        gap: 1rem;
        .titulo-info {
          color: var(--primary-color);
          font-family: "Inter", sans-serif;
          font-size: 45px;
          font-style: normal;
          font-weight: 800;
          line-height: 52.244px;
        }
        p {
          color: #4d4d4d;
          font-family: "Inter", sans-serif;

          font-size: 17px;
          font-style: normal;
          font-weight: 400;
          line-height: 24.032px;
        }
      }
    }
  }
  .gracias-bg {
    flex-basis: 50%;
    /* background-image: url("../../images/fondo-gracias.png"); */
    background-position: center;
    background-size: cover;
    background-repeat: no repeat;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
  }
}
#gracias-mobile {
  display: none;
}

/*Fin estilos gracias*/
@media screen and (max-width: 992px)
{
    .box2{
        top: 15%;
    }
    .box.active {
    transform: scale(1.5) !important;
    }
    
    
    #splide-nosotros{
        .info-container{
        width:65% !important;    
        }
    }
    
}


/*Inicio queries*/

@media screen and (max-width: 768px) {
  /*Inicio queries Header*/

  #header {
      z-index:3;
      top:0;
      left:0;
      img{
          max-height: 3rem;
      }
  }

  .navbar-list li:nth-child(1),
  .navbar-list li:nth-child(2),
  .navbar-list li:nth-child(3) {
    display: none;
  }
  .navbar-list li:nth-child(4) {
    a {
      svg {
        max-width: 37px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block !important;
      }
    }
  }

  /*Inicio queries nosotros*/
  #nosotros {
    padding-top: 5rem; 
    height: 120vh;
    display: flex;
    flex-direction: column;
    gap: 4rem;

    .container {
      flex-basis: unset;
      width: 100%;
      padding-block: 2rem;

      .box {
        max-height: 113px;
        width: 125px;
      }

      .box1 {
        /* top: 0;
      left: 30%; */
        top: 0;
        left: 80%;
        transform: translate(-50%, -50%);
      }

      .box2 {
        /* top: 30%;
      left: 10%; */
        top: 60%;
        left: 36%;
        transform: translate(-50%, -50%);
      }

      .box3 {
        /* top: 50%;
      left: 30%; */
        top: 0;
        left: 20%;
        transform: translate(-50%, -50%);
      }
    }

    #splide-nosotros {
      flex-basis: unset;
      
      /* overflow-x: hidden; */
      width: 100%;



      .splide__pagination__page {
      
        background-color: white;
        border:2px solid var(--primary-color);
        bottom: 5rem;
        
      }
      .splide__pagination__page.is-active {
        background-color: var(--primary-color);
      }


    .splide__track{


      .splide__list{

        .splide__slide {
          height: 400px;
          width: 100%;

          .info-container{
            height: 100%;
            width: 90%;
            box-shadow: unset;
            background-color: transparent;

            .container-title{
              top: 0;
              padding: .5rem 2rem;
              left: 28%;
              font-size: 20px;
         
              left: 50%;
              font-size: 20px;
              transform: translateX(-50%)
            }
           
          }
          
        }

      }
   

    }


      .info-1,
      .info-2,
      .info-3 {
        width: 80% !important;
        display: flex;
        justify-content: center;
        align-items: center;

        .texto{

          display: flex;
          justify-content: flex-start;
          p {
            font-size: 13px;
            line-height: 22px;
          }
        }
     
      }
    }
  }

  /*Fin queries nosotros*/

  /*Inicio queries banner*/

  #banner {
    height: 100vh;
    padding-block: 2rem;
    .contenedor {
      display: flex;
      height: 100%;
      align-items: center;
      flex-direction: column-reverse;
      
      .fondo-gradiente{
                  height: 100%;
        width: 100%;
     
        background-repeat: no-repeat;
        background-size: cover;
        background-position: -10% 25%;
        position: absolute;
        opacity: 0.1
      }

      .banner-info {
        h1 {
          font-family: "Inter", sans-serif;
          font-size: 39px;
          font-style: normal;
          font-weight: 800;
          line-height: 47px;
        }

        p {
          color: #4d4d4d;

          font-family: Inter;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 25px;
        }

        .container-btn {
          .btn-contactanos {
            img {
            }
          }

          .btn-contactanos:hover {
          }
        }
      }

      #splide-banner {
        color: #4d4d4d;

        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 25px;
        .fondo-gradiente {
          background-position: -30% 50%;
        }
      }
      
      .splide__track{
          margin-top:3rem;
      }
    }
    .splide__slide {
      .image-container {
        width: 100%;

        .main-image {
        }

        .overlay-image {
        }
      }
    }
  }

  /*Fin queries Banner*/

  /*Inicio queries valores*/

  #valores {
    width: 100%;
    height: 70vh;
    /*background: linear-gradient(180deg, #fff 50%, #decfe0 50%);*/
     overflow: hidden;

    .contenedor {
      width: 100%;
      /*margin-inline: 1rem;/*
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      height: 100%;
      /* .titulo-valores{
            text-align: center;
            font-size:40px;
            color: var(--primary-color);
            font-family: "Inter", sans-serif;
        } */

      #splide-valores {
        /*padding-inline: 1rem;*/
        .splide__track {
          .splide__list {
            .splide__slide {
              width: unset !important;

              /* width: calc(29% - 3.75rem) !important;  */

              .box-valor {
                .img-valor {
                }
              }

              .valor-info {
                h3 {
                }

                p {
                }
              }
            }
          }
        }
      }
    }
  }

  .titulo-valores {
    font-size: 38px;
    max-width: 60%;
        text-align: center;
        margin: auto;
  }

  /*Fin queries valores*/

  /*Inicio queries servicios*/

  #servicios {
    .wrapper {
      &.white {
      }
    }

    .titulo-servicios {
    }
    .servicio {
      position: relative;

      .servicio-textos {
        display: flex;
        flex-direction: column;
        position: relative;

        .subtitulo {
          font-size: 30px;
          text-align: center;
          border-left: unset;
          /* border-bottom: 4px solid #4d025b; */
          line-height: 34px;
          margin-block: 0 3rem;
          padding: 0 0.1rem;

          &::after {
            content: "";
            position: absolute;

            left: 50%; /* Ajusta según sea necesario */
            transform: translateX(-50%);
            height: 5px;
            width: 50%;
            border-radius: 1rem;
            margin-block: 0.6rem 0;

            background-color: #4d025b;
          }
        }

        .parrafo {
          text-align: center;
        }
      }

      .imagenes {
          
        .box-img-1 {
          flex-basis: unset;

          .fondo-1 {
          }

          img {
          }
        }

        .box-img-2 {
          flex-basis: unset;

          .fondo-2 {
          }
          img {
          }
        }
      }
    }

    .contenido {
        gap:.2rem;
      .contenido-titulo {
        font-size: 20px;
        line-height: 20px;
            
        
      }

      p {
        font-size: 13px;
      }
    }

    .button {
      a {
        &:hover {
        }
      }
    }
  }

  /*Fin queries servicios*/

  /*Inicio responsive formulario*/

  #seccion-formulario {
    height: unset;
    position: relative;
    padding-block: 3rem;

    .fondo-gradiente {
      position: absolute;
    }

    .seccion-contacto {
      flex-direction: column;
      width: 85%;
      position: relative;

      .contacto-info {
        flex-basis: unset;

        .cortar {
          width: 100%;
          align-items: center;
        }

        h2.titulo {
          font-size: 40px !important;
          text-align: center;
        }
        h3 {
          font-size: 25px;
          text-align: center;
        }
        p {
          font-size: 16px;
          text-align: center;
        }
      }

      .formulario {
        flex-basis: unset;
        border-radius: 1.25rem;
        padding-block: 1.5rem;

        .titulo-formulario {
            font-size:20px;
        }

        form {
          gap: 1rem;
          

          input,
          textarea {
            border-radius: .6rem;
          }

          input::placeholder,
          textarea::placeholder {
          }

          .boton {
            img {
            }
            a {
              &:hover {
              }
            }
          }
        }
      }
    }
  }

  /*Fin responsive formulario*/



  
  /*Responsive footer*/
  
  footer{
      
      .contenedor{
              display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    
    .container-logo{
        img{
            max-height: 3rem; 
        }
    }
      }
   
  }



    /*Fin responsive footer*/
  /*Inicio queries mobile*/

  #gracias {
    display: none;
  }
  #gracias-mobile {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    background-image: url("../../images/fondo-gracias.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    .gradiente {
      background: linear-gradient(180deg, #000 0%, #34053e 51%, #000 100%);
      opacity: 0.8;
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .header-logo {
      height: 15vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .info-texto {
      position: relative;
      height: 70%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;

      .titulo-info {
        color: white;
        text-align: center;
        font-family: Inter;
        font-size: 47.019px;
        font-style: normal;
        font-weight: 800;
        line-height: 52.244px;
      }
      p {
        color: white;
        text-align: center;
        font-family: Inter;
        font-size: 17.763px;
        font-style: normal;
        font-weight: 400;
        line-height: 24.032px;
      }
    }
  }

  /*Boton flotante queries*/


.btn-float{
     z-index: 2;
}
  .btn-float .button {
     
    width: 180px;
    background-color: rgba(77, 2, 91, 1);
    margin-inline: 1rem;
    display:flex;
    justify-content: space-evenly;
    
    


    
    .icon {
      left: 0;
      top: 0;
    }
  }

  .btn-float .button .icon .whatsapp-svg {
    fill: #fff; /* Color al hacer hover */
  }

  .btn-float .button .icon svg {
    color: #fff;
    fill: "white";
  }

  .btn-float .button {
    span {
      margin-left: -8%;
      
    }
  }

  .btn-float .button:nth-child(1) span {
    color: white;
  }

  /**/
}

/*Fin queries*/
