/* BANNER */
.banner{
  position: relative;
  overflow: hidden;
  background-image: url('../images/sections/telehelp-planos-webdoor.jpg'), url('../images/sections/telehelp-planos-webdoor.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 600px;
  padding: 6rem 0;
  z-index: 2;
}

.banner-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  z-index: 2;
  padding: 3rem 0 2rem 0;
}

.banner-content h1{
  color: white;

  font-weight: 800;
  font-size: 2.1rem;
  line-height: 105%;

  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
}

.banner-content p{
  color: white;
  font-weight: 400;
  font-size: 24px;
  margin: 0;
}

.banner-content span{
  color: white;
  font-weight: 400;
  font-size: 24px;
}

.banner-content .btn,
.banner-content .btn-primary{
  background-color: var(--accent-color);
  border: none;
  font-weight: 600;
  font-size: 1.4rem;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  
  border-radius: 25px;

  padding: 0px 25px;

  max-width: 345px;
  height: 46px;   

  transition: all .2s ease-in;
}

.banner-content .btn:hover,
.banner-content .btn-primary:hover{
  background-color: var(--hover) !important;  
}
  
  /* PLANOS */
  .planos{
    padding: 3rem 0;
  }
  
  .planos h2{
    font-size: 34px;
    font-weight: 700 ;
    line-height: 120% ;
    letter-spacing: -0.01em;
  
    color: #27272A;
    margin-bottom: 0px;
    text-align: center;
  }

  .planos-subtitulo-description{
    font-weight: 400;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 1rem;
    line-height: 120% ;
    letter-spacing: -0.01em;
    text-align: center;
  }

  .planos .planos-descritivo{
    margin-bottom: 4rem !important;
    font-size: 1rem;
  }
  
  .planos-wrap{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .planos-card{
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* box-shadow: 5px 5px 25px #00000055; */
    box-shadow: 0 0 20pt rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 20px;
  }
  
  .planos-image-container{
    width: 300px;
    height: 250px;
  }
  
  .planos-image-container img{
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
  
  .planos-card h3{
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 700;
    text-align: center;
    padding-bottom: .3rem;
  }

  .planos-subtitulo-span{
    color: #7b7b7b;
    font-weight: 400;
    padding-bottom: 1rem;
  }
  
  .planos-description{
    height: 265px;
  }

  .planos-description ul{
    padding: 0;
    list-style: none;
  }

  .planos-description ul li{
    display: flex;
    align-items: start;
    gap: 0.5rem;
    color: #7b7b7b;
  }

  .planos-description ul img{
    width: 15px;
    height: auto;
    padding-top: 0.3rem;
  }
  
  .planos-card .planos-description p{
    text-align: center;
    height: 40px;
    margin: 0;
    font-size: .86rem;

    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .planos-card .planos-price{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 0;
    /* border-top: 2px solid #f1f1f1; */
  }
  
  .planos-card .planos-price span{
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F1F4D;
    text-align: center;
  }
  
  .planos-card .planos-price a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    gap: 10px;
    width: max-content;
    height: 56px;
    background: var(--accent-color);
    border-radius: 1000px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: .2s ease-in;
  }
  
  .planos-card .planos-price a:hover{
    background-color: var(--hover);
    color: white;
  }

  /* SERVICOS INCLUSOS */
  .services{
    padding: 3rem 0;
  }

  .services h2{
    font-weight: 700;
    font-size: 34px;
    line-height: 120%;

    letter-spacing: -0.01em;

    color: #27272A;
    margin-bottom: 3rem;
  }

  .services-card-wrap{
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .services-card{
    display: flex;
    flex-direction: column;
    align-items: center !important;
    gap: 20px;
    /* max-width: 415px; */
    width: 100%;
    height: max-content;
    background: #F2F2F2;
    border-radius: 24px;
    transition: 0.4s ease;
    overflow: hidden;
  }

  .services-card-image-container{
    width: 100%;
    height: auto;
  }

  .services-card-image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .services-card-content{
    padding: 16px 32px 32px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .services .services-sub{
    font-size: 1.3rem !important;
    color: var(--accent-color) !important;
    font-weight: 600 !important;
  }

  .services-card p{
    font-weight: 400;
    font-size: 1rem;
    line-height: 160%;
    text-align: start !important;

    color: #27272A;
  }

  .services-card a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    gap: 10px;
    width: max-content;
    height: 56px;
    background: var(--accent-color);
    border-radius: 1000px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: .2s ease-in;
  }
  
  .services-card a:hover{
    background-color: var(--hover);
    color: white;
  }

  .services-row-main{
    margin-right: -2.4rem !important;
    margin-left: -2.4rem !important;
  }

  /* SERVICOS OPCIONAIS */
  .servicos-opcionais{
    padding: 0 0 3rem 0;
  }

  .servicos-opcionais h2{
    font-weight: 700;
    font-size: 34px;
    line-height: 120%;

    letter-spacing: -0.01em;

    color: #27272A;
    margin-bottom: 3rem;
  }

  .servicos-opcionais-card-wrap{
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .servicos-opcionais-card{
    display: flex;
    flex-direction: column;
    align-items: center !important;
    /* max-width: 415px; */
    width: 100%;
    height: max-content;
    background: #F2F2F2;
    border-radius: 24px;
    transition: 0.4s ease;
    overflow: hidden;
  }

  .servicos-opcionais-card-image-container{
    width: 100%;
    height: auto;
  }

  .servicos-opcionais-card-image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .servicos-opcionais-card-content{
    padding: 32px 32px 32px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .servicos-opcionais-icon-container{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .servicos-opcionais-icon{
    margin-bottom: 1.5rem;
  }

  .servicos-opcionais .servicos-opcionais-sub{
    font-size: 1.3rem !important;
    color: var(--accent-color) !important;
    font-weight: 600 !important;
  }

  .servicos-opcionais-card p{
    font-weight: 400;
    font-size: 1rem;
    line-height: 160%;
    text-align: start !important;

    color: #27272A;
  }

  .servicos-opcionais-card a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    gap: 10px;
    width: max-content;
    height: 56px;
    background: var(--accent-color);
    border-radius: 1000px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: .2s ease-in;
  }
  
  .servicos-opcionais-card a:hover{
    background-color: var(--hover);
    color: white;
  }

  .servicos-opcionais-row-main{
    margin-right: -2.4rem !important;
    margin-left: -2.4rem !important;
  }

 /* DESCONTO */
  .discount{
    background: var(--accent-color);
    padding: 18px 0;
  }

  .discount-percent{
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 32px;
    gap: 15px;
    max-width: 340px;
    height: 80px;
    border: 1.5px solid #1F1F4D;  
    background-color: #1F1F4D !important;
    border-radius: 200px;
  }

  .discount-percent .discount-wrap{
    position: relative;

    font-weight: 700;
    font-size: 3.2rem;
    line-height: 100%;

    letter-spacing: -0.02em;
    color: white !important;
  }

  .discount-percent p{
    position: absolute;
    right: 2.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 100%;
    color: white !important;
  }

  .discount-content a{
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 160%;
    margin: 0;
    margin-left: -3rem;

    color: white;
    text-decoration: none;
  }

  .discount-content a:hover{
    color: white;
    text-decoration: underline;
  }

  .discount-content span{
    color: #1F1F4D;
  }
  @media (min-width: 1201px) and (max-width: 1550px){
    .container{
      max-width: 1140px !important;
    }
    
    /* DESCONTO 30% */
    .discount-content a{
      font-size: 0.97rem;
      margin-left: 0;
    }
  
    /* BANNER */
    .banner{
      padding: 6rem 0;
    }

    /* PLANOS */
    .planos h2 br{
      display: block !important;
    }
    .planos-description{
      height: 270px;
    }

    /* .planos-card h3 br{
      display: block!important;
    } */

    /* SERVICOS INCLUSOS */
    .services-card{
      max-width: 570px;
    }

    .services-card p{
      height: 150px;
    }

    .services-sub{
      height: 50px;
      display: flex;
      align-items: start;
    }

    /* SERVICOS OPCIONAIS */
    .servicos-opcionais-card{
      height: 640px;
    }

    .servicos-opcionais-sub{
      height: 50px;
      display: flex;
      align-items: start;
    }
  }

  @media screen and (max-width: 1200px){
    /* DISCOUNT */
    .discount-content a {
      font-size: 0.8rem;
      margin-left: 0rem;
    }

    .discount-percent p {
      right: 1.2rem;
      font-size: 1rem;
    }

    /* BANNER */
    .banner{
      z-index: 2;
    }
  
    .banner h1{
      font-size: 37px;
    }

    /* PLANOS */
    .planos-description{
      height: 300px;
    }

    .planos-subtitulo-span {
      display: flex;
      align-items: center;
      height: 70px;
    }

    /* SERVICOS INCLUSOS  */
    /* .services-card{
      max-width: 300px;
    } */

    .services-sub{
      height: 50px;
      display: flex;
      align-items: start;
    }

    .services-card p{
      height: 200px;
    }

    /* SERVICOS OPCIONAIS */
    .servicos-opcionais h2{
      font-size: 30px;
    }

    /* .servicos-opcionais-card{
      max-width: 300px;
    } */

    .servicos-opcionais-card p{
      height: 280px;
    }

    .servicos-opcionais-card a{
      font-size: 1.1rem;
    }

  }

  @media screen and (max-width: 993px){    
    /* DISCOUNT */
    .discount-percent{
      max-width: 330px;
      margin-bottom: 0.5rem;
    }
    
    .discount-percent .discount-wrap{
      font-size: 3rem;
    }
    
    .discount-percent p{
      right: 2rem;
      font-size: 1.2rem;
    }

    /* BANNER */
    .banner--responsive{
      padding: 0;
    }

    .banner-content-responsive-col{
      position: absolute;
      top: 50%;
      right: -50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .banner-content--responsive{
      text-align: start;
      padding: 3rem;
      margin-top: 0;
    }
  
    .banner-content--responsive a{
        margin: 0 0 2rem 0 !important;
    }
  
    .banner--responsive .btn-primary{
        width: max-content !important;
    }
  
    /* PLANS */
    .planos h2 br{
      display: none !important;
    }

    .planos-card{
      width: 100%;
      height: max-content;
    }

    .planos-description{
      height: max-content;
    }

    .planos-wrap{
      flex-direction: column;
      gap: 2rem;
    }

    .planos-subtitulo-span {
      height: inherit;
    }

    .planos .planos-descritivo br{
      display: block !important;
    }

    .planos-card .planos-price{
      padding: 1rem 0 0 0;
    }

    /* SERVIÇOS INCLUSOS */
    .services-card-wrap{
      flex-direction: column;
      gap: 2rem;
    }

    .services-card{
      height: max-content;
      max-width: 400px;
    }

    .services-sub{
      height: max-content;
      align-items: center;
    }

    .services-card a{
      margin-top: 1rem;
    }

    .services-card p{
      height: max-content;
    }

    .services .services-sub{
      font-size: 1.18rem !important;
      text-align: center !important;
    }

    /* SERVIÇOS OPCIONAIS */
    .servicos-opcionais-card-wrap {
      flex-direction: column;
      gap: 2rem;
    }

    .servicos-opcionais-card{
      height: max-content;
      max-width: 400px;
    }

    .servicos-opcionais-sub{
      height: inherit;
      align-items: center;
    }

    .servicos-opcionais-card p{
      height: inherit;
      margin: 0;
    }

    .servicos-opcionais-card a{
      margin-top: 1rem;
    }

    .servicos-opcionais .servicos-opcionais-sub{
      font-size: 1.18rem !important;
      text-align: center !important;
    }

    /* FAIXA */
    .get-in-touch a, .get-in-touch p {
      font-size: 1.5rem !important;
    }
  }

  @media screen and (max-width: 769px){
    h2{
      font-size: 24px !important;
    }
    
    /* BANNER */
    .banner--responsive{
      background-image: url('../images/sections/telehelp-planos-webdoor-responsive.jpg'), url('../images/sections/telehelp-planos-webdoor-responsive.jpg');
      background-position: center center;
    }
  
    /* .banner-content--responsive{
      margin-top: 15rem;
    } */
  
    .banner-content--responsive h1{
      font-size: 2rem;
    }

    /* PLANOS */
    /* .planos .planos-descritivo{
      padding: 0 1rem; 
    } */

    /* FAIXA */
    .get-in-touch a, .get-in-touch p {
      font-size: 1.5rem !important;
    }
  }

  @media screen and (max-width: 577px){
    .services .container{
      padding: 0 !important;
    }
  
    .services-card-wrap{
      padding: 0 !important;
    }
  
    .servicos-opcionais .container{
      padding: 0 !important;
    }
  
    .servicos-opcionais-card-wrap{
      padding: 0 !important;
    }
    
    /* */
    .services-row-main{
      margin-right: 0 !important;
      margin-left: 0 !important;
    }

    .servicos-opcionais-row-main{
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
    
    /* BANNER */
    .banner-content--responsive{
      margin-top: 0;
      padding: 0;
    }

    .banner--responsive{
      background-position: center center;
    }
  }

  @media screen and (max-width: 440px){
    h2{
      font-size: 24px !important;
    }

    .banner--responsive{
      background-position: center center;
    }
    
    .banner--responsive h1{
      font-size: 27px !important;
    }
  
    /* .banner-content--responsive{
        margin-top: 15rem;
    } */
  
    .banner span{
        font-size: 18px;
    }
  
    .banner p{
        font-size: 18px;
    }

    /* PLANOS */
    .planos-description{
      font-size: 14px;
    }

    .planos-card .planos-price a{
      padding: 0 30px;
    }
  }

  @media screen and (max-width: 375px){
    .banner h1{
      font-size: 2.2rem;
    }
  }


