:root {
  /* Cores */
  --cor-primaria: #008441;
  --cor-secundaria: #B8D444;
  --cor-perigo: #D2001F;

  /* Cores de Texto */
  --texto-claro: #fff;
  --texto-escuro: #414141;

  /* Tamanhos de text */

  --text-min-size: 14px;
  --text-min-size-lh: 16px;

  --text-small: 18px;
  --text-small-lh: 24px;

  --text-medium: 26px;
  --text-medium-lh: 30px;

   --text-mediumlg: 36px;
  --text-mediumlg-lh: 42px;

  --text-large: 62px;
  --text-large-lh: 64px;

  --text-text: 18px;
  --text-text-lh: 26px;

  --text-button: 20px;

  /* Radius 100% */
  --radius-100: 101px;

  /* Gradientes */
  --gradiente-primario: linear-gradient(45deg, #007bff, #0056b3);
  --gradiente-secundario: linear-gradient(45deg, #6c757d, #5a6268);
  --gradiente-sucesso: linear-gradient(45deg, #28a745, #1e7e34);

  /* Sombras (Drop Shadows) */
  --shadow-element: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  --shadow-button: 0 3px 10px 0 rgba(0, 0, 0, 0.60);
  --shadow-boxes: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  --shadow-miniboxes: 0 4px 10px rgba(0, 0, 0, 0.25);
  --shadow-horadefechar: 0px 4px 10px 0px #00000040;

  /* Fontes e Títulos */
  --fonte-principal: 'Barlow', sans-serif;
}


.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,
legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
}

ol,ul {
  list-style: none;
}

blockquote,q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}


header {
  background: #fff;
  box-shadow: var(--shadow-element);
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  transition: all .2s ease;

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .buttons-header {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    transition: all .2s ease-in-out;

    a {
      text-decoration: none;
      width: fit-content;
      display: flex;
      align-items: center;
      padding: 14px 16px;

      span {
        font-size: 20px;
      }
    }

    a:first-child {
      box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
      color: var(--texto-escuro);
      border-radius: 10px;
      margin-right: 25px;
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
      position: relative;
      padding-left: 65px;

      &::before {
        content: " ";
        position: absolute;
        top: 50%;
        left: 10px;
        width: 46px;
        height: 46px;
        background: var(--cor-primaria) url(../images/icon-user.svg) center center no-repeat;
        border-radius: var(--radius-100);
        transform: translateY(-50%);
      }
    }
  }
}
.logo img {
  height: 112px;
  transition: all .2s ease-in-out;
}



.button-whatsapp {
  background: linear-gradient(180deg, #55D061 0%, #24B43B 100%);
  padding: 14px 28px 14px 36px !important;
  border-radius: var(--radius-100);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-button);
  align-items: center;

  &::before {
    content: " ";
    width: 28px;
    height: 28px;
    background: url(../images/whatsapp.svg) center center no-repeat;
    background-size: contain;
    margin-right: 10px;
  }
}
.button-cta {
  background: var(--cor-perigo);
  font-size: var(--text-button);
  font-weight: 700;
  color: #fff;
  padding: 12px 24px;
  border-radius: 51px;
  box-shadow: var(--shadow-button);
  text-decoration: none;
  display: block;
  width: fit-content;
  text-transform: uppercase;
}

.d-flex {
  display: flex;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-end {
  justify-content: flex-end;
}

.flex-column {
  flex-direction: column;
}
.align-items-center {
  align-items: center;
}
.align-items-end {
  align-items: flex-end;
}
.col-6 {
  width: 50%;
  position: relative;
}
strong {
  font-weight: 900;
}
.button-down {
  background: var(--cor-primaria);
  width: 55px;
  height: 55px;
  border-radius: 51px;
}

.hero {
    height: 70vh;
    background: url(../images/background-hero.jpg) 0 0 no-repeat;
    background-size: cover;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 112px;
    margin-top: 114px;

    .content {
      width: 45%;

      h1 {
        color: var(--cor-primaria);
        font-size: 62px;
        line-height: 64px;
        font-weight: 900;
        text-transform: uppercase;
      }

      p {
        border-radius: 8px;
        border: 2px solid var(--cor-secundaria);
        padding: 12px;
        max-width: 335px;
        justify-content: center;
        color: var(--texto-escuro);
        font-size: 20px;
        line-height: 24px;
        margin: 20px 0;
      }

      span {
        display: block;
        max-width: 300px;
        font-weight: 400;
        font-size: 16px;
        color: var(--texto-escuro);
        border-left: 3px solid var(--cor-secundaria);
        padding-left: 12px;
      }

      .button-cta { 
        margin-top: 24px;
      }
    }

  .buttons-hero {
    position: absolute;
    background-color: yellow;
    width: 100%;
    bottom: 0;
    height: 112px;
    

    &::before {
      content: " ";
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      transform: translateX(-50%);
      background: var(--cor-primaria);
      z-index: 0;
    }

    &::after {
      content: " ";
      width: 100%;
      height: 100%;
      position: absolute;
      right: 0;
      transform: translateX(50%);
      background: var(--cor-secundaria);
      z-index: 0;
      bottom: 0;
    }

    .container {
      height: 100%;
      
      a {
        font-size: 24px;
        font-weight: 700;
        color: rgb(255, 255, 255);
        text-decoration: none;
        display: flex;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
      }
    }

    .col-6 {
      justify-content: center;
      display: flex;
      background: var(--cor-primaria);
      align-items: center;
      position: relative;
      z-index: 3;

      a::before {
        content: " ";
        width: 80px;
        height: 80px;
        background: var(--cor-primaria) url(../images/icon-user.svg) center center no-repeat;
        background-size: 50%;
        display: block;
        position: absolute;
        top: -38px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 51px;
      }

    }
    .col-6+.col-6 {
      background: var(--cor-secundaria);

      &::before { 
        content: none;
      }
      a::before {
        background-image: url(../images/icon-business-plan.svg);
        background-color: var(--cor-secundaria);
        background-size: 65%;
      }
    }

  }
   
}
.bg-geometry {
  background: url(../images/bg-geometry.jpg) 0 0 no-repeat;
  background-size: cover;
  padding: 120px 0;

  .tarja {
    background: #fff;
    box-shadow: 0 0 18px -13px #000;;
    
    padding: 3rem 0;


    p {
      font-size: var(--text-small);
      line-height: var(--text-small-lh);
      position: relative;
      text-align: center;
      padding-bottom: 16px;
      max-width: 80%;
      
    }
    p::after {
      content: " ";
      width: 70%;
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      background: var(--cor-secundaria);
      height: 4px;
    }

    .brands {
      margin-top: 3rem;
    }

    .img-vazada {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }
  }
}
.plans {
  margin-top: 100px;

  .box-plan {
    margin: 60px 0 120px 0;
    position: relative;
    height: 545px;
    background: #fff;
    
    &:last-child {
      margin-bottom: 0;
    }

    &.person {
      background: var(--cor-primaria);
      &::after {
        content: url(../images/img_person.png);
        position: absolute;
        right: 5%;
        bottom: -3px;
      }
    }

    &.business {
      background: var(--cor-secundaria);
      &::after {
        content: url(../images/img_business.png);
        position: absolute;
        right: -30px;
        bottom: -2px;
        
        @media (max-width: 768px) {
          right: 0;
        }
      }
    }


    .content {
      width: 49%;
      background: #F9F9F9;
      position: absolute;
      height: 522px;
      border-radius: 16px;
      left: 5%;
      top: -13%;
      padding: 32px;
      justify-content: space-around;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-boxes);
    }

    h2 { 
      color: var(--texto-escuro);
      font-size: var(--text-medium);
      font-weight: var(--text-medium-lh);
      font-weight: 900;
      text-align: left;
      display: block;
    }
    
    h3 {
      font-size: 20px;
      color: #736d6d;
      position: relative;
      top: -4%;
    }
    p {
       font-size: var(--text-small);
       line-height: var(--text-small-lh);
       font-weight: 300;
       color: var(--texto-escuro);
    }

    ul {
      list-style: none;

    }
    ul li {
      font-size: var(--text-small);
      line-height: var(--text-small-lh);
      font-weight: 300;
      color: var(--texto-escuro);
      background: url(../images/icon-checked.svg) left center no-repeat;
      padding-left: 40px;
    }

    span {
      font-size: var(--text-small);
      line-height: var(--text-small-lh);
      font-weight: 700;
      color: var(--cor-primaria);
    }

  }
}
.features {
  padding: 60px 0;

  h2 {
    text-align: center;
  }

  .display-features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin: 40px 0;
    gap: 12px;

    span {
      background: #3C8E64;
      padding: 20px 12px 0 12px;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-miniboxes);
      border-radius: 8px;
      justify-content: center;
      align-items: center;
    }

    span p {
      font-size: var(--text-min-size);
      line-height: var(--text-min-size-lh);
      color: #fff;
      font-weight: 500;
      text-align: center;
    }

    img {
      width: 50px;
      margin-bottom: 12px;
    }
  }

  .button-whatsapp {
    display: flex;
    width: fit-content;
    margin: 0 auto;

  }
}
.plans,
.features,
.empresas {
  h2 {
    font-size: 48px;
    color: var(--texto-escuro);
    font-weight: 400;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

    strong {
      font-size: 62px;
      font-weight: 900;
      color: var(--cor-primaria);
      display: block;
    }

    .button-down {
      margin: 40px 0;
    }
  }
}
.why {
  height: 635px;
  background: url(../images/background-why.png) left center no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  position: relative;

  .container {
    padding-left: 32px;

  }

  h2 {
    font-size: var(--text-large);
    line-height: var(--text-large-lh);
    color: var(--cor-primaria);
    font-weight: 900;

  }

  p {
    margin: 24px 0;
    color: var(--texto-escuro);
    font-size: var(--text-text);
    line-height: var(--text-text-lh);
    border-left: 3px solid var(--cor-secundaria);
    padding-left: 12px;
    max-width: 370px;
  }

  .col-6 {
    padding-left: 2rem;
  }

  &::after {
    content: url(../images/selo_100online.png);
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 7%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.voce-conta {
  .container {
    background: #FFF;
    border-radius: 32px;
    box-shadow: var(--shadow-boxes);
    position: relative;
    padding: 32px 0 48px 0;
    top: -35px;
  }
  h2 {
    font-size: var(--text-large);
    line-height: var(--text-large-lh);
    color: var(--cor-primaria);
    text-align: center;
    font-weight: 900;
  }

  .grid-voce-conta {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px;
    gap: 24px;

    img {
      position: relative;

      
    }

    h3 {
      font-size: var(--text-button);
      color: var(--cor-primaria);
      font-weight: 900;
      margin: 12px 0;
    }
    .bg-ico {
      width: 74px;
      height: 74px;
      background: var(--cor-secundaria);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-100);
    }

    p {
      font-size: var(--text-text);
      line-height: var(--text-text-lh);
      color: var(--texto-escuro);

    }
  }



  .button-whatsapp {
    margin: 0 auto;
    display: flex;
    width: fit-content;
  }
}
.empresas {
  padding: 60px 0;

  .container {
    position: relative;
  }

  span {
    font-size: var(--text-small);
    color: var(--texto-escuro);
    display: block;
    text-align: center;
    position: relative;
    padding-bottom: 16px;

    &::after {
      content: " ";
      height: 4px;
      width: 107px;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      background: var(--cor-secundaria);
    }
  }
  .carousel-empresas {
    margin: 60px 0;

    .item {
      text-align: center;

      img {
        width: 110px !important;
        height: auto !important;
      }
    }
    
  }
  .custom-position {
    width: 110%;
    height: 40px;
    position: absolute;
    bottom: 125px;
    left: 50%;
    transform: translateX(-50%);

    .controls-glider {
      display: flex;
      justify-content: space-between;
    }

    .glider-prev, .glider-next {
      width: 40px;
      height: 40px;
      background-color: var(--cor-primaria);
      border-radius: var(--radius-100);
      position: relative;
      transition: all .2s ease;

      &::after {
        content: " ";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: url(../images/arrow.svg) center center no-repeat;
        width: 20px;
        height: 20px;
        background-size: contain;
      }
    }

    .glider-prev {
      transform: rotate(90deg);
      left: 0;
      &:hover {
        transform: rotate(90deg) scale(1.2);
      }
    }
    .glider-next {
      transform: rotate(270deg);
      right: 0;
      &:hover {
          transform: rotate(270deg) scale(1.2);
      }

    }
    
  }
}

.hora-de-fechar {

  .container {

    box-shadow: var(--shadow-horadefechar);
    border-radius: 32px;
    height: 460px;
    display: flex;
    align-items: center;
    background: #fff url(../images/img-hora-de-fechar.png) no-repeat;
    background-position: right;
    position: relative;
    top: 80px;
  }
  
  h2 { 
    color: var(--texto-escuro);
    font-size: var(--text-mediumlg);
    line-height: var(--text-mediumlg-lh);
    font-weight: 900;
    text-transform: uppercase;
  }
  ul li {
    font-size: var(--text-small);
    line-height: var(--text-small-lh);
    font-weight: 300;
    color: var(--texto-escuro);
    background: url(../images/icon-checked.svg) left center no-repeat;
    padding-left: 40px;
  }

  .col-6 {
    padding: 0 0 0 50px;
    height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 40%;
  }

  .mobile-only {
    display: none;
  }



}


footer {
  background-image: radial-gradient(#359771, #26704d);
  height: auto;
  padding: 110px 0 18px 0;

  .container {
    display: flex;
    align-items: flex-end;

    .socials {
      display: flex;
      justify-content: flex-end;

      a {
        background: var(--cor-secundaria);
        border-radius: var(--radius-100);
        margin-left: 15px;
        width: 40px;
        height: 40px;
        position: relative;
        
      }
      a img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
    }
  }

  .text-seo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;

    a {
       text-decoration: none;
       color: #fff;
       font-size: var(--text-text);
       margin: 6px 0;

       &:first-child {
        margin-bottom: 0;
       }
    }

    .underline-link {
      text-decoration: underline;
      font-size: 14px;
      margin: 0;
    }
  }
  
  p {
    font-size: var(--text-text);
    line-height: var(--text-text-lh);
    color: var(--texto-claro);
  }

  .blockfooter {
    margin: 32px auto;
    border-radius: 12px;
    background: #fff;
    align-items: center;

    p {
      color: var(--texto-escuro);
      font-size: 16px;
      line-height: 18px;

      strong {
        display: block;
      }
    }

    .col-3 {
      width: 25%;
      padding: 10px 32px 10px 16px;
      display: flex;
      gap: 7px;
      justify-content: center;
    }

    a {
      display: flex;
      gap: 5px;
      text-decoration: none;
      margin: 4px 0;
      width: 100%;
      justify-content: center;
    }
    a+a {
      margin: 0;
    }
  }

  .container:last-child {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;

    p { 
      font-size: var(--text-small);
      line-height: var(--text-small-lh);
      font-weight: 300v;
    }
  }
  
}

.socials-mobile {
  display: none;
}
.buttons-mobile {
  display: none;
}
/* Correções notebook */
@media (max-width: 1280px) {
  html {
    overflow-x: hidden;
  }

  .container {
    max-width: 980px;
  }

  header {
    .buttons-header {
      width: 70%;
    }
    .buttons-header a:first-child {
      height: 45px !important;
      font-size: 14px;
      padding: 0 12px 0 46px;
      justify-content: center;

      span {
        font-size: 14px;
      }

      &::before {
        width: 25px;
        height: 25px;
        background-size: 60%;
      }
    }
  }
  .hero {
    background-size: cover;
    height: 367px;
    background-position: 63% 0;

    .content { 
      h1 {
        font-size: 40px;
        line-height: 38px;
        font-weight: 700;
      }

      p {
        font-size: 17px;
        line-height: 18px;
      }
    }
  }

  .bg-geometry {
    padding: 60px 0;
    .tarja {
      p {
        margin: 0 auto;
      }
      .img-vazada {
        transform: translateY(-50%) scale(.7);
      }
    }
  }
  .empresas {
    .custom-position {
      width: 100%;
    }
  }
  .why {
    background-size: contain;
    background-position: -70% 0;

   

  }
  .plans {
    overflow: hidden;
  }

  .hora-de-fechar {
    .container {
      background-size: 60%;
      background-position: 120% 0;
    }
  }

  .button-whatsapp {
        padding: 0 12px !important;
        height: 45px;
        font-size: 14px;
        justify-content: center;
  }
}
/* ========================================= */
/* ESTILOS ESPECÍFICOS PARA DISPOSITIVOS MÓVEIS */
/* ========================================= */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  img {
    width: 100%;
  }

  footer img {
    width: auto;
  }
  .indexnet img {
    width: 60px;
  }

  .brands img {
      width: 497px;
    height: 197px;
    margin: 0 auto;
    display: block;
  }

  .buttons-mobile {
    display: flex;
    position: fixed;
    bottom: 0;
    background: #fff;
    width: 100%;
    height: 103px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 902;
    
    a {
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      width: 40%;
      height: 70px;
      font-size: 16px;
      text-decoration: none;
      font-weight: 600;
      gap: 7px;
      border-bottom: 3px solid;
      
      &:first-child {
        background: #585858;
        border-bottom-color: #2c2c2c ;
      }

      &:last-child {
        background: linear-gradient(180deg, #55D061 0%, #24B43B 100%);
        border-bottom-color: #135a1E;
      }


    }


  }
  /* ========================================= */
  /* Variáveis e Tipografia */
  /* ========================================= */
  :root {
    --text-min-size: 14px;
    --text-min-size-lh: 16px;
    --text-small: 16px;
    --text-small-lh: 20px;
    --text-medium: 20px;
    --text-medium-lh: 24px;
    --text-mediumlg: 28px;
    --text-mediumlg-lh: 32px;
    --text-large: 40px;
    --text-large-lh: 44px;
    --text-text: 16px;
    --text-text-lh: 22px;
    --text-button: 18px;
  }

  /* ========================================= */
  /* Layout e Elementos Gerais */
  /* ========================================= */
  .container {
    padding: 0 16px;
    width: calc(100% - 32px);
    max-width: 100%;
  }

  .col-6+.col-6 {
    margin-top: 20px;
  }

  .button-down {
    display: none;
  }

  /* ========================================= */
  /* Header */
  /* ========================================= */
  header {
    position: relative;
  }
  header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 2px 16px;

    img {
      width: 134px;
      height: auto;
    }
  }

  header .buttons-header {
    display: none;
  }

  header .buttons-header a:first-child {
    padding-left: 50px;
    margin-right: 15px;
  }

  header .buttons-header a:first-child::before {
    width: 35px;
    height: 35px;
    left: 5px;
  }

  /* ========================================= */
  /* Hero Section */
  /* ========================================= */
  .hero {
    height: 650px;
    padding-bottom: 0;
    background: url(../images/bg_hero_mobile.jpg) center bottom no-repeat;
    background-size: cover;
    justify-content: flex-start;
    margin-top: 0;
    background-position: 0 81%;
  }

  .hero .content {
    width: 100%;
    padding: 40px 0;
    width: 100%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero .content h1 {
    font-size: var(--text-large);
    line-height: var(--text-large-lh);

    br:first-child {
      display: none;
    }
    
  }

  .hero .content p {
    font-size: var(--text-small);
    line-height: var(--text-small-lh);
    margin: 15px 0;
  }

  .hero .content span {
    text-align: left;
  }

  .hero .content .button-cta {
    margin: 20px auto 0 auto;
  }

  .hero .buttons-hero {
    height: auto;
    background-color: transparent;
  }

  .hero .buttons-hero::before,
  .hero .buttons-hero::after {
    content: none;
  }

  .hero .buttons-hero .container {
    flex-direction: row;
    padding: 0 !important;
    width: 100%;
  }

  .hero .buttons-hero .col-6 {
    padding: 0;
    justify-content: center;
    position: relative;
  }

  .hero .buttons-hero .col-6 a::before {
    position: absolute;
    transform: none;
    width: 50px;
    height: 50px;
    background-size: 50%;
    left: 50%;
    transform: translateX(-50%) scale(.8);
    top: -28px;
  }

  .hero .buttons-hero .col-6 a {
    align-items: center;
    font-size: var(--text-small);
    text-align: center;
    justify-content: center;
    padding: 16px 12px;
  }

  .hero .buttons-hero .col-6+.col-6 {
    background: var(--cor-secundaria);
    margin-top: 0;
  }

  .hero .buttons-hero .col-6+.col-6 a::before {
    background-size: 60%;
    left: 50%;
   
    transform: translateX(-50%) scale(.8);
  }
  /* ========================================= */
  /* Gliders */
  /* ========================================= */
  


  /* ========================================= */
  /* Seção de Geometria */
  /* ========================================= */

  .bg-geometry {
    padding: 0 0 60px 0;
  }

  .bg-geometry .tarja {
    padding: 2rem 0 0;
  }
  .bg-geometry .tarja .col-6:first-child {
    width: 100%;
    box-shadow: 0;
  }
  .bg-geometry .tarja .col-6+.col-6 {
    width: calc(100% - 32px);
    padding: 0 16px 15px 16px;
  }

  .bg-geometry .tarja .container {
    flex-direction: column-reverse;
    padding: 0;
    width: 100%;
  }

  .bg-geometry .tarja .img-vazada {
    position: relative;
    transform: unset;
    bottom: -3px;
  }

  .bg-geometry .tarja p {
    max-width: 100%;
  }


  .bg-geometry .brands {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* ========================================= */
  /* Seção de Planos */
  /* ========================================= */
  .plans {
    margin-top: 4rem;
  }

  .plans .container {
    padding: 0;
    width: 100%;
  }

  .plans .box-plan {
    height: auto;
    padding-top: 28px;
    border-radius: 16px;
    margin-bottom: 180px;
  }
  
  .plans .box-plan {

    &.person::after {
      content: url(../images/img_person_mobile.png);
      bottom: unset;
      top: -146px;
      left: 50%;
      transform: translate(-50%);
      right: unset;
    }

    &.business::after {
      content: url(../images/img_business_mobile.png);
      bottom: unset;
      top: -136px;
      left: 50%;
      transform: translate(-50%);
      right: unset;
    }
  }
  


  .plans .box-plan .content {
    width: auto;
    height: auto;
    padding: 40px 28px;
    margin: 0 12px;
    gap: 17px;
    top: 97px;
    position: relative;
    left: 0;
  }

  .plans .box-plan {
    margin: 250px 0 180px 0;
  }

  .plans, .features, .empresas {

    
    h2 {
      font-size: 24px;
      strong {
        font-size: 32px;
      }
    }
  }

  

  .plans .box-plan h2 {
    font-size: var(--text-medium);
  }

  .plans .box-plan ul li {
    padding-left: 37px;
    margin: 5px 0 5px -10px;
  }

  .plans .box-plan .button-cta {
    font-size: 16px;
    text-align: center;
    width: 215px;
    margin: 0 auto;
    padding: 12px 10px;
  }
  
  /* ========================================= */
  /* Seção de Vantagens */
  /* ========================================= */
  .features {
    padding: 90px 0 70px 0;
  }
  
  .features h2 {
    font-size: 24px;
  }

  .features h2 strong {
    font-size: 32px;
  }

  .features .display-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 46px 0 30px 0;
  }

  .features .display-features span {
    padding: 0 8px;
    height: 150px;
  }

  .features .display-features img {
    width: 40px;
  }
  
  /* ========================================= */
  /* Seção "Por que?" */
  /* ========================================= */
  .why {
    height: auto;
    background-image: none;
    padding: 40px 0;
    background-image: url(../images/background-why-mobile.png);
    background-size: inherit;
    background-position: 0% center;
  }

  .why .container {
    padding: 0 16px;
  }

  .why h2 {
    font-size: var(--text-mediumlg);
    line-height: var(--text-mediumlg-lh);
  }

  .why p {
    font-size: var(--text-text);
    line-height: var(--text-text-lh);
    padding-left: 12px;
    
    
    max-width: 100%;
  }

  .why .col-6 {
    padding-left: 0;
    width: 60%;
  }

  .why::after {
    top: -10%;
    right: 0;
    left: unset;
    transform: scale(.6);
  }
  
  /* ========================================= */
  /* Seção "Você Conta" */
  /* ========================================= */
  .voce-conta .container {
    border-radius: 0;
    top: 0;
    box-shadow: none;
    width: 100%;
    padding: 32px 0;
  }

  .voce-conta h2 {
    font-size: var(--text-mediumlg);
    line-height: var(--text-mediumlg-lh);
    text-align: center;
  }

  .voce-conta .grid-voce-conta {
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    padding: 12px 16px;
    row-gap: 17px;
    margin: 30px 0 12px 0;

    > div {
      display: flex;
      align-items: center;
      flex-direction: column;
      text-align: center;
    }
    h3 {
      font-size: var(--text-small);

    }
    p { 
      font-size: 14px;
      line-height: 16px;
    }
  }

  .voce-conta .grid-voce-conta .item {
    text-align: center;
  }

  .voce-conta .grid-voce-conta .bg-ico {

    img {
      width: auto!important;
    }
  }
  
  /* ========================================= */
  /* Seção de Empresas */
  /* ========================================= */

  .empresas {
    padding: 65hpx 0;
  }

  .empresas h2 strong {
    font-size: var(--text-large);
  }

  .empresas .carousel-empresas {
    margin: 30px 0;
  }

  .empresas .custom-position {
    bottom: 0;
    position: relative;
    margin-top: 20px;
    top: -90px;
    width: 105%;

    .glider-prev, .glider-next {

      width: 30px;
      height: 30px;

      &::after {
        width: 16px;
        height: 16px;
      }
    }
  }

  .voce-conta {
    box-shadow: var(--shadow-boxes);
    border-radius: 28px;
  }
  
  /* ========================================= */
  /* Seção "Hora de Fechar" */
  /* ========================================= */
  .hora-de-fechar .container {
    flex-direction: column;
    height: auto;
    padding: 30px 0 0 0;
    top: 0;
    border-radius: 0;
    background: 0;
    width: 100%;
    
  }

  .hora-de-fechar h2 {
    font-size: var(--text-medium);
    line-height: var(--text-medium-lh);
    
  }
  
  .hora-de-fechar ul {
    margin: 20px 0;
  }
  
  .hora-de-fechar ul li {
    font-size: var(--text-text);
    line-height: var(--text-text-lh);
    text-align: left;
    background-position: center left;
  }

  .hora-de-fechar .col-6 {
    height: auto;
    max-width: 100%;
    width: calc(100% - 32px);
    gap: 15px;
    padding: 0 16px;
  }
  
  .hora-de-fechar .button-cta {
    margin: 0 auto;
    position: relative;
    top: 15px;
  }
  .hora-de-fechar .mobile-only { 
    display: flex;
    background: #fff url(../images/img-hora-de-fechar.png) center center no-repeat;
    height: 310px;
    width: 100%;
    background-size: 105%;
}

  .button-whatsapp {
    padding: 14px 28px;
    font-size: 14px;
    align-items: center;
  }
  
  /* ========================================= */
  /* Footer */
  /* ========================================= */
  footer {
    padding: 0 0 120px 0;

    .col-6 {
      width: 100%;
    }
  }

  footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .socials {
    display: none !important;
    
    a {
      margin: 0 10px !important;
    }
  }

  footer .socials-mobile {
    
    display: flex;
    gap: 12px;
    margin: 22px 0;

    a {
      background: var(--cor-secundaria);
      border-radius: var(--radius-100);
      width: 40px;
      height: 40px;
      position: relative;
      
    }
    a img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
  }
  footer .blockfooter {
    flex-direction: column;
    margin: 20px auto;
    background: 0;

    img {
      display: none;
    }
    p {
      color: #fff;
      position: relative;
      font-weight: 300;
      &.iconleft_whatsapp {
        strong {
          background: url(../images/icon_whatsapp.svg) left center no-repeat;
          padding-left: 24px;
        }
      }
      &.iconleft_horario {
        strong {
          background: url(../images/icon_hour.svg) left center no-repeat;
          padding-left: 24px;
        }
      }
      &.iconleft_email {
        strong {
          background: url(../images/icon_email.svg) left center no-repeat;
          padding-left: 28px;
        }
      }
      &.iconleft_endereco {
        strong {
          background: url(../images/icon_localizacao.svg) left center no-repeat;
          padding-left: 24px;
        }
      }
      strong {
        color: var(--cor-secundaria);
        width: fit-content;
        margin: 0 auto;
        background-size: contain;
        font-weight: 500;
        margin-bottom: 8px;
      }
    }

  }

  footer .blockfooter .col-3 {
    width: 100%;
    padding: 10px 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  footer .container:last-child p {
    font-size: var(--text-min-size);
    text-align: center;
  }

  footer .text-seo {
    align-items: center;
  }
}


/* fix background for 1440px */
@media screen and (min-width: 769px) and (max-width: 1800px) {
  .why {
    background-image: url(../images/background-why-1440.png);
  }
}
@media (max-width: 1800px) {

}

@media (max-width: 575px) {
  footer {
    padding-bottom: 120px;
  }
  .brands img {
    width: 100%;
  }
  .features .display-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
}