/* GERAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%; /* 1rem = 10px */
  --nav-height: 78px;
  --nav-height-dt: 115px;

  /* Background */
  --w: #fff;
  --b: #000;
  --bg: #E1EAF3;
  --bg-nav: #A819ED;

  /* Texto */
  --t: #1F1635;
  --p: #524670;
  --pcolor: #753DF9;

  /* plano */
  --bg-individual: #F3F7FA;
  --bg-corporacao: #1F1635;
  --planocolor: #723EF9;
  --planosmall: #8C869B;
  --linha: #D5E0E9;
  --linha-dark: #47386B;

  --gradiente-efeito1: radial-gradient(50% 50% at 50% 50%, rgba(246, 62, 83, 0.10) 0%, rgba(217, 217, 217, 0.00) 100%);
  --gradiente-efeito2: radial-gradient(50% 50% at 50% 50%, rgba(168, 25, 237, 0.10) 0%, rgba(217, 217, 217, 0.00) 100%);
}


html, body {
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
}

h1 {
  color: var(-t);
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 35px; 
}

h2{
  color: var(--t);
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 28px;
}

h3{
  color: var(--b);
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 20px;
}

h4 {
  color: var(--p);
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
}

h5 {
  color: var(--planosmall);
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 400;
}

h6 {
  color: var(--p);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 300;
}

p{
  color: var(--p);
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

span {
  font-weight: 500;
  color: var(--pcolor);
}

.wrapper {
  width: min(50rem, 100%);
  margin-inline: auto;
}

.button {
  color: white;
  text-decoration: none;
  background: linear-gradient(91deg, #A819ED 0%, #723EF9 99.84%);
  border-radius: 7px;

  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 15px 27px;
  display: inline-block;
}

.radial {
  position: absolute;

  justify-content: center;
  align-items: center;
}

.efeito {
  width: 460px;
  height: 460px;
  position: absolute;
  border-radius: 100%;
  z-index: -1;
}

.posi1 {
  background: var(--gradiente-efeito1);
  left: -215px;
  top: 125px;
}

.posi2{
  background: var(--gradiente-efeito2);
  left: -340px;
  top: 20px;
}

br.dt {
  display: none;
}

/*--------------- NAVIGATION ---------------*/

.logo svg{
  margin-top: 8px;
  height: 18px;
  width: 73px;
}

nav {
  display: flex;
  height: var(--nav-height);
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 100;
}

nav .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding-inline: 3rem;
}

nav button {
  background: none;
  border: none;
  cursor: pointer;
}

nav .menu,
nav .close-menu {
  position: fixed;
}

ul {
  list-style: none;
  max-width: 500px;
  justify-content: center;
}

/*--------------- MENU EXPANDED ---------------*/

body.menu-expanded {
  overflow: hidden;
}

body.menu-expanded > :not(nav) {
  visibility: hidden;
  display: none;
}

.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;
}

body.menu-expanded .menu {
  top: 0;
  left: 0;
  background: var(--bg-nav);
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
}

.menu .container {
  width: 560px;
  position: relative;
}

.menu ul:nth-child(1) {
  display: flex;
  flex-direction: column;

  margin-left: 30px;
  margin-top: 32px;
  gap: 45px;

  font-family: Outfit, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;

  position: absolute;
}

.menu ul li a {
  color: white;
  text-decoration: none;
}

.menu .button {
  color: var(--w);
  text-decoration: none;
  background: linear-gradient(91deg, #A819ED 0%, #723EF9 99.84%);
  border-radius: 7px;

  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 16px;

  position: absolute;
  bottom: 50px;
  left: 30px;
  right: 30px;
}

body.menu-expanded button {
  position: relative;
  z-index: 100;
}

/*--------------- HOME ---------------*/

#home {
  padding-top: 120px;
  margin-bottom: 82px;
}

#home h2 {
  max-width: 350px;
}

#home p {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

#home .wrapper {
  display: flex;
  flex-direction: column;
  padding-inline: 3rem;
  align-items: center;

  position: relative;
}

.decor {
  position: absolute;
}

