/*
      Padrões de estilo inspirados no site informado:
      - Paleta azul-escuro + amarelo de destaque
      - Tipografia sans (Inter) e hierarquia forte nos títulos
      - Botões arredondados, barras e cards com sombra suave
      - Layouts responsivos em grid, navegação fixa no topo
      Observação: substitua logotipo, textos e imagens pelos do seu negócio.
    */

:root {
  --brand-blue: #0b2b6a;
  /* azul primário */
  --brand-blue-2: #103a8c;
  /* variação mais viva */
  --brand-yellow: #65bef1;
  /* destaque */
  --text: #1b1f29;
  --muted: #556070;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --card: #ffffff;
  --border: #e5e8f0;
  --success: #199a5b;
  --danger: #c41c1c;
  --shadow: 0 10px 24px rgba(16, 58, 140, .08);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1200px;
}

* {
  box-sizing: border-boxm;
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.nav img {
  margin-left: 20%;
  max-height: 85px;
  width: auto;
}

a {
  color: inherit;
  text-decoration: none
}


.container {
  width: 100%;
  max-width: 100%;
}

/* Navbar fixa */
.nav {
  max-width: 100%;
  display: flex;
  max-height: 95px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand-yellow);

  background-color: #0b2b6a;

}



.nav .slogan {
  display: flex;
  background-color: #f9f9fa;
  border-bottom-right-radius: 90px;
  ;
  min-width: 25%;
  width: 25%;
  position: relative;
  height: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px 0px;
  padding: 5px 0px;
  text-align: center;
  margin: 30px auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px 50px
}

.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  position: relative;
  box-shadow: var(--shadow)
}

.brand__name {
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--brand-blue);
  font-size: 1.12rem
}

.nav__links {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: auto;
  max-width: 100%;
}

.nav__links a {
  padding: 21px 8px;
  background-color: transparent;
  max-width: 100%;
  max-height: 95px;
  font-size: 13px;
}

.nav__links a:hover {
  background: #024a8443;
  color: white;
  transform: translateY(-1px)
}

.btn {
  appearance: none;
  border: 10px;
  ;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 18px;
  transition: .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.btn--primary {
  background: #458bb4;
  color: white;
}

.btn--primary:hover {
  transform: translateY(-1px);
  text-decoration: underline;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--brand-blue);
  color: white;
  background: #0f2188;
}

.btn--outline:hover {
  color: #fff;
  text-decoration: underline;
  transform: translateY(-1px)
}



.nav .container .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  border: none;
  max-width: 100%;
  padding: 10px;
  gap: 10px;

}


.outer-box :hover {

  .btn--outline:hover {
    background: var(--brand-blue);
    color: #fff !important
  }

  ;
  transform: translateY(-2px);

}




.nav .container .outer-box .button-sell-two {
  max-width: 100%;
  height: 60px;
  max-height: 60px;
  border-radius: 10px;
  background-color: #458bb4;

}

.nav .container .outer-box .button-sell-two .text {
  font-size: 16px !important;


}

.nav .container .outer-box .botton-sell .icon {
  float: left;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--brand-blue-2) !important;
}

.button-sell svg {
  position: relative;
  top: 0px;
  width: 40px;
  height: 30px;
  stroke-width: 0;
  fill: var(--white) !important;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);

}

.button-sell .text {
  float: left;
  font-size: 12px !important;
  letter-spacing: 0px;
}

.button-sell .text .text-1,
.button-sell .text .text-3 {
  line-height: 1.1;
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
}

.button-sell .text .text-2 {
  font-size: 18px !important;

  margin: 0px;
  padding: 0px;
  line-height: 1.1;
  letter-spacing: 0px;
}

.button-sell {
  position: relative;
  padding: 10px 20px;
  font-weight: bold;
  color: white !important;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  background-size: 200% auto;
  background-image: linear-gradient(to right, var(--Whats1) 0%, var(--Whats2) 50%, var(--Whats1) 100%);
  -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
  -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
  box-shadow: 0px 5px 25px 0px var(--blackrgba1);
  display: flex;
  align-items: center;
  background-color: green;
  width: 100%;
  height: 60px;
  border-radius: 10px;
}


.button-sell .icon {
  float: center;
  width: 65px;
  filter: invert(1);

}


.chamado-grupo {
  width: 40% !important;
  height: auto !important;
  display: inline-block;
  margin-left: 4%;
  padding-top: 50px;
  padding-bottom: 20px;

}

/* .chamado-grupo h2, h1, h3 {
      color: white !important;
    } */


.eyebrow {
  width: 60%;
  max-width: 60%;
  height: 15px;

  padding-bottom: 5px;

}

.redes__sociais__topo {
  display: flex !important;
  width: 98% !important;
  height: 30px !important;

  justify-content: flex-end;
  gap: 15px !important;
  padding-top: 20px !important;

}

