/*==============GERAL=====================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --hue: 128;

  --primary-color: hsl(var(--hue), 51%, 47%);
  --headline: hsl(105, 100%, 5%);
  --paragraph: hsl(0, 0%, 51%);

  --brand-white: hsl(0, 0%, 100%);
  --brand-beige: hsl(39, 100%, 97%);
  --brand-light: hsl(calc(var(--hue) - 22), 23%, 89%);
  --brand-dark: hsl(var(--hue), 100%, 14%);
  --brand-blue: hsl(197, 100%, 47%);

  --bg-light: hsl(180, 14%, 97%);
  --green-gradient: linear-gradient(180deg, #22a289, #6ed58e);
  --dark-green-gradient: linear-gradient(180deg, #017f3f, #3ab54a);
  --blue-gradient: linear-gradient(180deg, #0061ae, #00adef);
  --yellow-price: hsl(60, 100%, 82%);

  --nav-height: 7.2rem;
  font-size: 62.5%;
  /* 1rem = 10px */
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  text-align: center;
  /* background-color: var(--bg-light); */
}

/* Aparece um espaço vazio abaixo do rodapé ao implementar o reCAPTCHA */
#shadow-host-companion {
  display: none;
}

.wrapper {
  width: min(50rem, 100%);
  margin-inline: auto;
  padding-inline: 2.4rem;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

section {
  padding-block: 5rem;
}

section header h2 {
  color: var(--headline);
  font-size: 2.8rem;
  line-height: 3.3rem;
  margin-bottom: 1rem;
}

section header h4 {
  color: var(--headline);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 150%;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

section .content p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--paragraph);
}

.green-span {
  color: var(--primary-color);
}

.yellow-span {
  color: var(--yellow-price);
}

.blue-span {
  color: var(--brand-blue);
}

.bold-span {
  font-weight: 700;
}

.button {
  background: var(--primary-color);
  border: none;
  border-radius: 4rem;
  padding: 1.3rem 2rem;
  width: fit-content;
  color: var(--brand-white);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.button:hover {
  background-color: var(--brand-dark);
}

.promo {
  background: #cf3281;
  margin-top: 1rem;
}

.promo:hover {
  background: #8e0b4d;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}

/*==============NAVIGATION=================*/
nav {
  display: flex;
  background-color: var(--brand-light);
  height: var(--nav-height);
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
}

nav .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .wrapper .logo {
  background: url(../assets/logo-colorful.png);
  position: relative;
  width: 16.3rem;
  height: 4.8rem;
}

nav.scroll .wrapper .logo {
  background: url(../assets/logo-white.png);
}

nav.scroll {
  background: var(--primary-color);
  transition: 300ms;
}

nav button {
  background: none;
  border: none;
  cursor: pointer;
}

nav .open-menu {
  background: url(../assets/button-open-green.png);
  position: relative;
  width: 2.1rem;
  height: 1.8rem;
}

nav.scroll .open-menu {
  background: url(../assets/button-open-white.png);
}

nav .menu,
nav .close-menu {
  position: fixed;
}

/*==============MENU-EXPANDED==============*/
body.menu-expanded {
  overflow: hidden;
}

body.menu-expanded> :not(nav) {
  visibility: hidden;
}

.menu,
.close-menu,
body.menu-expanded .open-menu {
  opacity: 0;
  visibility: hidden;
}

body.menu-expanded .menu,
body.menu-expanded .close-menu {
  opacity: 1;
  visibility: visible;
}

.menu {
  transform: translateY(100%);
}

body.menu-expanded .menu {
  top: 0;
  left: 0;
  background: var(--primary-color);
  width: 100vw;
  height: 100vh;
  padding-top: var(--nav-height);
  transition: transform 400ms;
  transform: translateY(0);
}

.menu ul:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 6rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3.1rem;
}

.menu ul li a {
  color: var(--brand-white);
  text-decoration: none;
}

.menu .button {
  background: var(--brand-white);
  border-radius: 4rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.3rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 2rem;
  margin-block: 4.8rem;
  margin-inline: auto;
}

.menu .button:hover {
  background-color: var(--primary-color);
  color: var(--brand-white);
  filter: brightness(1.3);
}

.menu .button path[fill*="#3AB54A"] {
  fill: var(--primary-color);
}

body.menu-expanded .logo,
body.menu-expanded button {
  position: relative;
  z-index: 100;
}

body.menu-expanded .logo {
  background: url(../assets/logo-white.png);
}

body.menu-expanded button path {
  stroke: var(--brand-white);
}

/*==============BANNER=====================*/
#banner {
  padding-top: var(--nav-height);
  position: relative;
  width: 100%;
  height: 26.2rem;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}

