.container {
  max-width: 1550px;
}

.empresa_hero {
  background-color: #033765;
  background-image: url("/images/empresa/banners/hero_banner_web.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;

  .container {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .texts {
    /* border: 1px solid #ff4403; */
    flex: 1;
    display: flex;
    align-items: center;
  }

  .form {
    margin-bottom: 32px;
  }

  .imagen {
    display: block;

    img {
      max-width: 100%;
    }
  }

  h1 {
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    animation: fadeInDown 1s both;

    span {
      color: #ff4403;
    }
  }

  .form-empresa {
    border-radius: 0 0 16px 16px;
  }
}

.form-empresa {
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.form-empresa .title {
  color: #293880;
  font-size: 24px;
  width: 100%;
}

.form-empresa .input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  transition: border-color 0.3s;

  &:focus {
    border-bottom: 2px solid #293880;
  }

  &::placeholder {
    color: #aaa;
  }
}

.form-empresa .checkbox {
  font-size: 12px;
  color: #7a7a7a;
}

.form-empresa .submit {
  all: unset;
  background-color: #ff4403;
  color: white;
  padding: 4px 20px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .empresa_hero {
    .texts {
      flex-direction: column;
      margin-bottom: 32px;
    }

    .imagen {
      width: 300px;
      /* img {
        max-width: 100%;
      } */
    }

    h1 {
      font-size: 28px;
    }
  }
}

@media (max-width: 768px) {
  .empresa_hero {
    background-image: url("/images/empresa/banners/hero_banner_celular.png");
    padding-top: 32px;

    .container {
      flex-direction: column;
      gap: 32px;
    }

    .texts {
      flex-direction: column;
      margin-bottom: 0;
    }

    h1 {
      text-align: center;
    }

    .form-empresa {
      border-radius: 16px;
    }
  }
}

/* Servicios */

.empresa_servicios {
  padding: 80px 0;

  button {
    all: unset;
    margin: auto;
  }

  .item {
    /* border: 1px solid #033765; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    padding: 28px 0;

    img {
      width: 120px;
      height: 120px;
    }

    h6 {
      color: #4d4d4d;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      margin-top: 8px;
    }
  }
  .slider {
    position: relative;
    max-width: 1000px;
    margin: auto;

    .swiper {
      max-width: 900px;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    content: "";
  }
  .swiper-button-prev,
  .swiper-button-next {
    color: #e6e6e6;
    width: 40px;
    height: 40px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
  }
}

.section_title {
  color: #033765;
  text-align: center;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 48px;
}

/* Banner */

.empresa_banner {
  background-color: #12142a;
  padding: 12px 0;

  .container {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  h2 {
    font-size: 24px;
    color: #fff;
    font-weight: 900;
  }

  button {
    border: none;
    position: relative;
    font-size: 24px;
    background-color: transparent;
    color: #fff;
    font-weight: 900;

    .content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
}

@media (max-width: 768px) {
  .empresa_banner {
    .container {
      flex-direction: column;
    }

    h2 {
      text-align: center;
    }
  }
}

/* Beneficios */

.empresa_beneficios {
  padding: 80px 0;

  .container {
    max-width: 900px;
  }

  .item {
    border: 1px solid #033765;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;

    img {
      width: 120px;
      height: 120px;
    }

    h6 {
      color: #4d4d4d;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      margin-top: 8px;
    }
  }
}

@media (max-width: 768px) {
  .empresa_beneficios {
    .item {
      img {
        width: 100px;
        height: 100px;
      }

      h6 {
        font-size: 16px;
      }
    }
  }
}

/* Seguridad */

.empresa_seguridad {
  background-image: url("/images/empresa/banners/seguridad_banner_web.png");
  background-color: #033765;
  color: #fff;
  padding: 80px 0;

  .container {
    display: flex;
    gap: 80px;
    max-width: 1060px;
    align-items: center;
  }

  .textos {
    flex: 1;

    h3 {
      color: #fff;
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    p {
      font-weight: 600;
      text-align: justify;
    }
  }
  .items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;

    .item {
      position: relative;
      border: 1px solid #fff;
      border-radius: 8px;
      padding: 8px 8px 8px 32px;

      p {
        margin-bottom: 0;
      }
    }

    .item::after {
      content: "";
      position: absolute;
      top: 50%;
      left: -10px;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      background-color: #fff;
      border-radius: 50%;
    }
  }
}

@media (max-width: 768px) {
  .empresa_seguridad {
    background-image: url("/images/empresa/banners/seguridad_banner_celular.png");
    padding: 100px 0;

    .container {
      flex-direction: column;
      width: 85%;
      gap: 32px;
    }

    .items {
      .item {
        font-size: 12px;
      }
    }
  }
}

/* Banner 2 */

.empresa_banner2 {
  padding: 24px 0;
  background-color: #ff4403;

  h2 {
    font-size: 24px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 0;
    text-align: center;
  }
}

/* Clientes y Partners */

.empresa_clientes {
  padding: 80px 0;

  .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  h2 {
    color: #ff4403;
    font-weight: 900;
    font-size: 20px;
    text-align: center;
    margin-bottom: 32px;
  }

  .items {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .item {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;

    img {
      /* height: 100%; */
      max-width: 100%;
      max-height: 100%;
      /* width: 100%; */
      margin: auto;
      display: block;
    }
  }
}
