:root {
  --azul-marinho: #292840;
  --azul-escuro: #171625;
  --azul-destaque: #1b79ff;
  --azul-claro: #6aa8ff;
  --branco: #f9fcfc;
  --cinza: #b8bdca;
  --cinza-escuro: #6c7180;
  --fundo-claro: #f5f7fb;
  --verde-whatsapp: #25d366;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--azul-escuro);
  color: var(--branco);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* CABEÇALHO */

.cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;

  background-color: rgba(23, 22, 37, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);
}

.cabecalho-conteudo {
  position: relative;

  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

/* LOGO */

.logo-oficial {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-oficial img {
  width: 205px;
  height: auto;

  object-fit: contain;
  object-position: left center;
}

.logo-rodape img {
  width: 250px;
}

/* MENU */

.menu {
  display: flex;
  align-items: center;
  gap: 21px;
}

.menu a {
  font-size: 13px;
  font-weight: 600;

  transition: color 0.2s;
}

.menu a:hover {
  color: var(--azul-destaque);
}

.botao-menu {
  display: none;

  width: 44px;
  height: 44px;

  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;

  background-color: rgba(255, 255, 255, 0.05);
  color: var(--branco);

  cursor: pointer;
}

.botao-menu svg {
  width: 23px;
  height: 23px;
}

/* HERO */

.hero {
  min-height: 100vh;

  padding-top: 140px;
  padding-bottom: 80px;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(27, 121, 255, 0.22),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--azul-marinho),
      var(--azul-escuro)
    );
}

.hero-conteudo {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
}

.destaque {
  color: var(--azul-claro);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero h1 {
  max-width: 650px;

  margin-top: 20px;

  font-size: 64px;
  line-height: 1.05;
}

.hero p {
  max-width: 620px;

  margin-top: 24px;

  color: var(--cinza);

  font-size: 18px;
  line-height: 1.7;
}

.botoes-hero {
  margin-top: 34px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 14px;
}

/* BOTÕES */

.botao-principal,
.botao-secundario {
  min-height: 52px;

  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 800;

  transition:
    transform 0.2s,
    background-color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.botao-principal {
  margin-top: 34px;

  background-color: var(--azul-destaque);

  box-shadow: 0 14px 35px rgba(27, 121, 255, 0.25);
}

.botoes-hero .botao-principal {
  margin-top: 0;
}

.botao-principal:hover {
  transform: translateY(-3px);

  background-color: #3288ff;

  box-shadow: 0 18px 42px rgba(27, 121, 255, 0.35);
}

.botao-secundario {
  border: 1px solid rgba(255, 255, 255, 0.18);

  background-color: rgba(255, 255, 255, 0.05);
}

.botao-secundario:hover {
  transform: translateY(-3px);

  border-color: rgba(106, 168, 255, 0.55);

  background-color: rgba(255, 255, 255, 0.09);
}

/* TELEFONE DO HERO */

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.celular {
  position: relative;

  width: 280px;
  height: 540px;

  padding: 12px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 42px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.04)
    );

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);

  transform: rotate(4deg);
}

.camera {
  position: absolute;
  top: 22px;
  left: 50%;

  width: 90px;
  height: 25px;

  transform: translateX(-50%);

  border-radius: 20px;

  background-color: #08070d;

  z-index: 3;
}

.tela-celular {
  width: 100%;
  height: 100%;

  padding: 60px 22px 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 32px;

  background:
    radial-gradient(
      circle at 50% 43%,
      rgba(27, 121, 255, 0.24),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #24233a,
      #11101b
    );
}

/* Compensa a inclinação do aparelho */

.conteudo-tela-celular {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transform: rotate(-4deg);
  transform-origin: center;
}

.logo-tela-celular {
  display: block;

  width: 100%;
  max-width: 205px;
  height: auto;
  max-height: 180px;

  object-fit: contain;
  object-position: center;

  filter: drop-shadow(
    0 14px 24px rgba(0, 0, 0, 0.3)
  );
}

.texto-tela-celular {
  display: block;

  width: 100%;
  max-width: 210px;

  margin-top: 24px;

  color: var(--branco);

  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.3px;

  text-align: center;
  text-transform: uppercase;

  opacity: 0.92;
}

/* TROCA DE VIDRO */