.slides {
  width: 500%;
  height: 18.9rem;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 20%;
  transition: 2s;
}

.slide img {
  width: 100%;
  height: 18.9rem;
}

#radio1:checked~.first {
  margin-left: 0;
}

#radio2:checked~.first {
  margin-left: -20%;
}

#radio3:checked~.first {
  margin-left: -40%;
}

#radio4:checked~.first {
  margin-left: -60%;
}

/*css for automatic navigation*/
.navigation-auto {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 17rem;
}

.navigation-auto div {
  background: #d6d6d6;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  transition: 1s;
}

.navigation-auto div:not(:last-child) {
  margin-right: 1.5rem;
}

#radio1:checked~.navigation-auto .auto-btn1 {
  background: var(--primary-color);
}

#radio2:checked~.navigation-auto .auto-btn2 {
  background: var(--primary-color);
}

#radio3:checked~.navigation-auto .auto-btn3 {
  background: var(--primary-color);
}

@media (min-width: 700px) {
  #banner {
    height: 38.2rem;
  }

  .slides {
    height: 30.9rem;
  }

  .slide img {
    height: 30.9rem;
  }

  .navigation-auto {
    margin-top: 29rem;
  }
}

/*==============HOME======================*/
#home::before {
  content: "";
  width: 100%;
  height: 108rem;
  background-color: var(--brand-light);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#home {
  padding-top: 3.5rem;
  text-align: left;
}

#home .button {
  margin-inline: auto;
  margin-bottom: 6rem;
}

#home h4 {
  margin-bottom: 1.6rem;
}

#home h2 {
  margin-top: -6rem;
}

#home .little-rocket {
  position: relative;
  width: 3.2rem;
  height: 5.4rem;
  top: -5.1rem;
  left: 23rem;
}

#home p {
  color: var(--paragraph);
  line-height: 150%;
  margin-bottom: 3.2rem;
}

#home .woman {
  width: 28.2rem;
  display: block;
  margin-inline: auto;
  margin-top: 5rem;
}

#home .stats {
  width: 100%;
  margin-inline: auto;
  padding-block: 4rem;
  background: var(--brand-beige);
  border: 1px solid var(--brand-light);
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6rem;
}

#home .stat h3 {
  color: var(--headline);
  font-size: 4.8rem;
  line-height: 130%;
}

#home .stat p {
  color: var(--primary-color);
  margin: 0;
  line-height: 150%;
}

/*================THE BEST================*/
#the-best {
  padding-block: 5rem;
}

#the-best .col-a {
  display: none;
}

.toggle-container {
  color: var(--paragraph);
  margin-bottom: 3rem;
}

/* Pill toggle */
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-container label {
  background-image: linear-gradient(to right,
      var(--primary-color),
      var(--brand-dark));
  border-radius: 5rem;
  cursor: pointer;
  display: inline-block;
  margin: 0 1rem;
  position: relative;
  height: 3rem;
  width: 6rem;
}

.toggle-container label .ball {
  background-color: var(--brand-white);
  border-radius: 50%;
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: transform 0.4s ease;
}

.toggle-container input {
  position: absolute;
  left: -999.9rem;
}

.toggle-container input:checked+label .ball {
  transform: translateX(3rem);
}

.toggle-container .text {
  font-size: 1.2rem;
  font-weight: 700;
}

#flexy {
  text-align: left;
}

#flexy h2 {
  color: var(--headline);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

#flexy p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--paragraph);
}

.for-company {
  display: none;
}

.show-company .for-company {
  display: block;
}

.show-company .for-you {
  display: none;
}

/*==================PLANS=================*/
/* PAGE */
#plans select {
  background-color: #46b17b;
  border: none;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
  padding: 1.6rem 2rem;
  width: 100%;
  color: var(--yellow-price);
  font-size: 1.4rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  /* arrow icon position (2rem from the right, 50% vertical) */
  background-position: right 2rem top 50%, 0 0;
  /* icon size, then gradient */
  background-size: 1rem auto, 100%;
  outline: none;
}

#plans .bottom {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* /PAGE */

#plans {
  text-align: left;
  height: 72rem;
}

#plans .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--brand-white);
  background-clip: border-box;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  padding: 3rem 2.5rem 0 2.5rem;
  min-height: 40rem;
  border: 0;
  -webkit-box-shadow: -0.1rem 0 2rem 0.2rem rgb(0 0 0 / 3%);
  -moz-box-shadow: -0.1rem 0 2rem 0.2rem rgba(0, 0, 0, 0.07);
  box-shadow: -0.1rem 0 2rem 0.2rem rgb(0 0 0 / 7%);
}