.elemento1 {
  position: absolute;
  display: none;
}

.elemento2 svg {
  position: absolute;
  width: 30px;
  height: 55px;

  right: 140px;
  top: 180px
}

.elemento3 svg{
  position: absolute;
  width: 55px;
  height: 30px;

  left: 100px;
  top: 285px
}

.elemento4 svg{
  position: absolute;
  width: 30px;
  height: 55px;

  left: 173px;
  top: 210px
}

#home .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

#home .texto {
  margin-top: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

#home .texto p {
  text-align: left;
  max-width: 368px;
}

#home.texto h2 {
  max-width: 334px;
}

#home .img {
  max-width: 670px;
}

#home .img img{
  width: 100%;
}

/*--------------- PLATAFORMA ---------------*/

#plataforma .bg{
  position: absolute;
  width: 100vw;
  height: 880px;
  background-color: var(--w);
}

#plataforma .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 1rem;

  padding-top: 60px;
  position: relative;
  width: 100%;
}

#plataforma h2, #plataforma p {
  text-align: center;
}

#plataforma p {
  margin-top: 8px;
  margin-bottom: 40px;
}

#plataforma .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

#plataforma .card {
  max-width: 188px;
  height: 240px;

  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 40px;
  background: #F3F7FA;
}

#plataforma .card img {
  padding-bottom: 4px;
}

#plataforma .card h3,
#plataforma .card h4 {
  width: 140px;
}

#plataforma .tela {
  display: flex;
  flex-direction: column;
  width: 100%;
  
  justify-content: center;
  align-items: center;
  position: relative;
}

#plataforma .img {
  margin-top: 42px;
  max-width: 504px;
  display: flex;
  justify-content: center;
}

#plataforma .img img{
  max-width: 504px;
}

#plataforma .lista {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: absolute;
  top: 323px;
}

#plataforma .item {
  display: flex;
  min-height: 38px;
}

#plataforma .content {
  display: flex;
  gap: 8px;

  background-color: var(--pcolor);
  border-radius: 20px;

  align-items: center;
  padding-inline: 7px;
}

#plataforma .content h3 {
  color: var(--w);
  padding-bottom: 2px;
}

/*--------------- DIFERENCIAL ---------------*/

#diferencial .wrapper {
  display: flex;
  flex-direction: column;
  padding-inline: 2rem;
  align-items: center;

  padding-top: 25px;
  position: relative;

  margin-top: 160px;
}

#diferencial h2 {
  text-align: center;
  margin-bottom: 35px;
}

#diferencial .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;

  width: 100%;
}

#diferencial .img {
  position: relative;
  left: -65px;
}

#diferencial .img img{
  width: 517px;
}

#diferencial .elemento2 {
  display: none;
}

#diferencial .posi1 {
  /* background: var(--p); */
  left: -150px;
  top: 855px;
}

#diferencial .posi2{
  /* background: var(--p); */
  left: -280px;
  top: 730px;
}

#diferencial .texto {
  display: flex;
  flex-direction: column;
  margin-top: 52px;
  width: 100%;
}

#diferencial ul {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin-top: 24px;
  margin-bottom: 26px;
}

#diferencial li {
  color: var(--t);
  font-size: 1.6rem;
  font-weight: 400;
}

#diferencial .icon {
  display: flex; 
  gap: 15px;
  height: 20px;
}

#diferencial .btn {
  margin-top: 28px;
  margin-bottom: 75px;
  align-self: flex-start;
}

#diferencial .cards {
  display: flex;
  flex-direction: column;
  max-width: 378px;
}

#diferencial .cards .card {
  display: flex;
  flex-direction: column;
}

#diferencial .cards .card h2 {
  color: var(--pcolor);
  font-size: 2rem;
  line-height: 35px;

  text-align: start;
  margin-bottom: 12px;
}

#diferencial .cards .img {
  position: relative;
  left: -10px;
  margin-top: 20px;
  margin-bottom: 48px;
  justify-content: start;
  align-items: start;
}

#diferencial .cards .card .img img{
  max-width: 100%;
}

