
/* -------------------------------- 

Main Components 

-------------------------------- */

.cd-pricing-container {
    width: 100%;
  }
  .cd-pricing-switcher {
    text-align: center;
      margin-bottom: 35px;
  }
  .cd-pricing-switcher .fieldset {
      display: inline-block;
      position: relative;
      border: 2px solid #eee;
      background-color: #fff;
      margin-bottom: 0;
  }
  .cd-pricing-switcher input[type="radio"] {
    position: absolute;
    opacity: 0;
  }
  .cd-pricing-switcher label {
      position: relative;
      z-index: 1;
      display: inline-block;
      float: left;
      width: 120px;
      height: 49px;
      line-height: 49px;
      cursor: pointer;
      font-size: 12px;
      color: #6a8695;
      text-transform: uppercase;
      font-weight: 600;
      text-align: center;
      letter-spacing: 0.5px;
      margin: 0;
  }
  .cd-pricing-switcher .cd-switch {
      /* floating background */
      position: absolute;
      top: 2px;
      left: 2px;
      height: 45px;
      width: 120px;
      background-color: #6fc46f;
      color: #fff;
      border-radius: 2px;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0;
      -webkit-transition: -webkit-transform 0.5s;
      -moz-transition: -moz-transform 0.5s;
      transition: transform 0.5s;
  }
  .cd-pricing-switcher input[type="radio"]:checked + label{
      color: #fff;
  }
  .cd-pricing-switcher input[type="radio"]:checked + label + .cd-switch,
  .cd-pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .cd-switch {
      /* use label:nth-of-type(n) to fix a bug on safari with multiple adjacent-sibling selectors*/
      -webkit-transform: translateX(120px);
      -moz-transform: translateX(120px);
      -ms-transform: translateX(120px);
      -o-transform: translateX(120px);
      transform: translateX(120px);
  }
  
  .no-js .cd-pricing-switcher {
      display: none;
  }
  
  /*.cd-pricing-list {}
  .cd-pricing-list > li {
      position: relative;
      margin-bottom: 1em;
  }
  @media only screen and (min-width: 768px) {
    .cd-pricing-list {}
    .cd-pricing-list:after {
      content: "";
      display: table;
      clear: both;
    }
    .cd-pricing-list > li {
      width: 25%;
      float: left;
    }
    .cd-has-margins .cd-pricing-list > li {
      width: 32.3333333333%;
      float: left;
      margin-right: 1.5%;
    }
    .cd-has-margins .cd-pricing-list > li:last-of-type {
      margin-right: 0;
    }
  }*/

  /* Base: mobile first = 1 por linha */
.cd-pricing-list > li {
  width: 100%;
  float: none;
}

/* 2 por linha entre 900 e 1199 */
@media (min-width: 900px) {
  .cd-pricing-list > li {
    width: 50%;
    float: left;
  }
}