#plans .card h4,
.card p {
  color: var(--primary-color);
}

#plans .card h4 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.2rem;
  margin-bottom: 1.6rem;
}

#plans .card p {
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 1.6rem;
}

#plans .card p.info {
  font-size: 1.4rem;
  margin-bottom: 3rem;
}

#plans .rocket-ignite {
  width: 7.6rem;
  position: absolute;
  right: 0.8rem;
  top: 2.2rem;
  z-index: 1;
}

.card hr {
  border: 0.1px solid #ebe8e1 !important;
  opacity: 0.8;
  margin-bottom: 1.6rem;
}

#plans .card h4 .price {
  font-size: 2.2rem;
}

#plans .card h4 .coin,
#plans .card h4 .month {
  font-weight: 400;
  font-size: 1.4rem;
}

#plans .card h4 .asterisk {
  font-size: 6rem;
  position: absolute;
  width: 3rem;
  margin: 1rem 0 0 2rem;
  color: #cf3281;
}

#plans .card .button {
  font-size: 1.2rem;
  width: 100%;
}

#plans .card .button img {
  width: 2.5rem;
}

#plans .card.high hr {
  border: 0.1px solid #b6d8a6 !important;
  opacity: 0.2;
  margin-bottom: 1.6rem;
}

#plans .card.high {
  background-image: var(--green-gradient);
}

#plans .card.high h4,
.card.high p {
  color: var(--brand-white);
}

#plans .card.high h4 .price {
  font-size: 2.2rem;
  color: var(--yellow-price);
}

#plans .card.high h4 .coin,
#plans .card.high h4 .month {
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--yellow-price);
}

#plans .card.high .button {
  background: var(--brand-white);
  border: none;
  border-radius: 4rem;
  padding: 1.3rem 2rem;
  width: 100%;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: background 0.2s;
}

#plans .card.high .button:hover {
  background-color: var(--brand-blue);
  color: var(--brand-white);
}

#plans .card.high .button.promo {
  background: #cf3281;
  color: var(--brand-white);
  margin-top: 1rem;
}

#plans .card.high .button.promo:hover {
  background: #8e0b4d;
}

#plans img.curve {
  width: 8.4rem !important;
  height: 3.5rem;
  position: absolute;
  left: 50%;
  margin-left: -4.2rem;
  bottom: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot span {
  width: 1.5rem;
  height: 0.5rem;
}

#plans .button.sec-button {
  font-size: 1.2rem;
  position: relative;
  margin-inline: auto;
  top: 50.2rem;
}

@media (min-width: 768px) {
  .owl-carousel.owl-drag .owl-item {
    width: 23rem !important;
    margin-right: 1.6rem !important;
  }

  .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: -38.8rem;
  }
}

/*==================TVHD==================*/
#tv {
  text-align: left;
  height: 44.3rem;
  background-color: var(--bg-light);
}

#tv .desktop-text {
  display: none;
}

#tv .button {
  font-size: 1.2rem;
  margin-top: 17.6rem;
}

#tv .col-b {
  position: relative;
  top: -22.6rem;
}

/*=================ABOUT==================*/
#about {
  text-align: left;
  height: 44.3rem;
  background-color: var(--brand-beige);
}

#about .content {
  height: 24rem;
}

#about .desktop-text {
  display: none;
}

#about .button {
  font-size: 1.2rem;
  margin-top: 1.6rem;
}

#about img {
  position: relative;
  top: -26.6rem;
  right: -13.7rem;
  width: 21.4rem;
  object-position: 4rem;
}

@media (min-width: 390px) {
  #about img {
    right: -15.2rem;
  }
}

@media (min-width: 410px) {
  #about img {
    right: -17.2rem;
  }
}

@media (min-width: 412px) {
  #about img {
    right: -17.4rem;
  }
}

@media (min-width: 414px) {
  #about img {
    right: -17.6rem;
  }
}

@media (min-width: 420px) {
  #about img {
    right: -18.2rem;
  }
}

@media (min-width: 700px) {
  #about img {
    top: -19.8rem;
    right: -23.7rem;
    object-position: 0;
  }
}

@media (min-width: 768px) {
  #about img {
    right: -24.2rem;
  }
}

/*==============SPEED TEST================*/
#speed-test {
  background-image: var(--green-gradient);
  text-align: left;
  height: 24.5rem;
}

#speed-test h2,
#speed-test p {
  color: var(--brand-white);
}

#speed-test .desktop-text {
  display: none;
}

#speed-test .speedometer {
  position: relative;
  top: -6.8rem;
  left: -6.8rem;
  width: 8.5rem;
}

