@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800;900&display=swap");
html,
body {
  font-family: "Poppins" !important;
  font-size: 16px !important;
  width: 100% !important;
  position: relative;
}

@media (max-width: 768px) {
  html,
  body {
    font-size: 14px !important;
  }
}

header,
nav {
  width: 100%;
  z-index: 100;
  text-align: center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.03);
}

header .navbar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .navbar .entry-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 38%;
}

@media (max-width: 991px) {
  header .navbar .entry-menu {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

header .navbar .entry-menu ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  header .navbar .entry-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}

header .navbar .nav-link {
  color: #18191f;
  padding: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: Poppins;
}

header .navbar .nav-link:hover {
  border-bottom: 1px solid #5dc3ad;
  color: #5dc3ad;
}

header .navbar .nav-link.active {
  border-bottom: 1px solid #5dc3ad;
  color: #5dc3ad;
}

@media (max-width: 991px) {
  header .navbar .nav-link {
    padding: 20px !important;
  }
}

header .navbar .navbar-toggler-icon {
  color: #18191f !important;
}

header .navbar .navbar-toggler:focus,
header .navbar .navbar-toggler:active,
header .navbar .navbar-toggler-icon:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
}

header .navbar .logo {
  width: 160px;
}

@media (max-width: 576px) {
  header .navbar .logo {
    width: 100px;
  }
}

@media (max-width: 991px) {
  header .navbar .collapse {
    height: 100vh;
  }
}

header .btn-comecar {
  background-color: #5dc3ad;
  padding: 15px 40px !important;
  text-decoration: none;
  border-radius: 5px;
  margin-left: 15px;
  color: #18191f;
  font-family: Poppins;
  font-weight: bold;
  font-size: 1.2rem;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}

header .btn-comecar:hover {
  color: #5dc3ad;
  background-color: #18191f;
}

@media (max-width: 991px) {
  header .collapse {
    height: 100vh;
  }
}

.home {
  padding-top: 120px;
  padding-bottom: 80px;
}

.home .catalog {
  text-align: center;
  color: #18191f;
  font-family: Poppins;
  font-weight: bold;
  font-size: calc(1.7rem + 1.5vw);
}

.home .easy {
  text-align: center;
  color: #5dc3ad;
  font-family: Poppins;
  font-weight: bold;
  font-size: calc(1.7rem + 1.5vw);
}

.home .start-now {
  text-align: center;
  font-weight: bold;
  font-family: Poppins;
  background: #5dc3ad;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  padding: 15px 50px;
  border-radius: 10px;
  margin: 35px auto 20px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: border-radius 2s, background-color 2s;
  transition: border-radius 2s, background-color 2s;
}

.home .start-now:hover {
  border-radius: 100px;
  background-color: #18191f;
  color: #5dc3ad;
}

