* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
html {
  scroll-behavior: smooth;
}

.hero {
  background-image: url("assets/backg.svg");
  min-height: 100vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  z-index: 1001;
  position: fixed;
  top: 2rem;
  left: 150px;
  width: 275px;
  height: auto;
}

.navbar {
  z-index: 1001;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 1rem;
  position: fixed;
  width: 25%;
  left: 50%;
  transform: translateX(-50%);
  top: 2rem;
  border-radius: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 7rem;
}
.navbar a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #2a3066;
}

.header-buttons {
  position: fixed;
  top: 2rem;
  right: 150px;

  display: flex;
  align-items: center;
  gap: 15px;

  z-index: 1001;
}

.btn-contato {
  background: white;
  color: #2a3066;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-contato :hover {
  background: #2a3066;
  color: white;
}

.btn-whatsapp {
  width: 58px;
  height: 58px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp img {
  width: 28px;
  height: 28px;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}


.hero-content {
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-content h1 {
  font-size: 64px;
  font-weight: 600;
}
.hero-content span {
  font-size: 64px;
  font-weight: 800;
}
.btn-primary {
  margin-top: 50px;
  margin-right: 50px;
  display: inline-block;
  background: white;
  color: #2a3066;
  padding: 15px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
}
.btn-primary:hover {
  background: #1f254d;
  color: grey;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 15px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
}
.btn-secondary:hover {
  background: white;
  color: #2a3066;
}
.hero-rodape {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
}
.hero-rodape p {
  font-size: 32px;
  text-align: center;
}
.secao-produtos > p {
  margin-top: 50px;
  text-align: center;
  font-size: 24px;
  color: grey;
}
.secao-produtos h2 {
  font-size: 42px;
  text-align: center;
  color: #27336e;
  font-weight: 700;
}
.categorias {
  width: 1200px;
  margin: 100px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.card {
  transition: 0.3s;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-8px);
}
.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
.card h3 {
  font-size: 32px;
  color: #27336e;
  font-weight: 700;
}
.card p {
  margin-top: 1rem;
  text-align: left;
  color: #7b7b7b;
  font-size: 22px;
  line-height: 1.4;
}
.card a {
  color: #27336e;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.card a:hover {
  text-decoration: underline;
}
.estatisticas {
  padding: 80px 5%;
}
.estatisticas-container {
  background: #2a30662a;
  backdrop-filter: blur(40px) saturate(300%);
  -webkit-backdrop-filter: blur(40px) saturate(300%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 999;
  max-width: 90%;
  margin: auto;
  border-radius: 35px;
  padding: 50px 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}
.estatistica {
  text-align: center;
}
.estatistica img {
  width: 45px;
  margin-bottom: 18px;
}
.estatistica h2 {
  font-size: 56px;
  color: #27336e;
  font-weight: 700;
  margin-bottom: 12px;
}
.estatistica p {
  font-size: 26px;
  color: #4b4b4b;
  line-height: 1.3;
}
.sobre {
  max-width: 1400px;
  margin: auto;
  padding: 80px 20px;
  display: flex;
  text-align: left;
  gap: 25px;
}
.descricao-sobre {
  flex: 1;
}
.titulo-sobre {
  display: block;
  width: 100%;
  text-align: left !important;
  margin-bottom: 10px;
  color: #8a8a8a;
  font-size: 24px;
  text-transform: uppercase;
}
.sobre h2 {
  font-size: 42px;
  color: #28316f;
  margin: 10px 0 30px;
  line-height: 1.1;
}
.sobre p {
  font-size: 22px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}
.btn-sobre {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 50px;
  background: #2d3475;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}
.sobre-imagem {
  flex: 1;
}
.sobre-imagem img {
  width: 100%;
  display: block;
  border-radius: 40px;
}
.solucoes {
  background: url("assets/secao-solucoes.svg") center/cover no-repeat;
  padding: 90px 20px;
  color: #fff;
}
.container {
  max-width: 1200px;
  margin: auto;
}

.titulo-solucoes {
  display: block;
  text-align: center;
  color: #bdbdbd;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 15px;
}
.solucoes h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 70px;
  line-height: 1.1;
}
.cards-solucoes {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-left: 165px;
}
.card-solucao {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.card-solucao img {
  width: 42px;
}
.card-solucao h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.card-solucao p {
  color: #d8d8d8;
  line-height: 1.5;
}
.cta {
  max-width: 1400px;
  margin: auto;
  padding: 80px 20px;
  display: flex;
  text-align: left;
  gap: 50px;
  flex-direction: row-reverse;
  align-items: center;
}
.cta-texto {
  flex: 1;
}
.cta-titulo {
  display: block;
  width: 100%;
  text-align: left !important;
  margin-bottom: 10px;
  color: #8a8a8a;
  font-size: 24px;
  text-transform: uppercase;
}
.cta h2 {
  font-size: 42px;
  color: #28316f;
  margin: 10px 0 30px;
  line-height: 1.1;
}
.cta-btn-orcamento {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 50px;
  background: #2d3475;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}
.cta-btn-whatsapp {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 50px;
  color: #28316f;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}
.cta-btn-whatsapp img {
  width: 30px;
  align-items: center;
  margin-bottom: -10px;
}
.cta-imagem {
  flex: 1;
}
.cta-imagem img {
  width: 100%;
  display: block;
  border-radius: 40px;
}
.localizacao {
  max-width: 1400px;
  margin: auto;
  padding: 80px 20px;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.loja img {
  width: 700px;
  height: 450px;
}

.mapa iframe {
  width: 600px;
  height: 450px;
}

.footer {
  background: #2f336c;
  color: #fff;
  padding: 55px 8% 20px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.footer-logo img {
  width: 350px;
}
.footer h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.footer-contato {
  display: flex;
  flex-direction: column;
}
.footer-contato a {
  color: #fff;
  text-decoration: underline;
  margin-bottom: 8px;
  font-size: 17px;
  text-decoration: none;
}

.footer-contato img {
  margin-top: 20px;
  width: 25px;
}

.footer-telefone {
  display: flex;
  flex-direction: column;
}

.footer-telefone img {
  width: 25px;
  margin-bottom: -7px;
  margin-right: 5px;
}

.footer-telefone a {
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 18px;
}
.footer-copy {
  text-align: center;
  margin-top: 45px;
  font-size: 18px;
}

/* ANIMAÇÕES*/
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s,
    filter 1s;
  filter: blur(8px);
}

.reveal-left {
  transform: translateX(-100px);
}

.reveal-right {
  transform: translateX(100px) scale(0.95);
}

.reveal-left.show,
.reveal-right.show {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.apple-reveal {
  opacity: 0;
  transform: translateY(120px) scale(0.95);
  filter: blur(10px);

  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s,
    filter 1s;
}

.apple-reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.card {
  opacity: 0;
  transform: translateY(80px);

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:nth-child(1) {
  transition-delay: 0.1s;
}
.card:nth-child(2) {
  transition-delay: 0.2s;
}
.card:nth-child(3) {
  transition-delay: 0.3s;
}
.card:nth-child(4) {
  transition-delay: 0.4s;
}
.card:nth-child(5) {
  transition-delay: 0.5s;
}
.card:nth-child(6) {
  transition-delay: 0.6s;
}

.logo.dark {
  filter: brightness(0) saturate(100%);
}

.navbar.dark {
  background: #2a3066;
}


.navbar.dark a {
  color: white;
}

.navbar.dark a:hover {
  color: #464c82;
}

.btn-contato.dark {
  background: #2a3066;
  color: white;
}

.btn-contato.dark:hover {
  background: #464c82;
}

.btn-whatsapp.dark{
  background: #2A3066;
}

.btn-whatsapp.dark:hover {
  background: #464c82;
}

.btn-whatsapp.dark img{
  filter: brightness(0) invert(1);
}

/* NOTEBOOKS*/

@media (max-width: 1440px) {
p br {
  display: none;
}
.logo {
  left: 40px;
  width: 225px;
}
.navbar {
  width: 40%;
}
.navbar ul {
  gap: 3rem;
}
.btn-contato {
  right: 40px;
  padding: 12px 28px;
  font-size: 18px;
}
.hero-content h1,
.hero-content span {
  font-size: 36px;
}
.btn-primary,
.btn-secondary {
  font-size: 20px;
  padding: 14px 32px;
}
.hero-rodape p {
  font-size: 20px;
}
/* PRODUTOS */
.categorias {
  width: 80%;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.card img {
  height: 300px;
}
.card h3 {
  font-size: 24px;
}
.card p {
  font-size: 17px;
}
.estatisticas-container {
  max-width: 90%;
  gap: 20px;
  padding: 35px 20px;
}
.estatistica img {
  width: 35px;
}
.estatistica h2 {
  font-size: 40px;
}
.estatistica p {
  font-size: 18px;
}
.sobre {
  max-width: 95%;
  gap: 35px;
}
.sobre h2 {
  font-size: 34px;
}
.sobre p {
  font-size: 18px;
}
.btn-sobre {
  padding: 16px 35px;
  font-size: 20px;
}
.container {
  max-width: 95%;
}
.solucoes h2 {
  font-size: 40px;
}
.cards-solucoes {
  margin-left: 0;
  justify-content: center;
  gap: 30px;
}
.card-solucao h3 {
  font-size: 22px;
}
.card-solucao p {
  font-size: 16px;
}
.cta {
  max-width: 90%;
  gap: 25px;
}
.cta h2 {
  font-size: 32px;
}
.cta-btn-orcamento,
.cta-btn-whatsapp {
  padding: 16px 20px;
}
.localizacao {
  max-width: 95%;
  gap: 25px;
}
.loja img {
  width: 100%;
  height: auto;
}
.mapa iframe {
  width: 500px;
  height: 350px;
}
/* FOOTER */
.footer-container {
  gap: 40px;
}
.footer-logo img {
  width: 260px;
}
.footer h3 {
  font-size: 20px;
}
.footer-contato a,
.footer-telefone a {
  font-size: 16px;
}
.footer-copy {
  font-size: 16px;
}
}

/* TABLETS*/

@media (max-width: 992px) {
.navbar {
  width: 70%;
}
.logo {
  left: 25px;
  width: 150px;
}
.btn-contato {
  right: 25px;
  font-size: 16px;
  padding: 10px 22px;
}
.hero-content h1,
.hero-content span {
  font-size: 40px;
}
.categorias {
  grid-template-columns: repeat(2, 1fr);
}
.estatisticas-container {
  flex-wrap: wrap;
}
.estatistica {
  width: 45%;
}
.sobre,
.cta,
.localizacao {
  flex-direction: column;
}
.descricao-sobre,
.cta-texto {
  text-align: center;
}
.titulo-sobre,
.cta-titulo {
  text-align: center !important;
}
.btn-sobre,
.cta-btn-orcamento {
  margin: auto;
}
.cards-solucoes {
  flex-direction: column;
}
.card-solucao {
  align-items: center;
  text-align: center;
}
.loja img,
.mapa iframe {
  width: 100%;
  height: 350px;
}
.footer-container {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
}

@media (max-width: 768px) {
.hero {
  margin-top: 0;
  min-height: 100vh;
  background-image: url("assets/back-mobile.svg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo {
  position: fixed;
  top: 15px;
  display: flex;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  z-index: 1001;
}
.navbar {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 1rem;
  position: fixed;
  top: 90px;
  left: 50%;
  width: 75%;
  z-index: 1000;
  transform: translateX(-50%);
  border-radius: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.navbar a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #2a3066;
}
.header-buttons {
  display: none;
}
.hero-content {
  margin-top: 3rem;
  text-align: center;
  justify-content: center;
  color: white;
}
.hero-content h1 {
  font-size: 24px;
  font-weight: 600;
}
.hero-content span {
  font-size: 24px;
  font-weight: 800;
}
.btn-primary {
  margin-top: 25px;
  margin-right: 15px;
  display: inline-block;
  background: white;
  color: #2a3066;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}
.btn-primary:hover {
  background: #1f254d;
  color: grey;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}
.btn-secondary:hover {
  background: white;
  color: #2a3066;
}
.hero-rodape {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  width: 90%;
}
.hero-rodape p {
  font-size: 20px;
  text-align: center;
}
.br-pula {
  display: none;
}
.secao-produtos p {
  font-size: 16px;
}
.secao-produtos h2 {
  font-size: 24px;
}
.categorias {
  width: 100%;
  margin: 30px 0;
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.categorias::-webkit-scrollbar {
  display: none;
}
.card {
  flex: 0 0 170px;
}
.card img {
  height: 220px;
}
.card h3 {
  margin-top: 5px;
  font-size: 18px;
}
.card p {
  margin-top: 5px;
  font-size: 14px;
}
.card a {
  font-size: 12px;
}
.estatisticas-container {
  background: none;
  backdrop-filter: none;
  border-radius: none;
  box-shadow: none;
  border: none;
  width: 100%;
  margin: 0px 0px 0px 20px;
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 0;
}
.estatisticas-container::-webkit-scrollbar {
  display: none;
}
.estatistica {
  flex: 0 0 170px;
}
.estatistica img {
  width: 25%;
}
.estatistica h2 {
  font-size: 24px;
}
.estatistica p {
  font-size: 14px;
}
.sobre {
  flex-direction: column;
  padding: 20px 10px;
  gap: 20px;
}
.descricao-sobre {
  flex: 1;
}
.titulo-sobre {
  display: flex;
  justify-content: center;
  color: #8a8a8a;
  font-size: 16px;
  text-transform: uppercase;
}
.sobre h2 {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 24px;
  color: #28316f;
}
.sobre p {
  padding: 0px 25px;
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}
.btn-sobre {
  margin: 0px 25px;
  display: flex;
  justify-content: center;
  border-radius: 50px;
  background: #2d3475;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.sobre-imagem {
  flex: 1;
}
.sobre-imagem img {
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 40px;
}
.solucoes {
  background: url("assets/secao-solucoes-mobile.svg") center/cover no-repeat;
}
.container-solucoes {
  max-width: 1200px;
  padding: 60px 20px;
}
.titulo-solucoes {
  display: block;
  text-align: center;
  color: #bdbdbd;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 0;
}
.solucoes h2 {
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cards-solucoes {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0px 0px 0px 30px;
  width: 80%;
}
.card-solucao {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.card-solucao img {
  width: 48px;
  margin-bottom: 20px;
}
.card-solucao h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
.card-solucao p {
  font-size: 14px;
  line-height: 1.5;
}
.cta {
  max-width: 1400px;
  margin: auto;
  padding: 80px 20px;
  display: flex;
  text-align: left;
  gap: 50px;
  flex-direction: column;
  padding: 20px 10px;
  gap: 20px;
}
.cta-texto {
  flex: 1;
}
.cta-titulo {
  display: flex;
  justify-content: center;
  color: #8a8a8a;
  font-size: 16px;
  text-transform: uppercase;
}
.cta h2 {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 24px;
  color: #28316f;
}
.cta-btn-orcamento {
  margin: 0px 25px;
  display: flex;
  justify-content: center;
  border-radius: 50px;
  background: #2d3475;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.cta-btn-whatsapp {
  display: flex;
  justify-content: center;
  color: #2d3475;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}
.cta-btn-whatsapp img {
  margin-right: 5px;
  height: 30px;
  width: 30px;
  margin-top: -5px;
}
.cta-imagem {
  flex: 1;
}
.cta-imagem img {
  width: 100%;
  display: block;
  border-radius: 40px;
}
.localizacao {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.loja img {
  width: 350px;
  height: 180px;
}
.mapa iframe {
  width: 350px;
  height: 180px;
}
.footer-container {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.footer-logo img {
  width: 230px;
}
.footer-copy {
  font-size: 10px;
}
.apple-reveal,
.reveal-left,
.reveal-right,
.card {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  animation: none !important;
}
.apple-reveal.show,
.reveal-left.show,
.reveal-right.show,
.card.show {
  opacity: 1 !important;
  transform: none !important;
}
}