#speed-test .button {
  background: var(--brand-white);
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 1.3rem;
}

#speed-test .rocket-speed-test {
  position: relative;
  top: -20.5rem;
  right: -15.3rem;
  width: 19.8rem;
  object-position: 4rem;
}

@media (min-width: 390px) {
  #speed-test .rocket-speed-test {
    right: -16.8rem;
  }
}

@media (min-width: 410px) {
  #speed-test .rocket-speed-test {
    right: -18.8rem;
  }
}

@media (min-width: 412px) {
  #speed-test .rocket-speed-test {
    right: -19rem;
  }
}

@media (min-width: 414px) {
  #speed-test .rocket-speed-test {
    right: -19.2rem;
  }
}

@media (min-width: 420px) {
  #speed-test .rocket-speed-test {
    right: -19.8rem;
  }
}

@media (min-width: 700px) {
  #speed-test .rocket-speed-test {
    right: -26.3rem;
    object-position: 0;
  }
}

@media (min-width: 768px) {
  #speed-test .rocket-speed-test {
    right: -25.8rem;
  }
}

/*================SUPPORT=================*/
#support {
  background-image: var(--blue-gradient);
  text-align: left;
}

#support h4,
#support h2,
#support p {
  color: var(--brand-white);
}

#support h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0;
}

#support .button {
  background: var(--brand-white);
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 1.6rem;
  padding: 0.8rem 2rem;
}

#support .button:hover {
  background: var(--brand-dark);
  color: var(--brand-white);
}

#support .button svg {
  width: 1.6rem;
}

#support .button path[fill*="#3AB54A"] {
  fill: var(--primary-color);
}

#support .col-b {
  display: none;
}

/*==============SECOND WAY================*/
#second-way {
  text-align: left;
  height: 32.2rem;
}

#second-way .col-b {
  justify-content: flex-end;
  display: flex;
  position: relative;
  top: -15rem;
  right: -10.3rem;
  width: 24.8rem;
}

@media (min-width: 410px) {
  #second-way .col-b {
    right: -13.8rem;
  }
}

@media (min-width: 412px) {
  #second-way .col-b {
    right: -14rem;
  }
}

@media (min-width: 415px) {
  #second-way .col-b {
    right: -14.3rem;
  }
}

#second-way .desktop-text {
  display: none;
}

#second-way img {
  width: 24.8rem;
  object-position: 6.5rem;
}

#second-way .button {
  margin-top: 1.6rem;
  font-size: 1.2rem;
}

@media (min-width: 390px) {
  #second-way img {
    right: -11.8rem;
  }
}

@media (min-width: 412px) {
  #second-way img {
    right: -14rem;
  }
}

@media (min-width: 414px) {
  #second-way img {
    right: -14.2rem;
  }
}

@media (min-width: 420px) {
  #second-way .col-b {
    right: -14.8rem;
  }

  #second-way img {
    right: -14.8rem;
  }
}

@media (min-width: 700px) {
  #second-way img {
    right: -20.3rem;
    object-position: 0;
  }
}

@media (min-width: 768px) {
  #second-way img {
    right: -20.8rem;
  }
}

/*=============NEIGHBORHOODS==============*/
#neighborhoods {
  background-image: var(--green-gradient);
  text-align: left;
}

#neighborhoods .wrapper {
  display: grid;
  grid-template-columns: 13rem 1fr;
}

#neighborhoods .col-b {
  align-self: center;
  justify-self: flex-end;
}

#neighborhoods h4 {
  font-size: 2rem;
  font-weight: 600;
  text-transform: initial;
  color: var(--brand-white);
  margin: 0;
}

#neighborhoods .desktop-text {
  display: none;
}

#neighborhoods .button {
  font-size: 1.2rem;
  background: var(--brand-white);
  color: var(--primary-color);
}

#neighborhoods .button:hover {
  background: var(--brand-dark);
  color: var(--brand-white);
}

/*================SIGN IT=================*/

#sign-it {
  text-align: left;
  background-image: var(--dark-green-gradient);
}

#sign-it h2,
#sign-it p {
  color: var(--brand-white);
}

#sign-it p {
  margin-top: 2rem;
}

#sign-it p span {
  font-weight: 700;
}

#sign-it .sign {
  background: var(--brand-white);
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: 1.6rem 0;
}

#sign-it .sign:hover {
  background: var(--brand-dark);
  color: var(--brand-white);
}

#sign-it .teleshopping {
  border: 1px solid var(--brand-white);
  background: transparent;
  font-size: 1.2rem;
}

#sign-it .teleshopping:hover {
  background-color: var(--brand-white);
  color: var(--primary-color);
  border: none;
}