.home .already-registred {
  font-family: Poppins;
  text-align: center;
  color: #18191f;
  font-weight: 500;
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home .already-registred a {
  text-decoration: none;
}

.home .already-registred a span {
  color: #5dc3ad !important;
}

.home .already-registred a span:hover {
  color: #18191f !important;
}

.home .img-banner {
  position: relative;
  z-index: 999;
}

@media (max-width: 576px) {
  .home .img-banner {
    width: 150px;
  }
}

.home .img-fb {
  width: 10px;
  position: absolute;
  left: 1px;
  top: 85px;
  -webkit-transition: left 2s, width 2s;
  transition: left 2s, width 2s;
  z-index: 0;
  display: block;
}

.home .img-fb.active {
  left: -130px;
  width: 75px;
}

@media (max-width: 576px) {
  .home .img-fb.active {
    width: 30px;
    left: -65px;
  }
}

.home .img-cart {
  width: 10px;
  position: absolute;
  bottom: 180px;
  left: 0px;
  -webkit-transition: left 2s, width 2s;
  transition: left 2s, width 2s;
  z-index: 0;
}

@media (min-width: 576px) {
  .home .img-cart {
    bottom: 150px;
  }
}

.home .img-cart.active {
  width: 55px;
  left: -100px;
}

@media (max-width: 576px) {
  .home .img-cart.active {
    width: 30px;
    left: -50px;
    bottom: 176px;
  }
}

.home .img-like-right {
  width: 10px;
  position: absolute;
  left: 1px;
  top: 220px;
  -webkit-transition: left 2s, width 2s;
  transition: left 2s, width 2s;
  z-index: 0;
}

.home .img-like-right.active {
  width: 45px;
  left: -85px;
}

@media (max-width: 576px) {
  .home .img-like-right.active {
    width: 30px;
    left: -64px;
  }
}

.home .img-heart-left {
  width: 10px;
  position: absolute;
  bottom: 42px;
  left: 1px;
  -webkit-transition: left 2s, width 2s;
  transition: left 2s, width 2s;
  z-index: 0;
}

.home .img-heart-left.active {
  width: 35px;
  left: -91px;
}

@media (max-width: 576px) {
  .home .img-heart-left.active {
    width: 26px;
    left: -50px;
  }
}

.home .img-heart-right {
  width: 10px;
  position: absolute;
  top: 65px;
  right: 3px;
  z-index: 0;
  -webkit-transition: right 2s, width 2s;
  transition: right 2s, width 2s;
}

.home .img-heart-right.active {
  width: 76px;
  right: -126px;
}

@media (max-width: 576px) {
  .home .img-heart-right.active {
    width: 30px;
    right: -75px;
  }
}

.home .img-wpp {
  width: 10px;
  position: absolute;
  right: 1px;
  bottom: 180px;
  -webkit-transition: right 2s, width 2s;
  transition: right 2s, width 2s;
  z-index: 0;
}

@media (min-width: 576px) {
  .home .img-wpp {
    bottom: 148px;
  }
}

.home .img-wpp.active {
  width: 84px;
  right: -128px;
}

@media (max-width: 576px) {
  .home .img-wpp.active {
    width: 40px;
    bottom: 185px;
    right: -58px;
  }
}

.home .img-insta {
  width: 10px;
  position: absolute;
  top: 220px;
  right: 1px;
  z-index: 0;
  -webkit-transition: right 2s, width 2s;
  transition: right 2s, width 2s;
}

@media (min-width: 576px) {
  .home .img-insta {
    top: 191px;
  }
}

.home .img-insta.active {
  width: 47px;
  right: -77px;
}

@media (max-width: 576px) {
  .home .img-insta.active {
    width: 30px;
    top: 212px;
    right: -64px;
  }
}

.home .img-like-left {
  width: 10px;
  position: absolute;
  right: 1px;
  bottom: 31px;
  z-index: 0;
  -webkit-transition: right 2s, width 2s;
  transition: right 2s, width 2s;
}

.home .img-like-left.active {
  width: 43px;
  right: -101px;
}

@media (max-width: 576px) {
  .home .img-like-left.active {
    width: 25px;
    right: -50px;
    bottom: 46px;
  }
}

.sell-more-container {
  background: #5dc3ad;
  min-height: 530px;
  padding: 80px 0px 0px;
}

.sell-more-container h1 {
  color: #fff;
  font-family: Poppins;
  font-weight: bold;
  font-size: 2.3rem;
}

@media (min-width: 576px) {
  .sell-more-container h1 {
    font-size: 3rem;
  }
}

.sell-more-container .img-wpp {
  width: 55px;
  margin-left: 15px;
}

.sell-more-container .white-box {
  width: 267px;
  height: 260px;
  background: #fff;
  border-radius: 5px;
  margin: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: width 1s, height 1s;
  transition: width 1s, height 1s;
}

.sell-more-container .white-box:hover {
  width: 280px;
  height: 280px;
}

.sell-more-container .white-box .img-space img {
  padding: 15px;
}

.sell-more-container .white-box span {
  font-family: Poppins;
  font-size: 1.2rem;
  color: #5dc3ad;
  font-weight: bold;
  padding: 0 20px 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 76px;
}

.sell-more-container .white-box p {
  font-family: Poppins;
  font-size: 1rem;
  color: #18191f;
  text-align: center;
  padding: 0 20px;
}

.sell-more-container a {
  margin: 25px 0px 30px;
  width: 228px;
  padding: 0;
}

.sell-more-container .sell-on-whatsapp {
  padding: 60px 0;
  background-color: #fff;
}

.sell-more-container .sell-on-whatsapp .number {
  font-family: Poppins;
  font-weight: 600;
  font-size: 4.5rem;
  color: #5dc3ad;
}

.sell-more-container .sell-on-whatsapp .title {
  font-family: Poppins;
  color: #18191f;
}

.sell-more-container .sell-on-whatsapp .sub-title {
  margin-top: 25px;
  font-family: Poppins;
  color: #18191f;
  font-size: 1rem;
  width: 310px;
}

@media (max-width: 575px) {
  .sell-more-container .sell-on-whatsapp .sub-title {
    width: 265px;
  }
}

.sell-more-container .sell-on-whatsapp .wpp h1 span {
  color: #25d366;
}

@media (max-width: 575px) {
  .sell-more-container .sell-on-whatsapp .break {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
  .sell-more-container .sell-on-whatsapp .break .sub-title {
    text-align: center;
    margin: 20px;
  }
}

.sell-more-container .sell-on-whatsapp .footer-title h1 {
  color: #5dc3ad;
  font-family: Poppins;
  line-height: 10px;
  font-weight: bold;
  line-height: 2.1rem;
  font-size: 1.4rem;
}

@media (min-width: 576px) {
  .sell-more-container .sell-on-whatsapp .footer-title h1 {
    font-size: calc(0.8rem + 1.5vw);
    line-height: 3.6rem;
  }
}

.sell-more-container .sell-on-whatsapp .footer-title span {
  color: #18191f;
  font-family: Poppins;
  font-weight: bold;
}

.sell-more-container .sell-on-whatsapp .footer-title a {
  text-transform: uppercase;
  background-color: #18191f;
  color: #fff;
  text-decoration: none;
  padding: 10px 50px;
  font-family: Poppins;
  border-radius: 5px;
  font-weight: bold;
  display: block;
  width: 300px;
  margin: 25px auto 0;
  -webkit-transition: background-color 2s, border-radius 2s;
  transition: background-color 2s, border-radius 2s;
}

.sell-more-container .sell-on-whatsapp .footer-title a:hover {
  background-color: #5dc3ad;
  color: #18191f;
  border-radius: 100px;
}

.about-mostru-container {
  padding: 20px 0;
}

.about-mostru-container .bg-green {
  background-color: #5dc3ad;
}

.about-mostru-container .content {
  padding: 60px 20px;
  background: #5dc3ad;
}

.about-mostru-container .content h1 {
  margin-bottom: 30px;
  color: #fff;
  font-family: Poppins;
  font-weight: bold;
}

.about-mostru-container .content p {
  width: 925px;
  margin: 0 auto;
  font-family: Poppins;
  line-height: 26px;
}

@media (max-width: 991px) {
  .about-mostru-container .content p {
    width: 100%;
  }
}

.about-mostru-container .content-video {
  padding: 60px 0 0;
}

@media (min-width: 1400px) {
  .about-mostru-container .content-video {
    width: 40%;
  }
}

.about-mostru-container .content-video h2 {
  color: #5dc3ad;
  font-family: Poppins;
  font-weight: bold;
  font-size: 2.5rem;
}

.about-mostru-container .content-video :nth-child(1) {
  font-weight: bold;
}

.about-mostru-container .content-video span {
  font-family: Poppins;
}

.about-mostru-container .content-video div {
  width: 100%;
}

@media (min-width: 991) {
  .about-mostru-container .content-video div {
    width: 362px;
  }
}

.about-mostru-container .video {
  width: 100%;
}

@media (min-width: 991px) {
  .about-mostru-container .video {
    width: 670px;
  }
}

.about-mostru-container .share {
  font-family: Poppins;
}

.about-mostru-container .share img {
  width: 24px;
}

.about-mostru-container .share i {
  font-size: 25px;
  color: #121b34;
}

.frequent-questions {
  background-color: #5dc3ad;
  min-height: 100vh;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.frequent-questions h1 {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-weight: bold;
}

.frequent-questions .white-box {
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
}

@media (min-width: 991px) {
  .frequent-questions .white-box {
    width: 60%;
  }
}

.frequent-questions .white-box .white-box-header span {
  font-family: Poppins;
  font-weight: bold;
  color: #18191f;
  font-size: 1.1rem;
}

.frequent-questions .white-box .white-box-header i {
  color: #18191f;
  font-size: 20px;
}

.frequent-questions .white-box .white-box-header a {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
}

.frequent-questions .white-box p {
  font-family: Poppins;
  color: #18191f;
  line-height: 30px;
  margin: 0px 0px 20px;
}

.frequent-questions .white-box .collapse-body {
  background: #fff;
  padding: 0px 15px;
}

.frequent-questions .white-box .rotate {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.frequent-questions .white-box .rotate.down {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.frequent-questions .btn-cadastrar {
  margin-top: 30px;
  width: 250px;
  height: 56px;
  background: #121b34;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 30px;
  font-family: Poppins;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  border-radius: 5px;
  -webkit-transition: background-color 2s, border-radius 1s;
  transition: background-color 2s, border-radius 1s;
}

.frequent-questions .btn-cadastrar:hover {
  color: #5dc3ad;
  background-color: #fff;
  border-radius: 100px;
}

.plans-container {
  padding: 80px 0 45px;
}

.plans-container h1 {
  font-family: Poppins;
  font-weight: bold;
  color: #18191f;
  text-align: center;
}

.plans-container .box-catalog {
  width: 448px;
  background-color: #5dc3ad;
  border-radius: 7px;
  padding: 85px 40px 0;
  position: relative;
}

.plans-container .box-catalog:before {
  content: "";
  width: 5px;
  height: 400px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 175px;
  left: 14px;
  border-radius: 5px;
}

.plans-container .box-catalog h2 {
  font-family: Assistant;
  font-weight: bold;
  color: #fff;
  font-size: 2.3rem;
  margin: 0;
}

.plans-container .box-catalog p {
  color: #fff;
  font-family: Assistant;
}

.plans-container .box-catalog h4 {
  color: #fff;
  font-weight: bold;
  font-family: Assistant;
  font-size: 2.7rem;
  margin-bottom: 50px;
}

.plans-container .box-catalog h4 small {
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
}

.plans-container .box-catalog a {
  font-family: Assistant;
  background: #fff;
  padding: 20px 50px;
  color: #5dc3ad;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 20px;
}

.plans-container .box-catalog span {
  color: #fff;
  font-family: Assistant;
  font-weight: 600;
  font-size: 1.1rem;
}

.plans-container .box-catalog .absolute1 {
  top: 30px;
  right: 26px;
}

.plans-container .box-catalog .more-popular {
  font-family: Assistant;
  background: #121b34;
  color: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  border-radius: 5px;
  letter-spacing: 1px;
  font-weight: 400;
}

.plans-container .box-catalog2 {
  border-radius: 7px;
  padding: 85px 40px 0;
  position: relative;
  -webkit-box-shadow: 0px 0px 13px rgba(204, 204, 204, 0.57);
          box-shadow: 0px 0px 13px rgba(204, 204, 204, 0.57);
  min-height: 650px;
}

@media (min-width: 991px) {
  .plans-container .box-catalog2 {
    min-width: none;
  }
}

.plans-container .box-catalog2:before {
  content: "";
  width: 5px;
  height: 400px;
  background-color: #5dc3ad;
  display: block;
  position: absolute;
  top: 175px;
  left: 14px;
  border-radius: 5px;
}

.plans-container .box-catalog2 h2 {
  font-family: Assistant;
  font-weight: bold;
  color: #18191f;
  font-size: 2.3rem;
  margin: 0;
}

.plans-container .box-catalog2 p {
  color: #8a8a8a;
  font-family: Assistant;
  font-weight: 700;
  font-size: 1.1rem;
}

.plans-container .box-catalog2 h4 {
  color: #121b34;
  font-weight: bold;
  font-family: Assistant;
  font-size: 2.7rem;
  margin-bottom: 50px;
}

.plans-container .box-catalog2 h4 small {
  color: #121b34;
  font-size: 1rem;
  font-weight: normal;
}

.plans-container .box-catalog2 a {
  font-family: Assistant;
  background: #5dc3ad;
  padding: 20px 50px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 20px;
}

.plans-container .box-catalog2 span {
  color: #717171;
  font-family: Assistant;
  font-weight: 600;
  font-size: 1.1rem;
}

.plans-container .days-free {
  width: 270px;
  color: #fff;
  text-decoration: none;
  background-color: #121b34;
  padding: 20px 15px;
  text-align: center;
  font-family: Poppins;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 20px auto 0px;
  -webkit-transition: background-color 2s, border-radius 1s;
  transition: background-color 2s, border-radius 1s;
}

@media (min-width: 992px) {
  .plans-container .days-free {
    margin: 45px auto 0px;
  }
}

.plans-container .days-free:hover {
  color: #fff;
  background-color: #5dc3ad;
  border-radius: 100px;
}

.plans-container .without-credit-card {
  text-align: center;
  color: #121b34;
  font-family: Assistant;
  font-weight: bold;
  font-size: 1.1rem;
}

.plans-container .recurrencyButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  width: 450px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.plans-container .recurrencyButtons button:first-child {
  border-radius: 10px 0 0 10px;
}

.plans-container .recurrencyButtons button:last-child {
  border-radius: 0 10px 10px 0;
}

.plans-container .recurrencyButtons button:last-child::before {
  position: absolute;
  content: "";
  display: block;
  height: 20px;
  width: 1px;
  background-color: var(--primary);
}

.plans-container .recurrencyButtons button {
  position: relative;
  height: 43px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 0;
  background-color: #fff;
  color: #5dc3ad;
  font-weight: bold;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border: 1px solid #ccc;
  border-collapse: unset;
}

.plans-container .recurrencyButtons button:disabled {
  cursor: not-allowed;
}

.plans-container .recurrencyButtons button.active {
  background-color: #5dc3ad;
  color: #fff;
  border: 0;
}

.plans-container .recurrencyButtons button:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

@media (max-width: 450px) {
  .plans-container .recurrencyButtons {
    width: 90%;
  }
}

.plans-container .list-planes {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
}

.plans-container .list-planes li {
  list-style: none;
  position: relative;
  width: auto;
  padding: 15px;
  text-align: initial;
  max-width: 450px;
}

@media (max-width: 991px) {
  .plans-container .list-planes li {
    min-height: 0px;
  }
}

.plans-container .list-planes li small {
  font-size: 1.063rem;
}

.plans-container .list-planes li small.obs {
  font-size: 12px;
}

.plans-container .list-planes li .title {
  margin-top: 0px;
}

.plans-container .list-planes li:nth-child(4)::before, .plans-container .list-planes li:nth-child(5)::before {
  display: none;
}

.plans-container .list-planes li .price {
  font-style: normal;
  font-weight: bold;
  font-size: 2rem;
  line-height: 46px;
  color: #041432;
}

.plans-container .list-planes li .price1 {
  font-style: normal;
  font-weight: bold;
  font-size: 2rem;
  line-height: 46px;
  color: #ffffff;
}

.plans-container .list-planes li .title {
  font-style: normal;
  font-weight: bold;
  font-size: 2.1rem;
  line-height: 37px;
  color: #041432;
  text-align: start;
}

.plans-container .list-planes li .title1 {
  font-weight: bold;
  font-size: 2.1rem;
  color: #fff;
  padding-bottom: 0px !important;
  text-align: start;
}

.plans-container .list-planes li .subtitle1 {
  font-style: normal;
  text-align: start;
  color: #8a8a8a;
  font-size: 1.125rem;
}

.plans-container .list-planes li .p-cinza {
  color: #717171;
  text-align: start;
}

.plans-container .list-planes li .btn-planos {
  width: 100%;
  padding: 20px 10px;
  color: #ffffff;
  font-weight: bold;
  background: #5fc3ad;
  border-radius: 24px;
  border: 0;
  text-decoration: none;
  display: block;
  text-align: center;
}

.plans-container .list-planes li .btn-planos:hover {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.plans-container .list-planes li .absolute {
  position: absolute;
  top: -80px;
}

.plans-container .list-planes li .mais-popular1 {
  text-transform: uppercase;
  padding: 5px 30px;
  letter-spacing: 0.833333px;
  background-color: #041432;
  border-radius: 13.5px;
  color: #fff;
}

.plans-container .list-planes li .absolute1 {
  position: absolute;
  top: 20px;
  right: 20px;
}

.plans-container .list-planes li .green-div {
  height: 100%;
  position: absolute;
  width: 100%;
  background: #5fc3ad;
  -webkit-box-shadow: 10px 10px 15px #999;
          box-shadow: 10px 10px 15px #999;
  border-radius: 26px;
  top: -115px;
  right: 20px;
  padding: 3rem 1rem 0.9375rem;
}

@media (max-width: 1260px) {
  .plans-container .list-planes li .green-div {
    top: 0;
    right: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    position: relative;
  }
}

footer {
  margin-top: 50px;
  padding: 30px;
  background-color: #5dc3ad;
}

@media (max-width: 375px) {
  footer {
    padding: 30px 0px;
  }
}

footer .logo {
  width: 160px;
}

footer ul {
  list-style: none;
}

footer ul li {
  padding: 15px;
  font-family: Poppins;
  font-weight: 600;
  color: #18191f;
  font-size: 1.1rem;
}

footer ul li a {
  text-decoration: none;
  color: #18191f;
}

footer ul li a:hover {
  color: #fff;
}

footer .line {
  padding: 30px 0 0;
  border-bottom: 1px solid #fff;
}

footer .copyright {
  color: #fff;
  font-weight: bold;
  font-family: Poppins;
  font-size: 1.1rem;
}

footer .social-menu li i {
  color: #fff;
  font-size: 25px;
}

footer .social-menu li i:hover {
  color: #18191f;
}
/*# sourceMappingURL=landing-catalogo.css.map */