/* 4 por linha a partir de 1200 */
@media (min-width: 1200px) {
  .cd-pricing-list > li {
    width: 25%;
  }
}
  
  .cd-pricing-wrapper {
      /* this is the item that rotates */
      position: relative;
      margin: 10px;
  }
  .touch .cd-pricing-wrapper {
      /* fix a bug on IOS8 - rotating elements dissapear*/
      -webkit-perspective: 2000px;
      -moz-perspective: 2000px;
      perspective: 2000px;
  }
  .cd-pricing-wrapper.is-switched .is-visible {
      /* totate the tables - anticlockwise rotation */
      -webkit-transform: rotateY(180deg);
      -moz-transform: rotateY(180deg);
      -ms-transform: rotateY(180deg);
      -o-transform: rotateY(180deg);
      transform: rotateY(180deg);
      -webkit-animation: cd-rotate 0.5s;
      -moz-animation: cd-rotate 0.5s;
      animation: cd-rotate 0.5s;
  }
  .cd-pricing-wrapper.is-switched .is-hidden {
      /* totate the tables - anticlockwise rotation */
      -webkit-transform: rotateY(0);
      -moz-transform: rotateY(0);
      -ms-transform: rotateY(0);
      -o-transform: rotateY(0);
      transform: rotateY(0);
      -webkit-animation: cd-rotate-inverse 0.5s;
      -moz-animation: cd-rotate-inverse 0.5s;
      animation: cd-rotate-inverse 0.5s;
      opacity: 0;
  }
  .cd-pricing-wrapper.is-switched .is-selected {
    opacity: 1;
  }
  .cd-pricing-wrapper.is-switched.reverse-animation .is-visible {
      /* invert rotation direction - clockwise rotation */
      -webkit-transform: rotateY(-180deg);
      -moz-transform: rotateY(-180deg);
      -ms-transform: rotateY(-180deg);
      -o-transform: rotateY(-180deg);
      transform: rotateY(-180deg);
      -webkit-animation: cd-rotate-back 0.5s;
      -moz-animation: cd-rotate-back 0.5s;
      animation: cd-rotate-back 0.5s;
  }
  .cd-pricing-wrapper.is-switched.reverse-animation .is-hidden {
      /* invert rotation direction - clockwise rotation */
      -webkit-transform: rotateY(0);
      -moz-transform: rotateY(0);
      -ms-transform: rotateY(0);
      -o-transform: rotateY(0);
      transform: rotateY(0);
      -webkit-animation: cd-rotate-inverse-back 0.5s;
      -moz-animation: cd-rotate-inverse-back 0.5s;
      animation: cd-rotate-inverse-back 0.5s;
      opacity: 0;
  }
  .cd-pricing-wrapper.is-switched.reverse-animation .is-selected {
      opacity: 1;
  }
  .cd-pricing-wrapper > li {
      background-color: #FFFFFF;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      /* Firefox bug - 3D CSS transform, jagged edges */
      outline: 1px solid transparent;
  }
  .cd-pricing-wrapper > li::after {
      /* subtle gradient layer on the right - to indicate it's possible to scroll */
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 50px;
      pointer-events: none;
  }
  .cd-pricing-wrapper > li.is-ended::after {
      /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
      display: none;
  }
  .cd-pricing-wrapper .is-visible {
      /* the front item, visible by default */
      position: relative;
      z-index: 5;
  }
  .cd-pricing-wrapper .is-hidden {
      /* the hidden items, right behind the front one */
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      z-index: 1;
      -webkit-transform: rotateY(180deg);
      -moz-transform: rotateY(180deg);
      -ms-transform: rotateY(180deg);
      -o-transform: rotateY(180deg);
      transform: rotateY(180deg);
  }
  .cd-pricing-wrapper .is-selected {
      /* the next item that will be visible */
      z-index: 3 !important;
  }
  @media only screen and (min-width: 768px) {
  }
  :nth-of-type(1) > .cd-pricing-wrapper > li::before {
      /* hide table separator for the first table */
      display: none;
    }
  .cd-has-margins .cd-pricing-wrapper > li {
      border-radius: 4px 4px 6px 6px;
    }
  .cd-has-margins .cd-pricing-wrapper > li::before {
      display: none;
    }
  
  @media only screen and (min-width: 1500px) {
    .cd-full-width .cd-pricing-wrapper > li {
      padding: 2.5em 0;
    }
  }
  
  .no-js .cd-pricing-wrapper .is-hidden {
      position: relative;
      -webkit-transform: rotateY(0);
      -moz-transform: rotateY(0);
      -ms-transform: rotateY(0);
      -o-transform: rotateY(0);
      transform: rotateY(0);
      margin-top: 1em;
  }
  
  .is-switched .cd-pricing-body {
      /* fix a bug on Chrome Android */
      overflow: hidden;
  }
  /* -------------------------------- 
  
  xkeyframes 
  
  -------------------------------- */
  @-webkit-keyframes cd-rotate {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
    70% {
      /* this creates the bounce effect */
      -webkit-transform: perspective(2000px) rotateY(200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
    }
  }
  @-moz-keyframes cd-rotate {
    0% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
    70% {
      /* this creates the bounce effect */
      -moz-transform: perspective(2000px) rotateY(200deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(180deg);
    }
  }
  @keyframes cd-rotate {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
    70% {
      /* this creates the bounce effect */
      -webkit-transform: perspective(2000px) rotateY(200deg);
      -moz-transform: perspective(2000px) rotateY(200deg);
      -ms-transform: perspective(2000px) rotateY(200deg);
      -o-transform: perspective(2000px) rotateY(200deg);
      transform: perspective(2000px) rotateY(200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
      -moz-transform: perspective(2000px) rotateY(180deg);
      -ms-transform: perspective(2000px) rotateY(180deg);
      -o-transform: perspective(2000px) rotateY(180deg);
      transform: perspective(2000px) rotateY(180deg);
    }
  }
  @-webkit-keyframes cd-rotate-inverse {
    0% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
      /* this creates the bounce effect */
      -webkit-transform: perspective(2000px) rotateY(20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
  }
  @-moz-keyframes cd-rotate-inverse {
    0% {
      -moz-transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
      /* this creates the bounce effect */
      -moz-transform: perspective(2000px) rotateY(20deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
  }
  @keyframes cd-rotate-inverse {
    0% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
      -moz-transform: perspective(2000px) rotateY(-180deg);
      -ms-transform: perspective(2000px) rotateY(-180deg);
      -o-transform: perspective(2000px) rotateY(-180deg);
      transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
      /* this creates the bounce effect */
      -webkit-transform: perspective(2000px) rotateY(20deg);
      -moz-transform: perspective(2000px) rotateY(20deg);
      -ms-transform: perspective(2000px) rotateY(20deg);
      -o-transform: perspective(2000px) rotateY(20deg);
      transform: perspective(2000px) rotateY(20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
  }
  @-webkit-keyframes cd-rotate-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
    70% {
      /* this creates the bounce effect */
      -webkit-transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
    }
  }
  @-moz-keyframes cd-rotate-back {
    0% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
    70% {
      /* this creates the bounce effect */
      -moz-transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(-180deg);
    }
  }
  @keyframes cd-rotate-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
    70% {
      /* this creates the bounce effect */
      -webkit-transform: perspective(2000px) rotateY(-200deg);
      -moz-transform: perspective(2000px) rotateY(-200deg);
      -ms-transform: perspective(2000px) rotateY(-200deg);
      -o-transform: perspective(2000px) rotateY(-200deg);
      transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
      -moz-transform: perspective(2000px) rotateY(-180deg);
      -ms-transform: perspective(2000px) rotateY(-180deg);
      -o-transform: perspective(2000px) rotateY(-180deg);
      transform: perspective(2000px) rotateY(-180deg);
    }
  }
  @-webkit-keyframes cd-rotate-inverse-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
    }
    70% {
      /* this creates the bounce effect */
      -webkit-transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
  }
  @-moz-keyframes cd-rotate-inverse-back {
    0% {
      -moz-transform: perspective(2000px) rotateY(180deg);
    }
    70% {
      /* this creates the bounce effect */
      -moz-transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
  }
  @keyframes cd-rotate-inverse-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
      -moz-transform: perspective(2000px) rotateY(180deg);
      -ms-transform: perspective(2000px) rotateY(180deg);
      -o-transform: perspective(2000px) rotateY(180deg);
      transform: perspective(2000px) rotateY(180deg);
    }
    70% {
      /* this creates the bounce effect */
      -webkit-transform: perspective(2000px) rotateY(-20deg);
      -moz-transform: perspective(2000px) rotateY(-20deg);
      -ms-transform: perspective(2000px) rotateY(-20deg);
      -o-transform: perspective(2000px) rotateY(-20deg);
      transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
  }
  /*Pricing Style*/
  .pricing-box{
      background-color: #fff;
      padding: 30px;
     -webkit-box-shadow: 0px 50px 100px 0px rgba(60, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
      box-shadow: 0px 50px 100px 0px rgba(60, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
      border-radius: 5px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  .pricing-box.premium .pricing-head h3,
  .pricing-box.premium .pricing-list li,
  .pricing-box.premium .pricing-head span{
      color: #fff;
  }
  .pricing-head{
      border-bottom: 2px solid #eee;
      padding-bottom: 15px;
  }
  .pricing-head img{
      margin-bottom: 20px;
  }
  .pricing-head h3{
      font-size: 42px;
      line-height: 42px;
      margin: 0;
      font-weight: 500;
  }
  .pricing-head span{
      font-size: 12px;
      text-transform: uppercase;
      font-weight: 600;
      
  }
  .pricing-list{
      margin: 20px 0;
  }
  .pricing-list li{
      line-height: 30px;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: -0.2px;
  }
  .pricing-footer{}
  .pricing-footer .default-btn.btn-blue{
      box-shadow: none;
  }
  /*price-tag
  =============*/
  .price-tag{
      background-color: #6fc46f;
      padding: 10px 20px;
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      position: absolute;
      width: auto;
      height: auto;
      left: 0;
      top: 133px;
      transform: rotate(-90deg);
      transform-origin: 0 0;
      border-radius: 0px 0px 0px 10px;
  }





  /* Uniformizar altura dos cards e fixar botão no rodapé */
.pricing-box { min-height: 550px; display: flex; flex-direction: column; }
.pricing-footer { margin-top: auto; }

/* Selo de promoção */
.badge-promo{
  position: absolute;
  top: 12px;
  left: -8px;
  background: #2e7d32; /* verde */
  color: #fff;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  transform: rotate(-6deg);
}

/* Preços: de/por */
.price-wrap{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.price-de, .price-por{
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .5px;
  color: #8aa0b2;
  font-weight: 700;
}

.price-old{
  font-size: 1.25rem;
  text-decoration: line-through;
  color: #8aa0b2;
}

.price-new{
  font-size: 2rem;
  font-weight: 800;
  color: #2e7d32;
  line-height: 1;
}

.price-save{
  display: block;
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Título/subtítulo já existentes */
.pricing-head { border-bottom: 2px solid #eee; padding-bottom: 15px; }
.pricing-head span { display: block; font-size: 12px; text-transform: uppercase; font-weight: 600; }