#sign-it form {
  margin-top: 1.6rem;
}

#sign-it label {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brand-white);
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

#sign-it input,
#sign-it select {
  background-color: #46b17b;
  border: none;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
  padding: 1.6rem 2rem;
  width: 100%;
  color: var(--yellow-price);
  font-size: 1.4rem;
}

#sign-it input::placeholder,
#sign-it textarea::placeholder {
  color: #34855C;
}

#sign-it select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  /* arrow icon position (2rem from the right, 50% vertical) */
  background-position: right 2rem top 50%, 0 0;
  /* icon size, then gradient */
  background-size: 1rem auto, 100%;
}

#sign-it input:focus,
#sign-it select:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

#sign-it .form_btn {
  background-color: var(--brand-white);
  color: var(--primary-color);
  font-size: 1.2rem;
  float: left;
  margin-right: 1.6rem;
}

#sign-it .form_btn:hover {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

#sign-it .form_btn_clear {
  margin-top: 3rem;
  font-size: 1.2rem;
  border: 1px solid var(--brand-white);
  background: transparent;
  transition: background 0.2s;
}

#sign-it .form_btn_clear:hover {
  background: var(--brand-white);
  color: var(--primary-color);
}

/* ------------------------------------------------- */
.dplustrigger {
  width: 100%;
  display: none;
}

.dplustrigger .dplustrigger-txt {
  font-size: 1.4rem !important;
  margin-top: 0 !important;
}

.dplustrigger-enviando,
.dplustrigger-enviando-2 {
  background-color: #f0ad4e;
  padding: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

.dplustrigger-sucesso,
.dplustrigger-sucesso-2 {
  background-color: #5cb85c;
  padding: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

.dplustrigger-erro,
.dplustrigger-erro-2 {
  background-color: #d9534f;
  padding: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

/*=============SOCIAL MEDIA===============*/
#social-media {
  background-color: #00adef;
}

/*================FOOTER==================*/
footer {
  background-color: #0061ae;
  padding-block: 5rem;
}

footer .logo {
  margin-bottom: 1.6rem;
}

footer p {
  font-size: 1.2rem;
  color: var(--brand-white);
  margin-bottom: 3.6rem;
}

footer .powered {
  width: 12.6rem;
}

footer .col-b {
  display: none;
}

/*==============COMPANY PAGE=============*/
#company {
  text-align: left;
}

#company p {
  margin-bottom: 1rem;
}

#company img {
  margin-top: 2rem;
}

#company ul {
  list-style: circle;
  margin-left: 1.6rem;
  font-size: 1.4rem;
  line-height: 150%;
  margin-bottom: 1.6rem;
}

/*===============PLAN PAGE===============*/
.nav-plans {
  background-color: var(--bg-light);
}

#banner-plan {
  padding-top: calc(4.1rem + var(--nav-height));
  text-align: left;
  background-image: var(--dark-green-gradient);
}

#banner-plan img {
  margin-right: 1rem;
}

#banner-plan p {
  color: var(--brand-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}

#banner-plan h2 {
  color: var(--brand-white);
  font-size: 2.8rem;
  line-height: 3.3rem;
}

#choose {
  text-align: left;
}

#choose h2 {
  margin-bottom: 1.6rem;
}

#choose select {
  background-color: #46b17b;
  border: none;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
  padding: 1.6rem 2rem;
  width: 100%;
  color: var(--yellow-price);
  font-size: 1.4rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  /* arrow icon position (2rem from the right, 50% vertical) */
  background-position: right 2rem top 50%, 0 0;
  /* icon size, then gradient */
  background-size: 1rem auto, 100%;
  outline: none;
}

#choose hr {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#choose h4 {
  color: var(--headline);
  font-size: 2rem;
  line-height: 150%;
  margin-bottom: 3rem;
}

#choose .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-image: var(--green-gradient);
  background-clip: border-box;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  padding: 3rem 2.5rem 0 2.5rem;
  min-height: 40rem;
  border: 0;
  -webkit-box-shadow: -0.1rem 0 2rem 0.2rem rgb(0 0 0 / 3%);
  -moz-box-shadow: -0.1rem 0 2rem 0.2rem rgba(0, 0, 0, 0.07);
  box-shadow: -0.1rem 0 2rem 0.2rem rgb(0 0 0 / 7%);
}

#choose .card p {
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 1.6rem;
}

#choose .card h4 {
  color: var(--brand-white);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.2rem;
  margin-bottom: 1.6rem;
}

#choose .card.high hr {
  border: 0.1px solid #b6d8a6 !important;
  opacity: 0.2;
  margin-top: 0;
  margin-bottom: 1.6rem;
}