.destaque-vidro {
  padding: 42px 0;

  background:
    linear-gradient(
      90deg,
      rgba(27, 121, 255, 0.2),
      rgba(27, 121, 255, 0.05)
    ),
    var(--azul-marinho);

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.destaque-vidro-conteudo {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.icone-destaque-vidro {
  width: 78px;
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(106, 168, 255, 0.18);
  border-radius: 22px;

  background-color: rgba(27, 121, 255, 0.16);
  color: var(--azul-claro);
}

.icone-destaque-vidro svg {
  width: 38px;
  height: 38px;

  stroke-width: 1.8;
}

.texto-destaque-vidro h2 {
  margin-top: 8px;

  font-size: 28px;
  line-height: 1.2;
}

.texto-destaque-vidro p {
  max-width: 700px;

  margin-top: 9px;

  color: var(--cinza);

  font-size: 14px;
  line-height: 1.65;
}

.aparelhos-troca-vidro {
  margin-top: 16px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px;
}

.aparelhos-troca-vidro span {
  min-height: 38px;

  padding: 0 14px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  border: 1px solid rgba(106, 168, 255, 0.16);
  border-radius: 30px;

  background-color: rgba(255, 255, 255, 0.05);

  font-size: 12px;
  font-weight: 700;
}

.aparelhos-troca-vidro img {
  width: 20px;
  height: 20px;

  object-fit: contain;
}

.botao-consulta-vidro {
  min-height: 54px;

  padding: 0 21px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  border-radius: 13px;

  background-color: var(--azul-destaque);
  color: var(--branco);

  white-space: nowrap;

  font-size: 13px;
  font-weight: 800;

  box-shadow: 0 14px 34px rgba(27, 121, 255, 0.26);

  transition:
    transform 0.2s,
    background-color 0.2s;
}

.botao-consulta-vidro:hover {
  transform: translateY(-3px);

  background-color: #3288ff;
}

.botao-consulta-vidro svg {
  width: 19px;
  height: 19px;
}

/* TÍTULOS */

.titulo-secao {
  max-width: 720px;

  margin-bottom: 50px;
}

.titulo-secao h2 {
  margin-top: 14px;

  font-size: 46px;
  line-height: 1.1;
}

.titulo-secao p {
  margin-top: 18px;

  color: #666b79;

  font-size: 17px;
  line-height: 1.7;
}

/* SERVIÇOS */

.servicos {
  padding: 110px 0;

  background-color: var(--fundo-claro);
  color: var(--azul-escuro);
}

.lista-categorias {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.categoria-atendimento {
  min-height: 440px;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  overflow: hidden;

  border: 1px solid #e0e5ee;
  border-radius: 28px;

  background-color: #ffffff;

  box-shadow: 0 18px 48px rgba(23, 22, 37, 0.09);

  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}

.categoria-atendimento:hover {
  transform: translateY(-6px);

  border-color: rgba(27, 121, 255, 0.45);

  box-shadow: 0 26px 60px rgba(23, 22, 37, 0.14);
}

.categoria-invertida .visual-categoria {
  order: 2;
}

.categoria-invertida .conteudo-categoria {
  order: 1;
}

.visual-categoria {
  min-height: 440px;

  padding: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.imagem-categoria {
  max-width: 82%;
  max-height: 280px;

  object-fit: contain;

  filter: drop-shadow(
    0 22px 28px rgba(23, 22, 37, 0.12)
  );

  transition: transform 0.3s;
}

.categoria-atendimento:hover .imagem-categoria {
  transform: scale(1.04);
}

.imagem-apple {
  width: 190px;
  height: 190px;
}

.imagem-android {
  width: 310px;
  height: 230px;
}

.imagem-tablet {
  width: 270px;
  height: 270px;
}

.imagem-apple-watch {
  width: 235px;
  height: 290px;
}

.imagem-demais-relogios {
  width: 330px;
  height: 260px;
}

.visual-iphone {
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(23, 22, 37, 0.11),
      transparent 43%
    ),
    #f2f3f6;
}

.visual-android {
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(61, 220, 132, 0.25),
      transparent 45%
    ),
    #eefaf3;
}

.visual-tablet {
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(27, 121, 255, 0.2),
      transparent 44%
    ),
    #edf4ff;
}

.visual-apple-watch {
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(146, 92, 255, 0.2),
      transparent 44%
    ),
    linear-gradient(
      145deg,
      #f4f0ff,
      #e8e4f4
    );
}

.visual-demais-relogios {
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(27, 121, 255, 0.17),
      transparent 44%
    ),
    linear-gradient(
      145deg,
      #edf5ff,
      #e3ebf5
    );
}

.conteudo-visual-relogios {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 24px;
}

.marcas-relogios {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 8px;
}

.marcas-relogios span {
  padding: 8px 12px;

  border: 1px solid rgba(27, 121, 255, 0.15);
  border-radius: 30px;

  background-color: rgba(255, 255, 255, 0.65);
  color: var(--azul-marinho);

  font-size: 10px;
  font-weight: 800;
}