/*--------------- PLANOS ---------------*/

#planos {
  margin-top: 32px;
}

#planos .bg{
  position: absolute;
  width: 100vw;
  height: 1855px;
  background-color: var(--w);
}

#planos .wrapper {
  display: flex;
  flex-direction: column;
  padding-inline: 2rem;
  align-items: center;

  padding-top: 58px;
  position: relative;
}

#planos .wrapper p {
  margin-top: 9px;
  margin-bottom: 30px;
}

#planos .planos {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;

  align-items: center;
}

#planos .planos .preco {
  display: flex;
  justify-content: center;
  margin-bottom: 51px;
}

#planos .planos h3 {
  font-size: 1.9rem;
  line-height: 24px;

  margin-top: 48px;
  margin-bottom: 19px;
}

#planos .planos h4 {
  color: var(--p);
  font-weight: 400;
  line-height: 20px;
}

/*----- individual -----*/

#planos .individual {
  width: 100%;
  max-width: 323px;
  height: 437px;
  border-radius: 40px;
  background: var(--bg-individual);

  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}

#planos .individual::after {
  content: "";
  width: 209px;
  height: 1px;
  background-color: var(--linha);

  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  top: 165px;
}

#planos .individual .sim {
  color: var(--t);
  font-size: 20px;
  font-weight: 300;
  width: 26px;

  align-self: center;
}

#planos .individual .valor {
  color: var(--t);
  font-size: 60px;
  font-weight: 300;
  line-height: 49px;
  width: 60px;
}

#planos .individual .mes {
  color: var(--p);
  font-size: 16px;
  font-weight: 300;
  align-self: flex-end;
}

#planos .individual h4 {
  margin-bottom: 30px;
}

#planos .individual .button {
  margin-top: 37px;

  color: var(--planocolor);
  font-size: 1.6rem;
  font-weight: 500;

  max-width: 180px;

  border: 1px solid var(--planocolor);  
  background: var(--bg-individual);
}

/*----- pequeno / medio -----*/

#planos .pequenomedio {
  width: 100%;
  max-width: 323px;
  height: 545px;
  border-radius: 40px;
  background: var(--w);
  border: 1px solid var(--linha);

  margin-top: 45px;
  margin-bottom: 30px;

  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}

#planos .pequenomedio::after {
  content: "";
  width: 209px;
  height: 1px;
  background-color: var(--linha);

  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  top: 165px;
}

#planos .pequenomedio .sim {
  color: var(--planocolor);
  font-size: 20px;
  font-weight: 300;
  width: 26px;

  align-self: center;
}

#planos .pequenomedio .valor {
  color: var(--planocolor);
  font-size: 60px;
  font-weight: 300;
  line-height: 49px;
  width: 95px;
}

#planos .pequenomedio .mes {
  color: var(--p);
  font-size: 16px;
  font-weight: 300;
  align-self: flex-end;
}

#planos .pequenomedio h4 {
  margin-bottom: 26px;
}

#planos .pequenomedio h5 {
  margin-top: 20px;
}

#planos .pequenomedio h6 {
  color: var(--w);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 24px;
  
  padding: 6px 36px;
  border-radius: 40px;
  background-color: var(--planocolor);

  position: absolute;
  top: -16px;
}

#planos .pequenomedio .button {
  margin-top: 37px;

  font-size: 1.6rem;
  font-weight: 500;

  max-width: 180px;
}

/*----- corporacao -----*/

#planos .corporacao {
  width: 100%;
  height: 545px;
  max-width: 323px;
  border-radius: 40px;
  background: var(--bg-corporacao);

  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}

#planos .corporacao::after {
  content: "";
  width: 209px;
  height: 1px;
  background-color: var(--linha-dark);

  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  top: 165px;
}

#planos .corporacao h3 {
  color: var(--w);
}

#planos .corporacao .sim {
  color: var(--planocolor);
  font-size: 6rem;
  font-weight: 300;
  line-height: 49px;
  width: 38px;

  align-self: center;
}