#choose .rocket-ignite {
  width: 7.6rem;
  position: absolute;
  right: 0.8rem;
  top: 2.2rem;
  z-index: 1;
}

#choose .card p.info {
  font-size: 1.4rem;
  margin-bottom: 3rem;
}

#choose .card.high h4 .coin,
#choose .card.high h4 .month {
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--yellow-price);
}

#choose .card.high h4 .price {
  font-size: 2.2rem;
  color: var(--yellow-price);
}

#choose .card h4 .asterisk {
  font-size: 6rem;
  position: absolute;
  width: 3rem;
  margin: 1rem 0 0 2rem;
  color: #cf3281;
}

#choose .card.high .button {
  background: var(--brand-white);
  border: none;
  border-radius: 4rem;
  padding: 1.3rem 2rem;
  margin-top: 1.4rem;
  width: 100%;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: background 0.2s;
}

#choose .card.high .button:hover {
  background: var(--brand-blue);
  color: var(--brand-white);
}

#choose .card.high .button.promo {
  background: #cf3281;
  color: var(--brand-white);
  margin-top: 1rem;
}

#choose .card.high .button.promo:hover {
  background: #8e0b4d;
}

#choose img.curve {
  width: 8.4rem !important;
  height: 3.5rem;
  position: absolute;
  left: 50%;
  margin-left: -4.2rem;
  bottom: 0;
}

/*=============CONTACTS PAGE=============*/
#contacts {
  text-align: left;
}

#contacts h4 {
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

#contacts p {
  font-size: 1.4rem !important;
  color: var(--brand-white);
}

#contacts .text {
  margin-top: 1rem;
  color: var(--paragraph);
}

#contacts .content {
  margin-top: 3rem;
}

#contacts .content h2 {
  margin-bottom: 2rem;
}

#contacts label {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--paragraph);
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

#contacts input,
#contacts textarea {
  background-color: var(--brand-light);
  border: none;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
  padding: 1.6rem 2rem;
  width: 100%;
  color: var(--paragraph);
  font-size: 1.4rem;
  outline: none;
}

#contacts input::placeholder,
#contacts textarea::placeholder {
  color: #A7C19B;
}

#contacts .contact_btn {
  background-color: var(--primary-color);
  color: var(--brand-white);
  font-size: 1.2rem;
  float: left;
  margin-right: 1.6rem;
}

#contacts .contact_btn:hover {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

#contacts .contact_btn_clear {
  margin-top: 3rem;
  font-size: 1.2rem;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  transition: background 0.2s;
}

#contacts .contact_btn_clear:hover {
  background-color: var(--primary-color);
  color: var(--brand-white);
}

/*==============SPEED TEST===============*/
#speed {
  width: 100%;
  min-height: 100%;
}

#speed iframe {
  height: 110vh;
}

.speedometer {
  width: 4rem;
}

/*==============BACK TO TOP===============*/
#backToTopButton {
  position: fixed;
  bottom: 10rem;
  right: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
  transform: translateY(100%);
  z-index: 10;
}

#backToTopButton.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTopButton circle {
  fill: var(--primary-color);
}

/*==============WHATSAPP BTN==============*/
.whatsapp a {
  background: url(../assets/img-atendimento-p.png);
  position: fixed;
  bottom: 2.5rem;
  right: 1.4rem;
  z-index: 999999999999999;
  width: 5rem;
  height: 5rem;
}

