.acordeon_bg_wrapper {
  width: 100% !important;
  background-color: rgb(235, 235, 235) !important;
}

.acordeon_root {
  width: 100%;
  background-color: transparent;
  padding: 125px 0 65px 0;
}

.acordeon_container {
  max-width: 1200px;
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.acordeon_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.acordeon_item {
  display: block !important;
}

.acordeon_titulo {
  font-family: 'euclid_circular_asemibold';
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: rgb(50, 50, 50);
  margin: 0;
}

.acordeon_texto {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: rgb(50, 50, 50);
  margin: 15px 0 20px 0;
  max-width: 325px;
}

.acordeon_boton {
  font-family: 'euclid_circular_asemibold', sans-serif;
  font-size: 13px;
  padding: 0 24px;
  height: 48px;
  border: 1px solid rgb(50, 50, 50);
  background: rgb(235, 235, 235);
  color: rgb(50, 50, 50);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  margin-left: -10px;
  margin-top: 25px;
}

.acordeon_boton:hover {
  background: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
}

.acordeon_icon_arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(50, 50, 50, 1);
  border-bottom: 2px solid rgba(50, 50, 50, 1);
  transform: rotate(45deg);
  transition: all 0.3s ease;
  display: none;
  margin-top: -4px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .acordeon_bg_wrapper {
    background-color: rgb(255, 255, 255) !important;
  }

  .acordeon_root {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .acordeon_container {
    width: 100%;
    padding: 0;
  }

  .acordeon_grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .acordeon_item {
    border-bottom: 1px solid rgb(235, 235, 235);
    margin: 0 20px !important;
    display: block !important;
  }

  .acordeon_header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 10px 0 !important;
    cursor: pointer;
  }

  .acordeon_icon_arrow {
    display: block !important;
  }

  .acordeon_item.is-active .acordeon_icon_arrow {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .acordeon_titulo {
    font-size: 18px !important;
    line-height: 20px !important;
    letter-spacing: -0.25px !important;
    color: rgba(50, 50, 50, 1) !important;
  }

  .acordeon_texto {
    font-size: 15px !important;
    line-height: 1.6 !important;
    max-width: 350px !important;
    margin: 0px 0 20px 0 !important;
    color: rgba(50, 50, 50, 1) !important;
  }

  .acordeon_boton {
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 30px;
    border-color: #323232;
    color: #323232;
    background: transparent;
  }

  .acordeon_boton:hover {
    background: #323232;
    color: #ffffff;
  }

  .acordeon_content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
  }

  .acordeon_content_inner {
    padding: 0 0 10px 0;
  }
}