#planos .corporacao .valor {
  color: var(--w);
  font-size: 6rem;
  font-weight: 300;
  line-height: 49px;
  width: 60px;
}

#planos .corporacao .mes {
  color: var(--planosmall);
  font-size: 16px;
  font-weight: 300;
  align-self: flex-end;
}

#planos .corporacao h4 {
  margin-bottom: 20px;
  color: var(--w);
}

#planos .corporacao .button {
  margin-top: 28px;

  font-size: 1.6rem;
  font-weight: 500;

  max-width: 185px;
  background: var(--bg-corporacao);
  border: 1px solid var(--planocolor);
}

/*--------------- CONTATO ---------------*/

#contato {
  margin-top: 77px;
}

#contato .wrapper {
  display: flex;
  flex-direction: column;
  padding-inline: 2rem;

  padding-top: 65px;
  position: relative;
}

#contato .wrapper h2 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 45px;
  margin-bottom: 18px;
}

#contato .wrapper h6 {
  color: var(--t);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 24px;

  margin-top: 24px;
  margin-bottom: 38px;
}

#contato form {
  display: flex;
  flex-direction: column;
}

#contato .form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

#contato label {
  color: var(--t);
  font-size: 14px;
  font-weight: 400;
}

#contato input,
#contato textarea {
  min-height: 50px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.50);

  padding-left: 15px;
}

#contato textarea {
  padding-top: 15px;
}

#contato input:focus,
#contato textarea:focus {
  border-color: var(--pcolor);
}

#contato button {
  border: none;
  margin-top: 10px;
  align-self: flex-end;
}

/*--------------- FOOTER ---------------*/

footer .wrapper {
  display: flex;
  flex-direction: column;
  padding-inline: 2rem;

  margin-top: 78px;
  margin-bottom: 46px;
  
  justify-content: center;
  align-items: center;
}

footer svg {
  width: 82px;
  height: 20px;
}

footer h2 {
  color: var(--b);
  font-size: 1.4rem;
}

/*--------------- DESKTOP ---------------*/

@media (min-width: 1024px) {
  /* GERAL */

  body {
    overflow: auto;
  }

  .wrapper {
    width: min(154rem, 100%);
  }

  .button a{
    color: white;
    text-decoration: none;
    background: linear-gradient(91deg, #A819ED 0%, #723EF9 99.84%);
    border-radius: 7px;
  
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    padding: 15px 28px;
    display: inline-block;
  }

  h1 {
    font-size: 6.5rem;
    line-height: 60px; 
  }
  
  h2{
    font-size: 3rem;
    line-height: 35px;
  }
  
  h3{
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 24px;
  }
  
  h4 {
    font-size: 1.6rem;
    font-weight: 300;
  }
  
  h5 {
    font-size: 12px;
    font-weight: 400;
  }
  
  h6 {
    font-size: 12px;
    font-weight: 300;
  }
  
  p{
    font-size: 2rem;
    line-height: auto;
  }

  .efeito {
    width: 1118px;
    height: 1118px;
  }
  
  .posi1 {
    background: var(--gradiente-efeito1);
    left: -550px;
    top: 10px;
  }
  
  .posi2{
    background: var(--gradiente-efeito2);
    left: -865px;
    top: -195px;
  }
  
  br.tf {
    display: none;
  }

  br.dt {
    display: initial;
  }
  

  /*--------------- NAVIGATION DESKTOP ---------------*/

  /* reset */
  nav#nav .wrapper * {
    margin: 0;
    padding: 0;
    visibility: initial;
    display: initial;
    opacity: initial;
    flex-direction: initial;
    position: initial;
    font-size: initial;
    font-weight: initial;
    transform: initial;
    background: initial;
    background-color: initial;
    filter: initial;
  }

  nav {
    height: var(--nav-height-dt);
  }

  nav#nav .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height-dt);
    padding-inline: 30px;
  }

  nav#nav .logo svg{
    margin-top: 8px;
    height: 25px;
    width: 104px;
  }
  
  nav#nav .container {
    display: flex;
    gap: 34px;
    flex-shrink: 0;
    width: 630px;
  }

  nav#nav .open-menu,
  nav#nav .close-menu {
    display: none;
  }

  nav#nav .menu {
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  nav#nav .menu ul:nth-child(1) {
    display: flex;
    flex-shrink: 0;
    gap: 34px;
    justify-content: center;
    align-items: center;
  }

  nav#nav .menu ul {
    list-style: none;
    max-width: none;
    justify-content: center;
  }

  nav#nav .menu ul li a{
    color: var(--t);
  }

  nav#nav .menu .button{
    color: white;
    text-decoration: none;
    background: linear-gradient(91deg, #A819ED 0%, #723EF9 99.84%);
    border-radius: 7px;
    flex-shrink: 0;

  
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    padding: 15px 28px;
  }

  /*--------------- HOME ---------------*/

  #home {
    padding-top: 155px;
    margin-bottom: 110px;
  }
  
  #home p {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 47px;
  }
  
  #home .wrapper {
    display: flex;
    flex-direction: column;
    padding-inline: 3rem;
    align-items: center;
  
    position: relative;
  }
  
  .elemento1 {
    display: initial;

    right: 650px;
    top: 140px
  }
  
  .elemento2 svg {
    width: initial;
    height: initial;
  
    right: 480px;
    top: 270px
  }
  
  .elemento3 svg{
    width: initial;
    height: initial;
  
    top: 320px;
    left: 550px;
  }
  
  .elemento4 svg{
    width: initial;
    height: initial;
  
    top: 160px;
    left: 745px;
  }

  #home .container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

    margin-top: 147px;
  }

  #home .texto {
    margin-top: 0px;
    width: 555px;
  }
  
  #home .texto p {
    text-align: left;
    max-width: 555px;
  }
  
  #home .texto h2 {
    max-width: 526px;
  }

  #home .img {
    max-width: 670px;
  }

  #home .img img{
    width: 100%;
  }
  
  /*--------------- PLATAFORMA ---------------*/