/*===============RESPONSIVE===============*/
@media (min-width: 1024px) {

  /*==============GERAL=====================*/
  .wrapper {
    width: min(112rem, 100%);
    display: grid;
  }

  section header h2,
  #flexy h2 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  /*==============NAVIGATION=================*/
  /* RESET */
  nav#navigationMain .wrapper * {
    margin: 0;
    padding: 0;
    visibility: initial;
    display: initial;
    opacity: initial;
    flex-direction: initial;
    position: initial;
    font-size: initial;
    font-weight: initial;
    color: initial;
    transform: initial;
    background-color: initial;
    filter: initial;
  }

  nav#navigationMain .open-menu,
  nav#navigationMain .close-menu,
  nav#navigationMain .social-links {
    display: none;
  }

  /* /RESET */

  nav#navigationMain .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
  }

  nav#navigationMain .menu ul:nth-child(1) {
    display: flex;
    gap: 3.2rem;
  }

  nav#navigationMain .menu ul li a {
    color: var(--primary-color);
    opacity: 0.7;
  }

  nav#navigationMain .menu a.button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.8rem;
    text-transform: uppercase;
  }

  nav#navigationMain .menu a.button.active,
  /* TALVEZ */
  nav#navigationMain .menu a.button:hover {
    background-color: var(--primary-color);
    color: var(--brand-white);
    border: none;
  }

  nav#navigationMain .menu a.button:hover path[fill*="#3AB54A"] {
    fill: var(--brand-white);
  }

  nav#navigationMain.scroll .menu ul li a {
    color: var(--brand-white);
    opacity: 0.6;
  }

  nav#navigationMain.scroll .menu a.button {
    border-color: var(--brand-white);
    color: var(--brand-white);
  }

  nav#navigationMain .menu li a {
    transition: opacity 0.4s;
  }

  nav#navigationMain .menu li a.active,
  nav#navigationMain .menu li a:hover {
    opacity: 1;
    font-weight: 700;
  }

  nav#navigationMain .menu li a::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    position: relative;
    bottom: -2rem;
    left: -0.6rem;
    display: block;
    transition: width 0.2s;
  }

  nav#navigationMain.scroll .menu li a::after {
    background-color: var(--brand-white);
  }

  nav#navigationMain .menu li a.active::after,
  nav#navigationMain .menu li a:hover::after {
    padding-inline: 0.6rem;
    width: 100%;
  }

  nav#navigationMain.scroll .menu li a.active,
  nav#navigationMain.scroll .menu li a:hover {
    opacity: 1;
  }

  nav#navigationMain.scroll .menu a.button.active,
  nav#navigationMain.scroll .menu a.button:hover {
    background-color: var(--brand-white);
    color: var(--brand-dark);
    border: none;
  }

  nav#navigationMain.scroll .menu a.button path[fill*="#3AB54A"] {
    fill: var(--brand-white);
  }

  nav#navigationMain.scroll .menu a.button:hover path[fill*="#3AB54A"] {
    fill: var(--brand-dark);
  }

  /*==============BANNER=====================*/
  #banner {
    height: 67.4rem;
  }

  .slides {
    height: 60rem;
  }

  .slide img {
    height: 60.1rem;
  }

  .navigation-auto {
    margin-top: 57rem;
  }

  /*==============HOME======================*/
  #home {
    padding-top: var(--nav-height);
  }

  #home::before {
    height: 127rem;
  }

  #home .wrapper {
    grid-template-columns: 48.4rem 1fr;
    grid-template-areas:
      'A B'
      'C C';
  }

  #home .col-a {
    text-align: left;
    align-self: center;
  }

  #home h1 {
    font-size: 5.2rem;
  }

  #home .stats {
    grid-area: C;
    flex-direction: row;
    padding: 6rem;
    gap: 0;
  }

  #home .stats .stat+.stat {
    border-left: 1px solid var(--primary-color);
  }

  #home .stats .stat {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #home .woman {
    width: 38rem !important;
    margin-top: 0;
  }

  /*================THE BEST================*/
  #the-best .wrapper {
    grid-template-columns: 44rem 1fr;
    grid-template-areas: 'A B';
    gap: 1.6rem;
  }

  #the-best .col-a {
    display: block;
  }

  #the-best .col-a {
    margin-top: -10rem;
    margin-left: 2rem;
  }

  #the-best .col-b {
    margin-top: -5rem;
  }

  /*==================PLANS=================*/
  #plans {
    height: 68rem;
  }

  #plans .wrapper {
    grid-template-columns: 44rem 1fr;
    grid-template-areas:
      'A B'
      'C C';
    gap: 1.6rem;
  }

  #plans .col-one {
    grid-area: A / B;
    margin-left: -19rem;
    width: 55rem;
  }

  #plans .col-two {
    grid-area: C;
    margin-inline: 26rem;
    margin-bottom: 4rem;
  }

  #plans .plans-carousel {
    display: flex;
    flex-direction: column;
    width: min(107rem, 100%);
    height: 44.1rem;
    margin-inline: auto;
  }

  #plans .owl-carousel.owl-drag .owl-item {
    width: 31.8rem !important;
    margin-right: 2.6rem !important;
  }

  #plans .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 2.2rem;
  }

  #plans .content p {
    text-align: center;
  }

  #plans .button.sec-button {
    top: 60.5rem;
    margin-right: -19rem;
  }

  #plans .bottom {
    grid-area: C;
    margin-top: 0;
    margin-bottom: 4rem;
  }

  /*==================TVHD==================*/
  #tv .button {
    font-size: 1.2rem;
    margin-top: 6.6rem;
  }

  #tv .col-b {
    position: relative;
    top: -23.6rem;
    right: -22rem;
  }

  #tv .desktop-text {
    display: block;
  }

  #tv .mobile-text {
    display: none;
  }

  /*==================ABOUT=================*/
  #about {
    margin-top: 0;
    height: 32.5rem;
  }

  #about .wrapper {
    grid-template-columns: 53.5rem 1fr;
    grid-template-areas: 'A B';
    gap: 6.7rem;
  }

  #about .content {
    height: 8rem;
  }

  #about .mobile-text {
    display: none;
  }

  #about .desktop-text {
    display: block;
  }

  #about .button {
    margin-top: 5.5rem;
  }

  #about img {
    width: 40rem;
    top: -3.8rem;
    right: -7.2rem;
  }

  /*==============SPEED TEST================*/
  #speed-test {
    height: 17.5rem;
  }

  #speed-test .wrapper {
    grid-template-columns: 70rem 1fr;
    grid-template-areas: 'A B';
    gap: 6.7rem;
  }

  #speed-test .desktop-text {
    display: block;
  }

  #speed-test .mobile-text {
    display: none;
  }

  #speed-test .rocket-speed-test {
    right: -10rem;
    top: -3rem;
  }

  #speed-test .button {
    position: relative;
    top: -7rem;
    left: 51rem;
  }

  #speed-test .button:hover {
    background: var(--brand-dark);
    color: var(--brand-white);
  }

  #speed-test .speedometer {
    top: -13.8rem;
    left: 43.7rem;
  }

  /* -------------------------------------- */
  #speed {
    width: 100%;
    min-height: 47%;
  }

  #speed iframe {
    height: 39vh;
  }

  /*================CHOOSE==================*/
  #choose .wrapper {
    grid-template-columns: 44rem 1fr;
    grid-template-areas:
      'A B'
      'C C'
      'D E';
    gap: 1.6rem;
  }

  #choose hr {
    grid-area: C;
    margin-top: 0;
  }

  /*===============SUPPORT==================*/
  #support .wrapper {
    grid-template-columns: 58rem 1fr;
    grid-template-areas: 'A B';
    gap: 6.7rem;
  }

  #support .col-b {
    display: block;
  }

  /*==============SECOND WAY================*/
  #second-way {
    height: 28rem;
  }

  #second-way .wrapper {
    grid-template-columns: 58rem 1fr;
    grid-template-areas: 'A B';
    gap: 6.7rem;
  }

  #second-way .col-b {
    top: -0.5rem;
    right: 0;
    width: 43rem;
  }

  #second-way .mobile-text {
    display: none;
  }

  #second-way .desktop-text {
    display: block;
  }

  #second-way img {
    width: 30.8rem;
  }

  /*=============NEIGHBORHOODS==============*/
  #neighborhoods .wrapper {
    grid-template-columns: 70rem 1fr;
    grid-template-areas: 'A B';
    gap: 6.7rem;
  }

  #neighborhoods h4 {
    font-size: 3.2rem;
  }

  #neighborhoods .desktop-text {
    display: block;
    color: var(--brand-white);
  }

  /*================SIGN IT=================*/
  #sign-it .wrapper {
    grid-template-columns: 33rem 1fr;
    grid-template-areas: 'A B';
    gap: 6.7rem;
  }

  #sign-it .form-group {
    display: inline-block;
    width: 32.3rem;
    margin-right: 2rem;
  }

  #sign-it .form-group-2 {
    display: inline-block;
    width: 32.3rem;
    margin-right: 0;
  }

  #sign-it p {
    margin-top: 0;
  }

  /*=================COMPANY================*/
  #company img {
    position: relative;
    margin-left: 17%;
  }

  /*=================CONTACTS===============*/
  #contacts .wrapper {
    grid-template-columns: 33rem 1fr;
    grid-template-areas: 'A B';
    gap: 6.7rem;
  }

  #contacts .content {
    margin-top: 0;
  }

  /*==================FOOTER================*/
  footer {
    height: 23rem;
  }

  footer .wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  footer .col-a {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  footer .col-b {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  footer .col-c {
    display: flex;
    align-items: end;
    justify-content: end;
  }

  footer .logo {
    width: 23rem;
  }

  footer p {
    font-size: 1.4rem;
    margin-bottom: 0;
  }

  footer .ipv6 {
    margin-top: 2rem;
  }

  footer .ipv6-link {
    position: relative;
    margin-top: -8rem;
    right: 6.5rem;
  }

  footer .powered {
    width: 19rem;
  }

  /*==============WHATSAPP BTN==============*/
  .whatsapp a {
    background: url(../assets/img-atendimento.png);
    bottom: 2.5rem;
    right: 1.4rem;
    width: 16.9rem;
    height: 4.5rem;
  }
}