html {
  height: 100%;
  margin: 0;
  padding: 0;

  font-size: 62.50%;
}


main {
  flex: 1 0 auto; /* ocupa espaço sobrando */
}


body {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;

  background-color: black;
  
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.4rem;

  flex-direction: column;
  min-height: 100vh;
}


/*CABECALHO*/
    .layout-cabecalho {
      height: 80px;
      line-height: 80px;
      border-bottom: 1px solid #FFD700;

      background-color: #000;
    }

    .navegacao > img{
      margin-top: 12px;
    }

    .layout-cabecalho--home{
      position: fixed;
      top: 0;
      left: 0;
      right: 0;

      z-index: 9999;
    }


/*---------------------*\
      NAVEGACAO MENU
\*---------------------*/
.navegacao{
}

.navegacao__menu{
  float: right;
}


/*--------------------------*\
      BOTAO CHAVEADOR MENU
\*--------------------------*/
.botao-chaveador{
  width: 60px;
  height: 60px;
  border: none;
  margin-top: 10px;
  background-image: url("../imagens/bar_dourado.png");
  background-color: #000;
  outline: none;
  padding: 0;
  margin-right: 20px;
}

@media (min-width: 992px){
  .botao-chaveador{
    display: none;
  }

}

/*--------------------------*\
            MENU
\*--------------------------*/
.menu{
  margin: 0;

  font-size: 1.4rem;

  list-style: none;
}

@media(max-width: 991px){

.menu{
    position: fixed;
    top:0;
    left:0;
    bottom:0;

    display: none;
    width: 100px;
    padding: 20px;
    border-right: 1px solid #000;

    background-color: #000;
  }

  .menu a {
    text-decoration: none;
    color: #FFD700;
  }

  .menu__item{
    display: block;

    line-height: 3;
  }

  .menu__item--botao{
    margin-top: 20px;
  }

  .menu--exibindo{
    display: block;
  }
}


@media(min-width: 992px){
  .menu a {
    text-decoration: none;

    list-style: none;

    color: #FFD700;
  }
  .menu__item{
    display: inline-block;
    padding-right: 20px;
  }

  .menu__item:last-of-type {
    padding-right: 0px;
  }

  .menu a:hover{
  transform: scale(1.05);
  filter: brightness(0.9);
  }
}

/*--------------------------*\
       IMAGEM BANNER
\*--------------------------*/

.banner {
  position: relative;
  margin-top: 100px;   /* deixa espaço pro cabeçalho fixo */
  width: 100%;
  height: 300px;      /* altura padrão do banner */
  overflow: hidden;
}

.imagem-fundo {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* cobre todo espaço sem distorcer */
}

@media (max-width: 768px) {
  .banner {
    height: 300px;   /* altura menor no Tablet*/
  }
}

@media (min-width: 769px) {
  .banner {
    height: 400px;;   /* altura maior em telas grandes */
  }
}


@media (min-width: 1200px) {
  .banner {
    height: 450px;;   /* altura maior em telas grandes */
  }
}

/*--------------------------*\
       SESSAO DE APPS
\*--------------------------*/
.app-links {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;

}

.baixeapp,
.qualidade {
  width: 250px;
  height: auto;
}

.store-icon {
  width: 200px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 8px;
}

