@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
:root {
  --preto: #4d4d4d;
  --branco: #fff;
  --laranja: #ff7e00;
  --cinzaclaro: #dddddd;
  --cinzaescuro: #666666;
  --verde: #2cb742;    
}
* {font-family: 'Open Sans', sans-serif; font-weight: 400; margin: 0; padding: 0; box-sizing:border-box;}
body {background: #fff;  font-size: 20px; overflow-x: hidden; position: unset!important; color: var(--preto);}
p {line-height: 28px; font-size: 20px;}
a,button, input, textarea {-webkit-transition: .3s;-o-transition: .3s;transition: .3s; outline: 0; color: inherit;}
button {cursor: pointer;}
cite {font-style: normal;}
a, a:hover {text-decoration: none; color: inherit;}
a:focus, button:focus, input:focus, textarea:focus {outline: 0; text-decoration: none;}
strong {font-weight: 600}
em {font-style: normal; color: var(--laranja);}
ul {-webkit-padding-start:0; -moz-padding-start:0; margin: 0;}
li {list-style-type: none;}
img {max-width: 100%;}
section{padding: 75px 0; position: relative;}
section:before {opacity: 0; transition: .6s; transform: scale(1.5); content: ''; max-width: 1310px; margin: 0 auto; position: absolute; font-size: 116px; color: var(--cinzaclaro); -webkit-text-fill-color: transparent; -webkit-text-stroke: 1px; text-transform: uppercase; font-weight: 700; text-align: center; left: 0; right: 0; top: -25px;}
.grid {max-width: 1360px; width: 100%; margin: 0 auto; padding: 0 30px; display: grid; position: relative;}
h3 {font-size: 48px;}
h4 {font-size: 28px; margin-bottom: 60px}
section.ativo:before {
  transform: scale(1);
  opacity: 1;
}

header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  background-color: #fff;
  transition: .3s;
  z-index: 2;
}
header.fixo {
  padding: 0;
  box-shadow: 0 0 25px 10px rgb(0 0 0 / 10%);  
  border-bottom: 1px solid var(--cinzaclaro);
}
header.fixo .grid > a {
  transform: scale(.6) translate(-73px, 0px);  
}
header .grid {
  grid-template-columns: max-content 1fr max-content;
}
header .grid > a {
  position: relative;
  width: max-content;  
}
header .grid > a:hover:before {
  background-position: -68px;
  border-radius: 10px;  
} 
header ul {
  display: flex;
  justify-content: center;
  gap: 30px;  
  align-items: center;  
}
header ul li a:hover {
  color: var(--laranja);
}
header ul li:first-child {
  display: none;
}
header ul li:first-child a {
  padding-left: 80px;
  position: relative;
  display: table;
  margin: 0 auto 35px;
}
header ul li:first-child a:before {
    content: '';
    position: absolute;
    background-image: url(../img/mi.png);
    width: 70px;
    height: 65px;
    left: 0;
    top: -8px;
    transition: 0.3s;
}
header ul li:last-child {
  display: none;
  margin-top: 50px;
}
header ul li:last-child a {
  border: 2px solid var(--verde);
  padding: 20px 40px;
  border-radius: 10px;
  color: var(--verde);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}
header ul li:last-child a img {
  position: relative;
  top: 9px;  
}
header ol {
  display: flex;
  align-items: center;
  gap: 30px;  
}
header ol li span {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  padding-left: 11px;
}
header ol li span a {
  display: block;
  width: max-content;  
  font-size: 20px;
  font-weight: 700;
}
header #menu {
  position: absolute;
  top: 0;
  right: 35px;
  display: none;

}
header #menu:before, header #menu:after {
  content: '';
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  background-size: contain;  
  transition: .3s;
}
header #menu:before {
  background-image: url(../img/menu.png);
}
header #menu:after {
  background-image: url(../img/menu.png);
  opacity: 0;
}
header #menu.ativo:before {
  opacity: 0;
}
header #menu.ativo:after {
  opacity: 1;
}