#plataforma .bg{
  height: 924px;
}

#plataforma .wrapper {
  padding-top: 107px;
}

#plataforma p {
  margin-top: 19px;
  margin-bottom: 45px;
}

#plataforma .cards {
  gap: 20px;
}

#plataforma .card {
  max-width: 254px;
  height: 311px;

  gap: 14px;
}

#plataforma .card img {
  padding-bottom: 8px;
}

#plataforma .card h3 {
  width: 180px;
}

#plataforma .card h4 {
  width: 210px;
}

#plataforma .img {
  margin-top: 100px;
  width: 100%;
  justify-content: flex-end;
}

#plataforma .img img{
  max-width: 863px;
}

#plataforma .lista {
  gap: 10px;
  top: 263px;
  left: 65vw;
  transform: translateX(-40%);
  width: 570px;
}

#plataforma .lista img {
  width: 18px;
  height: 18px;
}

#plataforma .item {
  min-height: 55px;
}

#plataforma .content {
  gap: 11px;
  border-radius: 40px;
  padding-inline: 22px;
}

#plataforma .content h3 {
  color: var(--w);
  padding-bottom: 2px;
}

/*--------------- DIFERENCIAL ---------------*/

#diferencial .wrapper {
  padding-inline: 3rem;
  padding-top: 110px;
  margin-top: 20px;
  margin-bottom: 110px;
}

#diferencial h2 {
  margin-bottom: 42px;
}

#diferencial .container {
  flex-direction: row;
  gap: 60px;
  align-items: center;
  left: -15px;

  margin-bottom: 207px;
}

#diferencial .container .img {
  position: relative;
  left: 0px;
  width: 100%;
  max-width: 776px;
}

#diferencial .container .img img{
  width: 100%;
}

#diferencial .elemento2 {
  display: initial;
  position: absolute;
  right: 268px;
  top: -180px;
}

#diferencial .posi1 {
  /* background: var(--p); */
  left: -330px;
  top: 288px;
}

#diferencial .posi2{
  /* background: var(--p); */
  left: -615px;
  top: 40px;
}