.conteudo-categoria {
  padding: 48px 50px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.categoria-servico {
  color: var(--azul-destaque);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.conteudo-categoria h3 {
  margin-top: 9px;

  font-size: 38px;
  line-height: 1.1;
}

.conteudo-categoria > p {
  max-width: 570px;

  margin-top: 16px;

  color: var(--cinza-escuro);

  font-size: 15px;
  line-height: 1.7;
}

.lista-servicos {
  width: 100%;

  margin-top: 24px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 13px 25px;

  list-style: none;
}

.lista-servicos li {
  display: flex;
  align-items: center;

  gap: 9px;

  color: #555b6b;

  font-size: 13px;
  line-height: 1.4;
}

.lista-servicos svg {
  width: 17px;
  height: 17px;

  flex-shrink: 0;

  color: var(--azul-destaque);

  stroke-width: 2.6;
}

.conteudo-categoria .aviso-relogios {
  width: 100%;

  margin-top: 20px;
  padding: 13px 15px;

  display: flex;
  align-items: center;

  gap: 9px;

  border-left: 3px solid var(--azul-destaque);
  border-radius: 8px;

  background-color: rgba(27, 121, 255, 0.08);
  color: #555b6b;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.aviso-relogios svg {
  width: 18px;
  height: 18px;

  flex-shrink: 0;

  color: var(--azul-destaque);
}

.botao-whatsapp-card {
  min-height: 52px;

  margin-top: 30px;
  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  border-radius: 13px;

  background-color: var(--azul-destaque);
  color: var(--branco);

  font-size: 13px;
  font-weight: 800;

  box-shadow: 0 12px 28px rgba(27, 121, 255, 0.22);

  transition:
    transform 0.2s,
    background-color 0.2s;
}

.botao-whatsapp-card:hover {
  transform: translateY(-2px);

  background-color: #3288ff;
}

.botao-whatsapp-card svg {
  width: 19px;
  height: 19px;
}

.observacao-servicos {
  margin-top: 24px;

  color: #777c89;

  font-size: 12px;
  line-height: 1.6;
}

/* COMO FUNCIONA */

.como-funciona {
  padding: 110px 0;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(27, 121, 255, 0.16),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--azul-marinho),
      var(--azul-escuro)
    );
}

.titulo-claro {
  color: var(--branco);
}

.titulo-claro p {
  color: var(--cinza);
}

.grade-etapas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.etapa {
  position: relative;

  min-height: 320px;

  padding: 28px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;

  background-color: rgba(255, 255, 255, 0.05);

  transition:
    transform 0.25s,
    border-color 0.25s,
    background-color 0.25s;
}

.etapa:hover {
  transform: translateY(-7px);

  border-color: rgba(27, 121, 255, 0.55);

  background-color: rgba(255, 255, 255, 0.08);
}

.numero-etapa {
  position: absolute;
  top: 24px;
  right: 24px;

  color: rgba(255, 255, 255, 0.16);

  font-size: 28px;
  font-weight: 800;
}

.icone-etapa {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background-color: rgba(27, 121, 255, 0.16);
  color: var(--azul-claro);
}

.icone-etapa svg {
  width: 27px;
  height: 27px;

  stroke-width: 1.8;
}

.etapa h3 {
  margin-top: 35px;

  font-size: 20px;
  line-height: 1.3;
}

.etapa p {
  margin-top: 14px;

  color: var(--cinza);

  font-size: 14px;
  line-height: 1.7;
}

/* LOCALIZAÇÃO */

.localizacao {
  padding: 110px 0;

  background-color: #11101b;
}

.grade-localizacao {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 24px;
}

