.top {
  background-color: #0062ff;
}

.logo-top {
  height: 60px;
  margin: 0 auto;
}

.header {
  background-image: linear-gradient(to right, #ff3170, #ff6d19);
}

.header-grid-left > h1, .header-grid-left > span {
  color: #FFF;
  font-size: 42px;
  font-weight: 300;
  line-height: 50px;
}

.header-grid-left > span {
  display: block;
  margin: 50px 0 60px 0;
}

.header-grid-left .button {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  border: 3px solid #FFF;
  border-radius: 20px;
  background-color: transparent;
  transition: .3s all;
}

.header-grid-left .button:hover { 
  box-shadow: 0 0 16px #FFFFFF60;
}

.header-grid-left .button > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  color: #FFF;
}

.header-grid-left .button > span > img {
  display: block;
  width: 40px;
  height: 40px;
}

.header-grid-left .button > img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

@media only screen and (min-width: 1020px) {
  .header-grid-left {
    position: sticky;
    top: -20px;
    padding-top: 40px;
  }
}

@media only screen and (max-width: 550px) {
  .header-grid-left > h1, .header-grid-left > span {
    font-size: 36px;
  }

  .header-grid-left > span {
    margin: 20px 0 30px 0;
  }

  .header-grid-left .button {
    padding: 10px;
    width: 100%;
  }

  .header-grid-left .button > span {
    font-size: 18px;
  }

  .header-grid-left .button > span > img {
    width: 30px;
    height: 30px;
  }

  .header-grid-left .button > img {
    width: 50px;
    height: 50px;
  }
}

/* Form */

.header-form-top {
  background-image: linear-gradient(to right, #163daa, #0061fe);
  border-radius: 20px 20px 0 0;
  padding: 30px 60px;
}

.header-form-top p {
  color: #FFF;
  font-size: 20px;
  line-height: 30px;
}

.header-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 0 0 20px 20px;
}

@media only screen and (max-width: 550px) {
  .header-form-top {
    padding: 30px;
  }

  .header-form {
    padding: 20px;
  }
}

#form .button {
  height: 50px;
  padding: 0 80px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
  text-transform: uppercase;
  margin-top: 80px;
  background-color: #f36523;
  transition: .3s all;
}

#form .button:hover {
  background-color: #0061fe;
}

#form .button:disabled {
  opacity: 0.5;
}

/* Background */
.bg-grey {
  background-color: #F2F2F2;
}

/* Card */
.card {
  display: flex;
  flex-wrap: wrap;
}

.card-item {
  display: flex;
}

.card-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;  
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
}

.card .slick-track {
  display: flex !important;
}

.card .slick-slide {
  height:  inherit !important;
}

.card-content-top {
  flex: 1 0 auto;
}

.card-titles h1, .card-titles h4 {
  color: #173DAA;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
}

.card-titles h2, .card-titles h4 {
  margin-bottom: 20px;
}

.card-titles h3 {
  color: #5B5B5F;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
}

.card-titles h2 {
  font-weight: 300;
  font-size: 46px;
  line-height: 52px;
  color: #FF6E27;
}

.card-vantagens-item + .card-vantagens-item {
  margin-top: 10px;
}

.card-vantagens-item > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.card-vantagens-item > div img {
  height: 20px;
  width: 20px;
  display: inline-block;
}

.card-vantagens-item > div p {
  margin-left: 10px;
}

.card-vantagens-item ul {
  margin: 10px 0 0 34px;
}

.card-vantagens-item li {
  margin-bottom: 20px;
  display: block;
}

.card-vantagens-item li img {
  max-width: 100%;
  display: block;
}

.card-vantagens-item li span {
  margin-top: 5px;
  display: block;
}

.card-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-channel {
  position: relative;
  padding-bottom: 100%;
}

.card-channel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-preco {
  margin-top: 80px;
}

.card-preco h2 {
  font-size: 36px;
  font-weight: 300;
  color: #002446;
}

.card-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.card-button > a {
  width: 100%;
}

.card-button button {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
  background-color: #f36523;
  transition: .3s all;
}

.card-button button:hover {
  background-color: #0061fe;
}

.card-button button img {
  display: block;
  width: 35px;
  height: 35px;
}

@media(max-width: 550px) {
  .card-button {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
@media(min-width: 750px) and (max-width: 1000px) {
  .card-button {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
.card.slide-tv .card-preco h2 {
  font-weight: 400;
  line-height: 30px;
}

.card.slide-tv .card-preco h3 {
  font-size: 10px;
  font-weight: 500;
  color: #6B6B6B;
}
.card.slide-tv .card-preco .card-preco--incluso {
  color: #FF6E27;
}
.title-lg {
  font-size: 32px;
}

/* Footer */
footer {
  background-color: #0062ff;
  color: #fff;
  text-align: center;
}

@keyframes pulse {
  0% { 
    box-shadow: #46e966 0 0 0 0;
  }

  80% { 
    box-shadow: #46e96600 0 0 0 16px;
  }
}

#whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background-color: #1AD03F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s infinite;
}

#whatsapp img {
  display: block;
  width: 40px;
  height: 40px;
}