section.banner {
  padding: 150px 0 55px;
}
section.banner .grid {
  grid-template-columns: 1fr minmax(0, .7fr);
}
section.banner h1 {
  font-size: 64px;
  line-height: 68px;
  margin: 30px 0;
}
section.banner h2 {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 30px;
  max-width: 550px;
}
section.banner p {
  color: var(--cinzaescuro);
  margin-bottom: 35px;
  max-width: 500px;
}
section.banner a {
  border: 2px solid var(--verde);
  padding: 16px 40px 20px;
  border-radius: 10px;
  color: var(--verde);
  font-weight: 700;
  text-transform: uppercase;
}
section.banner a img {
  position: relative;
  top: 10px;
  left: -12px;  
} 
section.banner a:hover {
  background-color: var(--verde);
  color: var(--branco);
}
section.banner a:hover img {
  filter: brightness(100);
}
section.banner .rotativo {
  position: relative;
}
section.banner .rotativo:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  background-image: url('../img/personagem.png');
  width: 270px;
  height: 386px;
  z-index: 1;
}
section.banner .rotativo img {
  margin: 0 0 0 auto;
}
section.banner .slick-dots {
  position: absolute;
  top: 38%;
  right: -30px; 
}
section.banner .slick-dots button {
  background: var(--cinzaescuro);
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  font-size: 0;
  margin: 10px 0;
}
section.banner .slick-dots .slick-active button {
  transform: scale(1.5);
  background: var(--laranja);
}


section.info {
  padding: 0 0 55px;
}
section.info .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
section.info .grid div {
  display: flex;
  align-items: center;  
  gap: 20px;
  border-radius: 10px;
  border: 1px solid var(--cinzaclaro);
  padding: 25px;  
  transition: .3s;
}
section.info .grid div:hover {
  border-color: var(--laranja);
}
section.info p {
  font-size: 16px;
  color: var(--cinzaescuro);
  line-height: 22px;
  margin-top: -3px;
}
section.info p strong {
  color: var(--preto);
  display: block;
  font-size: 18px;
}


section.produtos {
  position: relative;
}
section.produtos:before {
  content: 'Compre Xiaomi';
}
section.produtos .grid:last-child {
  grid-template-columns: repeat(5, 1fr);
  gap: 80px 50px;  
}
section.produtos h3, section.produtos h4 {
  text-align: center;
}
section.produtos .produto figure {
  width: 100%;
  height: 300px;
  margin: 0 auto 30px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.produtos .produto h5 {
  font-size: 20px;
  margin-bottom: 10px;
}
section.produtos .produto p {
  font-size: 18px;
  color: var(--cinzaescuro);
  margin-bottom: 20px;
}
section.produtos .produto a.wa {
  border: 2px solid var(--verde);
  padding: 10px 20px 10px 44px;
  display: flex;
  border-radius: 10px;
  color: var(--verde);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  align-items: center;  
  justify-content: center;  
}
section.produtos .produto a.wa img {
  position: relative;
  left: -12px;  
}
section.produtos .produto a.wa:hover {
  background-color: var(--verde);
  color: var(--branco);
}
section.produtos .produto a.wa:hover img {
  filter: brightness(100);
}
section.produtos .produto a.ver {
  position: relative;
}
section.produtos .produto a.ver span {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  background: var(--laranja);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  gap: 10px;  
  opacity: 0;
  transition: .3s;
}
section.produtos .produto a.ver:hover span {
  top: 40%;
  opacity: 1;
}
section.produtos .produto a.ver span img {
  float: left;
  filter: invert(1);
  width: 35px;  
}
section.produtos .produto a.ver span:hover {
  filter: brightness(1.2);
}



section.local {
  background-image: url('../img/bg.png');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 90px;
}
section.local:before {
  content: 'Onde estamos';
  top: -125px;
}
section.local .grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
section.local .grid > div > div {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
section.local h5 {
  font-size: 28px;
}
section.local p {
  color: var(--cinzaescuro);
  font-size: 18px;
}
section.local iframe {
  height: 450px;
  width: 100%;
}
section.local #localizacao {
  position: relative;
  top: -175px;
}
section.local div > a {
  padding: 6px 29px;
  display: inline-block;
  border: 1px solid var(--cinzaescuro);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;  
}
section.local div > a:hover {
  background: var(--laranja);
  border-color: var(--laranja);
  color: var(--branco);
}


section.depoimentos {
  margin-top: 70px;
}
section.depoimentos:before {
  content: 'Depoimentos';
}
section.depoimentos h3, section.depoimentos h4 {
  text-align: center;
}
section.depoimentos article {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--laranja);  
}
section.depoimentos article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
section.depoimentos article figure {
  width: 70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  float: left;
  border-radius: 50px;
  margin-right: 20px;
}
section.depoimentos article h5 {
  font-size: 28px;
}
section.depoimentos p {
  clear: both;
  margin-top: 30px;  
}
section.depoimentos article time {
  color: var(--cinzaescuro);
  position: relative;
  top: -1px;
}
section.depoimentos article i {
  background-image: url('../img/estrelas.png');
  width: 112px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  margin-right: 15px;
}
section.depoimentos article i.a1 {
  background-position-y: 0px;
}
section.depoimentos article i.a2 {
  background-position-y: -20px;
}
section.depoimentos article i.a3 {
  background-position-y: -40px;
}
section.depoimentos article i.a4 {
  background-position-y: -60px;
}
section.depoimentos article i.a5 {
  background-position-y: -80px;
}