.redes__sociais__topo h4 {
  margin-top: 5px !important;
}






.principal {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;

  /* background-image: url("imagens/o-ceu-azul-claro_103864-645.avif"); background-size: cover; */
}

/* início carrossel/slider __________________________________________*/

.slider {
  width: 50% !important;
  height: 400px !important;
}

.slider img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;

}





/* final carrossel/slider */


/* Hero */
.hero {
  position: relative;
  right: 60px;
  background:
    radial-gradient(80% 60% at 20% 10%, rgba(255, 209, 0, .13), transparent 60%),
    radial-gradient(90% 80% at 100% 0%, rgba(16, 58, 140, .12), transparent 60%),
    linear-gradient(180deg, #fff, #f9fbff 65%);
  border-bottom: 1px solid var(--border);

}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 36px;
  padding: 48px 0 32px
}

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brand-blue);
  font-size: .8rem
}

.hero h1 {
  font-size: clamp(2rem, 3.4vw + 1rem, 3.2rem);
  line-height: 1.1;
  margin: 10px 0 16px;
  color: var(--brand-blue)
}

.hero p {
  font-size: clamp(1rem, .7vw + .9rem, 1.125rem);
  color: var(--muted);
  max-width: 60ch
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 3px;
}

/* .hero-card{ 
      background: var(--card); border:1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow);
      display:grid; grid-template-columns: 1fr 1fr; gap: 14px, }
    .hero-card__item{ display:flex; align-items:center; gap:12px }
    /* .hero-card__item strong{ color: var(--brand-blue) }  ctrl+k ctrl+c */

.hero-card {
  background: var(--card);
  border: 5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow);
  display: inline-block;
  width: 40%
}

.hero-card__item1 {
  display: inline-block;
  width: 100%;
  height: auto
}

.hero-card__item1 strong {
  color: var(--brand-blue)
}

.hero-card__item2 {
  display: inline-block;
  width: 100%;
  height: auto
}

.hero-card__item2 strong {
  color: var(--brand-blue)
}

.hero-card__item3 {
  display: inline-block;
  width: 100%;
  height: auto
}

.hero-card__item3 strong {
  color: var(--brand-blue)
}

.hero-card__item4 {
  display: inline-block;
  width: 100%;
  height: auto
}

.hero-card__item4 strong {
  color: var(--brand-blue)
}



/* Seções base */
section {
  padding: 56px 0
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section__title {
  padding: 12px;
  font-size: clamp(1.4rem, 1.6vw + 1rem, 2rem);
  color: var(--brand-blue)
}

.section__desc {
  color: var(--muted);
  max-width: 65ch
}

/* Serviços */
.services {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.grid {
  display: grid;
  gap: 18px
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr)
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow)
}

.card .chip_vidros {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .9rem;
  background: #72da94;
  color: var(--brand-blue);
  padding: 6px 10px;
  border-radius: 999px
}

.card h3 {
  margin: .1rem 0 .3rem;
  color: var(--text);
  font-size: 1.04rem
}

.card p {
  color: var(--muted);
  font-size: .98rem
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .8rem;
  background: #eef3ff;
  color: var(--brand-blue);
  padding: 6px 10px;
  border-radius: 999px
}

/* Destaques/CTA em faixa */
.band {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-2));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow)
}

.band strong {
  font-size: 1.1rem
}

/* Depoimentos */
.testi {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px
}

.rating {
  display: flex;
  gap: 4px
}

.rating span {
  width: 18px;
  height: 18px;
  background: var(--brand-yellow);
  clip-path: polygon(50% 0%, 64% 35%, 100% 38%, 72% 60%, 82% 100%, 50% 78%, 18% 100%, 28% 60%, 0 38%, 36% 35%)
}

.quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow)
}

/* Lojas */
.stores .grid--3 .card {
  padding: 16px
}

.store__name {
  font-weight: 800;
  color: var(--brand-blue)
}

.store__meta {
  display: grid;
  gap: 6px;
  font-size: .95rem;
  color: var(--muted)
}

.store__meta a {
  text-decoration: underline;
  text-underline-offset: 3px
}

/* Contato */
.contact {
  background: var(--bg-soft);
  border-top: 1px solid var(--border)
}

form {
  display: grid;
  gap: 12px
}

.fld {
  display: grid;
  gap: 6px
}

.fld label {
  font-weight: 600;
  color: var(--muted);
  font-size: .92rem
}

.fld input,
.fld textarea,
.fld select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  font: inherit;
  background: #fff
}

.fld input:focus,
.fld textarea:focus,
.fld select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(16, 58, 140, .08)
}


.parceiros {
  width: auto;
  height: 100%;
  max-width: 99%;
  border: #cecfcf 2px solid;
  padding: 12px;

}