.card-localizacao,
.card-instagram {
  min-height: 520px;

  padding: 40px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;

  background-color: rgba(255, 255, 255, 0.04);

  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.icone-localizacao,
.icone-instagram {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background-color: rgba(27, 121, 255, 0.16);
  color: var(--azul-claro);
}

.icone-localizacao svg,
.icone-instagram svg {
  width: 28px;
  height: 28px;

  stroke-width: 1.8;
}

.card-localizacao h3,
.card-instagram h3 {
  margin-top: 28px;

  font-size: 28px;
  line-height: 1.2;
}

.card-localizacao > p,
.card-instagram p {
  margin-top: 15px;

  color: var(--cinza);

  font-size: 15px;
  line-height: 1.7;
}

.endereco-loja {
  margin-top: 18px;

  color: var(--azul-claro);

  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
}

.lista-horarios {
  margin-top: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.linha-horario {
  padding: 17px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.linha-horario span {
  color: var(--cinza);
}

.linha-horario strong {
  font-size: 14px;
  text-align: right;
}

.card-instagram {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(27, 121, 255, 0.25),
      transparent 42%
    ),
    rgba(255, 255, 255, 0.04);
}

.conteudo-instagram {
  position: relative;
  z-index: 2;
}

.botao-instagram {
  margin-top: 25px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--azul-claro);

  font-size: 14px;
  font-weight: 800;
}

.botao-instagram svg {
  width: 18px;
  height: 18px;
}

.grade-instagram {
  margin-top: 36px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 12px;
}

.grade-instagram div {
  min-height: 100px;

  padding: 18px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  background-color: rgba(27, 121, 255, 0.08);
}

.grade-instagram svg {
  width: 24px;
  height: 24px;

  color: var(--azul-claro);

  stroke-width: 1.8;
}

.grade-instagram span {
  margin-top: 18px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;

  text-transform: uppercase;
}

/* RODAPÉ */

.rodape {
  padding-top: 75px;

  background-color: #0b0a12;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.conteudo-rodape {
  padding-bottom: 60px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;

  gap: 50px;
}

.marca-rodape > p {
  max-width: 360px;

  margin-top: 22px;

  color: var(--cinza);

  font-size: 14px;
  line-height: 1.7;
}

.coluna-rodape {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 12px;
}

.coluna-rodape h3 {
  margin-bottom: 8px;

  color: var(--branco);

  font-size: 14px;
}

.coluna-rodape a,
.coluna-rodape p {
  color: var(--cinza);

  font-size: 13px;

  transition: color 0.2s;
}

.coluna-rodape a:hover {
  color: var(--azul-claro);
}

.coluna-rodape strong {
  margin-top: -7px;

  color: var(--branco);

  font-size: 13px;
}

.rodape-inferior {
  min-height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rodape-inferior p {
  color: #858b9a;

  font-size: 12px;
}

.rodape-inferior a {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--cinza);

  font-size: 12px;
  font-weight: 700;

  transition: color 0.2s;
}

.rodape-inferior a:hover {
  color: var(--azul-claro);
}

.rodape-inferior svg {
  width: 16px;
  height: 16px;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-flutuante {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background-color: var(--verde-whatsapp);
  color: #ffffff;

  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);

  z-index: 90;

  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.whatsapp-flutuante:hover {
  transform: translateY(-4px) scale(1.05);

  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-flutuante svg {
  width: 30px;
  height: 30px;

  stroke-width: 2;
}

/* NOTEBOOK */

@media (max-width: 1100px) {
  .logo-oficial img {
    width: 175px;
  }

  .menu {
    gap: 13px;
  }

  .menu a {
    font-size: 11px;
  }
}

/* TABLET */

@media (max-width: 1000px) {
  .hero-conteudo {
    gap: 40px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .destaque-vidro-conteudo {
    grid-template-columns: auto 1fr;
  }

  .botao-consulta-vidro {
    grid-column: 1 / -1;
    justify-self: start;

    margin-left: 108px;
  }

  .categoria-atendimento {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .conteudo-categoria {
    padding: 38px;
  }

  .lista-servicos {
    grid-template-columns: 1fr;
  }

  .grade-etapas {
    grid-template-columns: repeat(2, 1fr);
  }

  .grade-localizacao {
    grid-template-columns: 1fr;
  }

  .conteudo-rodape {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CELULAR E TELAS MENORES */

@media (max-width: 800px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .logo-oficial img {
    width: 165px;
  }

  .logo-rodape img {
    width: 230px;
  }

  .menu {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;

    padding: 18px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 6px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;

    background-color: rgba(23, 22, 37, 0.98);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .menu.ativo {
    display: flex;
  }

  .menu a {
    padding: 12px;

    border-radius: 10px;

    font-size: 14px;
  }

  .menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .botao-menu {
    display: flex;
  }

  .hero {
    min-height: auto;

    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero-conteudo {
    grid-template-columns: 1fr;

    gap: 55px;

    text-align: center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;

    font-size: 16px;
  }

  .botoes-hero {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 10px;
  }

  .celular {
    width: 230px;
    height: 440px;

    transform: rotate(2deg);
  }

  .tela-celular {
    padding: 52px 18px 28px;
  }

  .conteudo-tela-celular {
    transform: rotate(-2deg);
  }

  .logo-tela-celular {
    max-width: 170px;
    max-height: 145px;
  }

  .texto-tela-celular {
    max-width: 170px;

    margin-top: 20px;

    font-size: 8px;
    letter-spacing: 1px;
  }

  .destaque-vidro {
    padding: 50px 0;
  }

  .destaque-vidro-conteudo {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .icone-destaque-vidro {
    margin: 0 auto;
  }

  .texto-destaque-vidro h2 {
    font-size: 26px;
  }

  .aparelhos-troca-vidro {
    justify-content: center;
  }

  .botao-consulta-vidro {
    width: 100%;

    grid-column: auto;
    justify-self: stretch;

    margin-left: 0;
  }

  .titulo-secao {
    text-align: center;
  }

  .titulo-secao h2 {
    font-size: 34px;
  }

  .titulo-secao p {
    font-size: 15px;
  }

  .servicos {
    padding: 80px 0;
  }

  .lista-categorias {
    gap: 24px;
  }

  .categoria-atendimento {
    min-height: auto;

    grid-template-columns: 1fr;
  }

  .categoria-invertida .visual-categoria,
  .categoria-invertida .conteudo-categoria {
    order: initial;
  }

  .visual-categoria {
    min-height: 280px;

    padding: 30px;
  }

  .imagem-apple {
    width: 130px;
    height: 130px;
  }

  .imagem-android {
    width: 240px;
    height: 170px;
  }

  .imagem-tablet {
    width: 190px;
    height: 190px;
  }

  .imagem-apple-watch {
    width: 170px;
    height: 210px;
  }

  .imagem-demais-relogios {
    width: 260px;
    height: 190px;
  }

  .conteudo-categoria {
    padding: 30px;
  }

  .conteudo-categoria h3 {
    font-size: 32px;
  }

  .lista-servicos {
    grid-template-columns: 1fr;
  }

  .botao-whatsapp-card {
    width: 100%;
  }

  .observacao-servicos {
    text-align: center;
  }

  .como-funciona {
    padding: 80px 0;
  }

  .grade-etapas {
    grid-template-columns: 1fr;
  }

  .etapa {
    min-height: 280px;

    text-align: left;
  }

  .localizacao {
    padding: 80px 0;
  }

  .card-localizacao,
  .card-instagram {
    min-height: auto;

    padding: 28px;
  }

  .linha-horario {
    align-items: flex-start;
  }

  .grade-instagram {
    grid-template-columns: 1fr 1fr;
  }

  .rodape {
    padding-top: 60px;
  }

  .conteudo-rodape {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .rodape-inferior {
    padding: 24px 0;

    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-flutuante {
    right: 16px;
    bottom: 16px;

    width: 56px;
    height: 56px;
  }

  .whatsapp-flutuante svg {
    width: 27px;
    height: 27px;
  }
}

/* CELULARES PEQUENOS */

@media (max-width: 480px) {
  .logo-oficial img {
    width: 150px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .botoes-hero {
    flex-direction: column;
  }

  .botoes-hero a {
    width: 100%;
  }

  .celular {
    width: 220px;
    height: 420px;

    transform: rotate(1deg);
  }

  .tela-celular {
    padding: 48px 16px 26px;
  }

  .conteudo-tela-celular {
    transform: rotate(-1deg);
  }

  .logo-tela-celular {
    max-width: 160px;
    max-height: 135px;
  }

  .texto-tela-celular {
    max-width: 160px;

    margin-top: 18px;

    font-size: 7.5px;
    letter-spacing: 0.9px;
  }

  .titulo-secao h2 {
    font-size: 30px;
  }

  .texto-destaque-vidro h2 {
    font-size: 23px;
  }

  .aparelhos-troca-vidro {
    flex-direction: column;
    align-items: stretch;
  }

  .aparelhos-troca-vidro span {
    justify-content: center;
  }

  .visual-categoria {
    min-height: 240px;

    padding: 24px;
  }

  .imagem-apple {
    width: 105px;
    height: 105px;
  }

  .imagem-android {
    width: 205px;
    height: 140px;
  }

  .imagem-tablet {
    width: 165px;
    height: 165px;
  }

  .imagem-apple-watch {
    width: 145px;
    height: 180px;
  }

  .imagem-demais-relogios {
    width: 220px;
    height: 160px;
  }

  .marcas-relogios span {
    padding: 7px 9px;

    font-size: 9px;
  }

  .conteudo-categoria,
  .etapa,
  .card-localizacao,
  .card-instagram {
    padding: 24px;
  }

  .grade-instagram {
    grid-template-columns: 1fr;
  }

  .linha-horario {
    flex-direction: column;

    gap: 5px;
  }

  .linha-horario strong {
    text-align: left;
  }
}