section.motivos {

}
section.motivos {
  background-image: url('../img/bg.png');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 90px;
  padding-bottom: 0;
}
section.motivos:before {
  content: 'Melhor opção';
  text-align: left;
  top: -125px;
}
section.motivos h4 {
  margin-bottom: 35px;
}
section.motivos .grid {
  grid-template-columns: 1fr .5fr;
}
section.motivos .grid > img {
  margin-top: 75px;
  position: relative;
  right: -300px;
  transition: .6s;
  opacity: 0;
}
section.motivos.ativo .grid > img {
  right: 0;
  opacity: 1;
}
section.motivos a {
  border: 2px solid var(--verde);
  padding: 10px 32px 10px 44px;
  border-radius: 10px;
  color: var(--verde);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  align-items: center;
  display: flex;
  width: max-content;
}
section.motivos a img {
  position: relative;
  left: -12px;  
}
section.motivos ul {
  column-count: 2;
  margin-bottom: 45px;  
}
section.motivos a:hover {
  background-color: var(--verde);
  color: var(--branco);
}
section.motivos a:hover img {
  filter: brightness(100);
}


footer {
  padding-top: 75px;
}
footer > .grid {
  grid-template-columns: 1fr max-content 1fr;
  gap: 60px;  
}
footer h6 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
footer p, footer ul li {
  color: var(--cinzaescuro);
  margin-bottom: 20px;
}
footer > .grid > div:last-child ul li {
  color: var(--cinzaescuro);  
  margin-bottom: 12px;
}
footer .grid > div:last-child ul li:nth-child(1) a, footer .grid > div:last-child ul li:nth-child(2) a {
  font-size: 48px;
  color: var(--preto);
  font-weight: 700;
}
footer .grid > div:last-child ul li:nth-child(3) a {
  font-size: 28px;
  color: var(--preto); 
  font-weight: 700;
}
footer .grid > div:last-child ul li:nth-child(1),
footer .grid > div:last-child ul li:nth-child(2),
footer .grid > div:last-child ul li:nth-child(3) {
  line-height: 30px;
}
footer a:hover {
  color: var(--preto);
}
footer ul li img {
  width: 25px;
  float: left;
  position: relative;
  top: 1px;
  margin-right: 8px;
}
footer ul li img[src*="facebook"] {
  width: 13px;
  margin: 0 13px 0 6px;
}

footer .creditos {
/*  box-shadow: 0 0 50px 10px rgb(0 0 0 / 10%);*/
  border-top: 1px solid var(--cinzaclaro);
  margin-top: 75px;
  padding: 60px 0;
}
footer .creditos .grid {
  grid-template-columns: 1fr max-content;  
}
footer .creditos .grid div > a {
  position: relative;
  width: max-content;  
  display: table;
}
footer .creditos p {
  margin-bottom: 5px;
  color: var(--cinzaescuro)
}
footer .creditos .grid > div {
  display: flex;
  gap: 40px;
  align-items: center;  
}
footer .creditos .grid > a {
  color: var(--cinzaescuro);
  display: flex;
  text-align: right;
  align-items: center;
  gap: 20px;
  line-height: 20px;  
}
footer .creditos .grid > a span {
  width: min-content;
  color: var(--preto);
}