.store-icon:hover {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.app-spacer {
  height: 100px;
}

/*------------------------*\
    CORPORATIVO
\*------------------------*/

.chamada__cliente, .empresa{
  background-color: #000;
  color: #fff;

  font-family: arial, sans-serif;
  text-align: center;
  font-weight: normal;
  font-size: 1.4em;

  line-height:40px;
}

.faleconosco{
  padding: 0.4em 0.6em;
  border-radius: 5px;
  line-height:60px;

  background-color: #FFD700;
  color: #000;

  font-size: 1.0em;
  text-decoration: none;
  font-family: arial, sans-serif;
}



.bloco-mvv {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;

  background-color: #FFD700;
  padding: 40px 20px;
  color: #fff;
}

.item-mvv {
  border-radius: 12px;
  padding: 20px;
  width: 300px;

  background-color: #000;

  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.item-mvv:hover{
  transform: translateY(-5px);
}

.item-mvv h2 {
  color: #FFD700;
  margin-top: 15px;
  font-size: 1.6em;
}

.item-mvv p {
  font-size: 1.3em;
  margin-top: 10px;
  color: #ddd;
}

.imagem-mvv {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .bloco-mvv {
    flex-direction: column;
    align-items: center;
  }

  .item-mvv {
    width: 90%;
  }

  .app-links {
    flex-direction: column;
    padding: 10px 0px;
  }

  .store-icon,
  .qualidade {
    width: 80%;
    max-width: 300px;
    border-radius: 10px;
    align-items: center;
    height: auto;
    margin-left: 35px;
  }
  .baixeapp,{
    align-items: left;
    width: 50%;
    max-width: 100px;
    border-radius: 10px;
    height: auto;
    margin-left: 0;
  }
}

/*--------------*\
      BOTAO
\*--------------*/
.botao--gestor-inline {
  display: inline-block;
  margin-left: 10px;
  padding: 0.0em 0.6em;
  border-radius: 5px;

  background-color: #FFD700;
  color: #000;

  font-size: 0.9em;

  
  text-decoration: none;
  vertical-align: middle;
}

.botao--gestor-inline:hover, .faleconosco:hover  {
  background-color: #DAA520;
}

.zap{
  display: inline-block;
  width: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-decoration: none;
 }

.fone{
  display: inline-block;
  width: 60px;
  margin-bottom: 20px;
  margin-left: 30px; 
}


.zap:hover, .fone:hover, .botao--mensagem:hover{
  transform: scale(1.05);
  filter: brightness(0.9);
}

.botao--mensagem{
  background-color: #000;
  color:#FFD700;
  padding: 5px;
  border-radius: 5px;
}


/* Botão responsivo */
@media (max-width: 600px) {
  .chamada__cliente {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .botao--gestor-inline {
    margin-left: 0;
  }

  .botao--mensagem{
    margin-bottom: 10px;
    background-color: #000;
    color:#FFD700;
    padding: 5px;
    border-radius: 5px;
}

}

/*--------------*\
      CONTATO
\*--------------*/

.img-contato{
  float: left;
  margin-left: 5%;
  margin-top: 10px;
  width: 20%;
}

.contato{
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  margin-left: 10px;
  text-decoration: none; 
}

.telefone {
  display: inline-block;
  margin-left: 10px;
  margin-top: 40px;

  color: #fff;

  font-size: 2.0rem;
  text-decoration: none; 
  line-height: 1.5;
}

.email {
  display: inline-block;
  margin-top: 10px;
  margin-left: 10px;

  color: #fff;

  font-size: 1.6rem;
  text-decoration: none; 
}

.telefone::before {
  content: "☎ ";
  color: #FFD700;
}

.email::before {
  content: "✉ ";
  margin-right: 5px;
  color: #FFD700;
}


/*---------------------*\
      Formulario
\*---------------------*/


.titulo-formulario{
  margin: 0 60px;
  margin-bottom: 10px;

  font-size: 2.6rem;
  font-weight: normal;
  text-align: center;
 }

/*---------------------*\
    Grupo Formulario
\*---------------------*/
.grupo-entrada{
  margin: 0 60px;
  margin-bottom: 15px;
}

.grupo-entrada > label{
  display: block;
  font-weight: bold;
}

/*---------------------*\
         CAMPO
\*---------------------*/
.campo{
  display: block;
  width: 100%;
  height: 2.8rem;

  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;

  font-size: 1.4rem;
}

#mensagem {
  display: block;
  width: 100%;
  min-height: 60px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical; /* permite o usuário redimensionar */

  line-height: 1.4;
  font-size: 16px;
  box-sizing: border-box;
}


/*----------------------------------------*\
      MODIFICADOR MENSAGEM - FALE CONOSCO
\*----------------------------------------*/

.sessao-formulario {
  position: relative;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
}

.imagem-flutuante {
  position: absolute;
  top: -57%;
  left: -5%;
  width: 22%;
  max-width: 40%;
}

.formulario {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 20px;
  position: relative;
  border-radius: 10px;

  background-color:#FFD700;
  
  z-index: 11;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

textarea#mensagem {
  width: 100%;
  min-height: 60px;
  padding: 10px;
  resize: vertical;
  line-height: 1.4;
  font-size: 16px;
  box-sizing: border-box;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .contato{
    display: inline-block;
    width: 40%;
    margin-top: 10px;
    margin-left: 45%;
    text-decoration: none; 
  }

  .imagem-flutuante{
  display: inline-block;
  width: 30%;
  left: 5%;
  }  

  .formulario {
    width: 80%;
    display: block;

  }

  .sessao-formulario{
  margin-left: 0;
  }
}

/* Responsivo para Tablet */
@media (max-width: 1101px) {
  .contato{
    display: inline-block;
    width: 80%;
    margin-top: 10px;
    margin-left: 10%;
    text-decoration: none; 
  }

  .imagem-flutuante{
  display: inline-block;
  width: 20%;
  left: 5%;
  }  

  .formulario {
    width: 80%;
    display: block;

  }

  .sessao-formulario{
  margin-left: 0;
  }
}

/*---------------------*\
      LOCALIZACAO
\*---------------------*/

.bloco-localizacao {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;

  color: #fff;

  text-align: center;
}

.localizacao {
  margin-bottom: 0.3em;

  font-size: 1.8em;
  
}

.localizacao-endereco {
  margin-bottom: 1.5em;
  padding: 0 1rem;

  font-size: 1.1em;
}

.mapa-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* proporção 16:9 */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.mapa-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsivo */
@media (max-width: 600px) {
  .localizacao {
    font-size: 1.4em;
  }

  .localizacao-endereco {
    font-size: 1em;
  }
}


/*--------------*\
      RODAPE
\*--------------*/


.layout-rodape{
  width: 100%;
  padding: 5px 0;

  color: #FFD700;
  
  text-align: center;
  font-size: 1.6rem;

  flex-shrink: 0; /* para o footer não encolher */
}

body, html {
  overflow-x: hidden;
}

/* ----------------------------- */
/*        CARROSSEL IMAGENS     */
/* ----------------------------- */


.container-banner {
  width: 100%;
  max-width: 1400px; /* opcional */
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.carrossel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botões */
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 10;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Bolinhas */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* ----------------------------- */
/*   AJUSTES RESPONSIVOS CARROSSEL */
/* ----------------------------- */
@media (max-width: 768px) {
  .carrossel {
    height: 250px; /* altura menor para celular */
  }

  .btn {
    font-size: 1.5rem;
    padding: 6px;
  }

  .dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

@media (max-width: 480px) {
  .carrossel {
    height: 200px;
  }

  .btn {
    font-size: 1.2rem;
    padding: 5px;
  }
}

/* =============================== */
/* BOTÃO FIXO WHATSAPP (AJUSTADO) */
/* =============================== */
.whatsapp-fixo {
  position: fixed;
  bottom: 40px !important;
  right: 30px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: pular 1.8s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0.6;
}

.whatsapp-fixo img {
  width: 60px;
  height: 60px;
}

.whatsapp-fixo:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px #25D366;
}

/* =============================== */
/* ANIMAÇÃO DE PULO */
/* =============================== */
@keyframes pular {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* =============================== */
/* RESPONSIVO */
/* =============================== */

/* Tablets (até 991px) */
@media (max-width: 991px) {
  .whatsapp-fixo {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 16px;
  }

  .whatsapp-fixo img {
    width: 50px;
    height: 50px;
  }
}

/* Celulares médios (até 768px) */
@media (max-width: 768px) {
  .whatsapp-fixo {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 15px;
  }

  .whatsapp-fixo img {
    width: 50px;
    height: 50px;
  }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
  .whatsapp-fixo {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 12px;
  }

  .whatsapp-fixo img {
    width: 50px;
    height: 50px;
  }
}
/* ---------------------------------------- */
/* AJUSTE DE ESPAÇAMENTO ENTRE BANNER E APP */
/* ---------------------------------------- */
@media (max-width: 768px) {
  .banner {
    margin-bottom: 0;   /* elimina o espaço extra do banner */
    height: 260px;      /* altura ideal para mobile */
  }

  .app-links {
    margin-top: 10px;   /* reduz o espaçamento superior */
    padding-top: 0;
  }
}

/* Pequeno ajuste para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .banner {
    margin-bottom: 10px;
  }

  .app-links {
    margin-top: 15px;
  }
}
.grecaptcha-badge { 
  visibility: hidden; 
}