/*
* **********************************
* ################################## ESTILOS DE PLANOS
* **********************************
*/

/*
========================
======================== PLANOS
========================
*/

.plans {
  background-color: #f0f4f7;
  padding: 240px 0 90px 0;

  -webkit-border-bottom-right-radius: 50px;
  -webkit-border-bottom-left-radius: 50px;
  -moz-border-radius-bottomright: 50px;
  -moz-border-radius-bottomleft: 50px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

@media(max-width: 1024px) {
  .plans {
    padding-top: 400px;
  }
}

@media(max-width: 680px) {
  .plans {
    padding-top: 300px;
    height: auto;
    padding-bottom: 50px;
  }
}

.plans-header {
  width: 80%;
  text-align: center;
  margin: 0 10% 50px 10%;
}

.plans-header h1 {
  font-size: 4.2rem;
  line-height: 4.4rem;
  font-weight: 300;
}

.plans-header h1 strong {
  font-weight: 600;
}

.plans-header p {
  font-size: 2.2rem;
  line-height: 2.4rem;
  font-weight: 300;
  margin-top: 20px
}

.plans-item {
  background-color: #FFF;
  border-left: 10px solid #f79321;
  margin-bottom: 30px;

  box-shadow: 0px 0px 25px 0px rgba(53, 67, 77, 0.1);
  -webkit-box-shadow: 0px 0px 25px 0px rgba(53, 67, 77, 0.1);
  -moz-box-shadow: 0px 0px 25px 0px rgba(53, 67, 77, 0.1);

  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;

  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
}

.plans-item:last-child {
  margin-bottom: 0;
}

.plans-item-header {
  color: #323b49;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media(max-width: 1024px) {
  .plans-item-header {
    flex-direction: column;
  }
}

.plans-item-header img {
  width: 100%;
  max-width: 10%;
}

@media(max-width: 1024px) {
  .plans-item-header img {
    width: 100%;
    max-width: 30%;
  }
}

.plans-item-header>div {
  padding-left: 40px;
}

@media(max-width: 1024px) {
  .plans-item-header>div {
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }
}

.plans-item-header>div h1 {
  font-size: 2.8rem;
  font-weight: 600;
}

.plans-item-header>div p {
  font-size: 1.8rem;
  line-height: 2.0rem;
  font-weight: 300;
  max-width: 80%;
}

@media(max-width: 1024px) {
  .plans-item-header>div p {
    max-width: 100%;
    margin-top: 10px;
  }
}

.plans-item-content {
  display: none;
  padding: 0 30px 30px 30px;
}

.plans-item-content.active {
  display: block;
}

.plans-item-list {
  border-top: 2px solid #e9eef1;
  padding-top: 30px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}

@media(max-width: 1024px) {
  .plans-item-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 680px) {
  .plans-item-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.plans-item-list-item {
  background-color: #FFF;
  border: 2px solid #e9eef1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 190px;
  padding: 20px;

  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;

  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.plans-item-list-item:hover {
  border-color: #f79321;
}