.titulo_head h2 {
  font-size: clamp(1.4rem, 1.6vw + 1rem, 2rem);
  color: var(--brand-blue)
}

.parceiros .lista-parceiros .parceiro1 {
  width: 300px;
  height: 30px;
  max-width: 100%;
  background-image: url('imagens/parceiros/autotrac.svg');
  background-size: 100% 100%;
  margin: 5px 5px;

}

.parceiros .lista-parceiros .parceiro2 {
  width: 180px;
  height: 30px;
  background-image: url('imagens/parceiros/JAHU\ -\ LOGOTIPO\ site_edited.avif');
  background-size: 100% 100%;


}

.parceiros .lista-parceiros .parceiro3 {
  width: 200px;
  height: 70px;
  background-image: url('imagens/parceiros/logo-autoglass.png');
  background-size: 100% 100%;


}

.parceiros .lista-parceiros .parceiro4 {
  width: 300px;
  height: 60px;
  background-image: url('imagens/parceiros/logo-paranabor.png');
  background-size: 100% 100%;


}

.parceiros .lista-parceiros .parceiro5 {
  width: 180px;
  height: 130px;
  background-image: url('imagens/parceiros/omnilink.jpg');
  background-size: 100% 100%;
  margin: 15px 5px;


}

.parceiros .lista-parceiros .parceiro6 {
  width: 180px;
  height: 60px;
  background-image: url('imagens/parceiros/onix.png');
  background-size: 100% 100%;
  margin: 5px 5px 55px;


}

.parceiros .lista-parceiros .parceiro7 {
  width: 250px;
  height: 40px;
  background-image: url('imagens/parceiros/pilkington.png');
  background-size: 100% 100%;
  margin: 5px 5px 55px;
}

.parceiros .titulo_head .section__titulo {
  font-size: clamp(1.4rem, 1.6vw + 1rem, 2rem);
  color: var(--brand-blue);
  width: 100%;
  height: 100%;
}


.parceiros .lista-parceiros {

  display: flex;
  width: 100%;
  max-width: 100%;
  height: 100%;
  gap: 55px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;


}



/* Rodapé */
.footer {
  padding-left: 24px;
  padding-right: 24px;
  background: #0a255c;
  color: #e5edff;
  margin-top: 56px
}

.footer a {
  color: #fff
}

.footer-top {
  padding: 28px 0;
  display: flex;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px
}

.footer__brand {
  display: flex;
  gap: 12px;
  align-items: center
}

.footer__brand .brand__logo {
  background: linear-gradient(135deg, #fff, #dbe7ff);
  box-shadow: none
}

.brand__logo img {
  width: 100%;
  height: 100%;
  position: absolute;
  justify-content: center;
}

.footer_atendimento {

  width: 40% !important;
}



.redes__sociais__rodape {
  color: #fff;
  /* display: flex  !important; */
  width: 40% !important;
  height: auto !important;
  /* gap: 15px !important; */
  /* padding-top: 20px !important;     */

}

.redes__sociais__rodape h3 {
  margin-top: 5px !important;
  font-size: 18px !important;
}

.slogans__redes img {
  padding: 0px 10px !important;
}

.subtle {
  color: #b9c8ea
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem
}

.btn--outline2 {
  border: #b9c8ea 2px solid;
  background-color: #199a5b;
}


/* INÍCIO BOTÃO VOLTAR AO TOPO */

#backToTopBtn {
  display: none;
  /* Escondido por padrão */
  position: fixed;
  /* Posição fixa na tela */
  bottom: 100px;
  /* 30px do rodapé */
  right: 10px;
  /* 30px da direita */
  z-index: 99;
  /* Garante que o botão fique sobre outros elementos */
  border: none;
  /* Sem borda */
  outline: none;
  /* Sem contorno */
  background-color: #458bb4;
  /* Cor de fundo */
  color: white;
  /* Cor do texto */
  cursor: pointer;
  /* Mouse indica que é clicável */
  padding: 15px;
  /* Espaçamento interno */
  border-radius: 10px;
  /* Bordas arredondadas */
  font-size: 18px;
  /* Tamanho da fonte */
  transition: background-color 0.9s;
  /* Efeito de transição suave */
}

#backToTopBtn:hover {
  background-color: #556070;
  /* Cor de fundo ao passar o mouse */
}

/* Estilos para quando o botão estiver visível (controlado pelo JavaScript) */
.visible {
  display: block !important;
}

/* FIM BOTÃO VOLTAR AO TOPO */





/* Responsividade */
@media (max-width: 1200px) {

  .hero-inner,
  .testi {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr
  }
}

@media (max-width: 840px) {
  .grid--3 {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 560px) {
  .nav__links {
    display: none
  }

  .grid--3 {
    grid-template-columns: 1fr
  }

  .hero-card {
    grid-template-columns: 1fr
  }
}