#diferencial .texto {
  margin-top: 0px;
  max-width: 480px;
}

#diferencial ul {
  gap: 18px;
  margin-top: 24px;
  margin-bottom: 26px;
}

#diferencial li {
  font-size: 2rem;
  display: flex;
  align-items: center;
  line-height: 15px;
}

#diferencial .icon {
  display: flex; 
  gap: 18px;
  height: 20px;
}

#diferencial .btn {
  margin-top: 43px;
  margin-bottom: 0px;
}

#diferencial .cards {
  display: flex;
  flex-direction: column;
  max-width: 962px;
  gap: 85px;

  margin-top: 10px;
}

#diferencial .cards .card {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#diferencial .cards .card:nth-child(2n) {
  flex-direction: row-reverse;
}

#diferencial .cards .card:nth-child(1) {
  gap: 68px;
}

#diferencial .cards .card:nth-child(2) {
  gap: 21px;
}

#diferencial .cards .card:nth-child(3) {
  gap: 51px;
}

#diferencial .cards .card:nth-child(4) {
  gap: 99px;
  position: relative;
  left: -15px;
}

#diferencial .cards .card:nth-child(5) {
  gap: 60px;
}

#diferencial .cards .card h2 {
  color: var(--pcolor);
  font-size: 2rem;
  line-height: 35px;

  text-align: start;
  margin-bottom: 12px;
}

#diferencial .cards .content {
  display: flex;
  flex-direction: column;
}

#diferencial .cards .img {
  position: relative;
  left: -10px;
  margin-top: 0px;
  margin-bottom: 0px;
  justify-content: start;
  align-items: start;

  max-width: 100%;
}

#diferencial .cards .card .img img{
  width: 100%;
}

/*--------------- PLANOS ---------------*/

#planos .bg{
  height: 987px;
}

#planos .wrapper {
  padding-inline: 3rem;
  padding-top: 107px;
}

#planos .wrapper p {
  margin-top: 19px;
  margin-bottom: 75px;
}

#planos .planos {
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}

#planos .planos .preco {
  display: flex;
  justify-content: center;
  margin-bottom: 51px;
}

#planos .planos h3 {
  font-size: 1.9rem;
  line-height: 24px;

  margin-top: 48px;
  margin-bottom: 19px;
}

#planos .planos h4 {
  color: var(--p);
  font-weight: 400;
  line-height: 20px;
}

/*----- individual -----*/

#planos .individual {
  height: 545px;
}

#planos .individual h4 {
  margin-bottom: 26px;
}

#planos .individual h5 {
  margin-top: 113px;
}

#planos .individual .button {
  margin-top: 46px;
  height: 50px;
}

/*----- pequeno / medio -----*/

#planos .pequenomedio {
  top: -29px;
  transform: translateY(4%);
}

#planos .pequenomedio h4 {
  margin-bottom: 26px;
}

#planos .pequenomedio h5 {
  margin-top: 20px;
}

#planos .pequenomedio .button {
  margin-top: 46px;
}

/*----- corporacao -----*/

#planos .corporacao h4 {
  margin-bottom: 20px;
  color: var(--w);
}

#planos .corporacao .button {
  margin-top: 46px;
  height: 50px;
}

/*--------------- CONTATO ---------------*/

#contato {
  margin-top: 157px;
}

#contato .wrapper {
  flex-direction: row;
  padding-inline: 3rem;

  padding-top: 107px;
  width: 100%;
  justify-content: center;

  gap: 125px;
}

#contato .wrapper h2 {
  font-size: 5rem;
  line-height: 50px;
  margin-bottom: 22px;
}

#contato .wrapper h6 {
  font-size: 2rem;
  line-height: auto;

  margin-top: 48px;
}

#contato form {
  min-width: 372px;
  gap: 20px;
}

/*--------------- FOOTER ---------------*/

footer .wrapper {
  padding-inline: 3rem;

  margin-top: 97px;
  margin-bottom: 114px;
}

footer svg {
  width: 104px;
  height: 25px;
}

footer h2 {
  color: var(--b);
  font-size: 2rem;
}
}