/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
  }
  
  /* Variables */
  :root {
    --primary-color: rgb(235, 195, 51);
    --primary-color-hover: rgb(163, 135, 33);
    --secondary-color: rgb(235, 195, 51);
    --text-white: #fff;
    --text-grey: #999;
    --text-color: #000;
    --bg-color: #fff;
    --bg-color-secondary: rgb(0,0,0,0.02);
    --footer-bg-color: #333;
    --footer-text-color: #fff;
    --footer-link-color: rgb(235, 195, 51);
  }
  
  
  body {
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
    background-color: var(--bg-color);
  }
  
  .container {
      width: 90%;
      max-width: 1600px;
      margin: 0 auto;
  }
  
  
  section{
      padding:4rem 1rem;
  }
  
  @media(max-width:980px){
      section{
          padding:2rem 1rem;
      }
  }
  

  .btn-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }
  
  .btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2.4rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 100px;
  }
  
  .btn:hover {
    background-color: var(--primary-color-hover);
    border-color:var(--primary-color-hover);
    color: white;
  }


.service-hero{
    background: url("/images/contato.jpg");
    background-size: cover;

    background-position: center;
    background-attachment: fixed;
    position: relative;
  }


  .service-hero .hero-mask{
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    z-index: 1;
    transition: backdrop-filter 0.3s ease; /* Transição suave para o zoom */
  }


  .service-hero:hover  .hero-mask{
    backdrop-filter: blur(10px);
  }

  .service-hero .container{
    z-index: 2;
    position: relative;
    color: white;
  }

  .service-hero .container .grid{
    display: grid;
    grid-template-columns: 2fr 1fr;
  }

  @media(max-width: 980px){
    .service-hero .container .grid{
        grid-template-columns: 1fr;
    }
  }

  .service-hero .container .grid .col{
    display: flex;
    flex-direction: column;
    gap:1rem;
  }

  .service-hero .container .grid .col p{
    color:rgba(255,255,255,0.9)
  }

  .service-hero .container h2{
    font-size: 2rem;
  }
  .service-hero .container p{
    font-size: 1.2rem;
  }

  .service-content{
    background-image: url("/images/");
  }

  .service-content .container .grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:6rem;
    align-items: center;
  }

  .service-content .container .grid img{
    width: 65%;
    margin:0 auto;
}


@media(max-width: 1280px){
  .service-content .container .grid img{
    width: 80%;
    margin:0 auto;
}

  }

  @media(max-width: 980px){
    .service-content .container .grid{
        grid-template-columns: 1fr;
    }
   
  }

  .service-content .container .grid .col{
    display: flex;
    gap:1rem;
    flex-direction: column;
  }

  .service-content .container .grid .col button{
    display: flex;
    align-self: flex-start;
    margin-top: 1rem;
  }

.service-content .container .grid h2{
  font-weight: 200;
  font-size: 2.5rem;
  line-height: 3rem;
}
  
  .service-content .container .grid h2 b{
    color: var(--secondary-color);
  }

  .service-content .container .grid h2 p{
    color:rgba(0,0,0,0.5);
    font-size: 1.2rem;
  }


.service-content .contact-infos{
  display: flex;
  flex-direction: column;
  gap:1rem;
}

.service-content .contact-infos{
  color: #111;
  width: 70%;
}

.service-content .contact-infos div{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:.65rem;
  font-size:1.2rem;
}

.service-content .contact-infos div i{
  color:var(--secondary-color)
}

.service-content .social{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:1rem;
}
.service-content .social a{
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  color:black;
  gap:.6rem;
}
.service-content .social a i{
  color:#fff;
  font-size: 1.5rem;
  width: 35px;
  text-decoration: none;
  height: 35px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  border-radius: 100%;

  opacity: 1;
  transition: opacity .12s ease-in-out;
  justify-content: center;
}
.service-content  a:hover{
  opacity: .7;
}



  .gallery{
    display: grid;
    width: 60%;
    align-self: flex-end;
    gap: 1rem;
  }

  .gallery .gallery-item{
    height: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* This makes the items square */
    box-shadow: 0 0px 20px rgba(0,0,0, 0.4);
  }

  @media(max-width: 1140px){
    .gallery{
      
      width: 100%;
      align-self: center;

    }
  }

  .gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
   
    transition: transform 0.2s ease;
  }
  
  .gallery img:hover{
    transform: scale(1.2);
    cursor: pointer;
  }

  /* Estilos para o modal */
.modal {
  display: none; /* Oculto por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease; /* Animação para aparecer suavemente */
}

/* Estilos para o conteúdo do modal com animação de zoom */
.modal-content {
  background-color: transparent;
  max-width: 90vw; /* Limita a largura do modal em relação à tela */
  height: 90vh; /* Limita a altura do modal em relação à tela */
  transform: scale(0.5); /* Começa com o modal reduzido */
  animation: zoomIn 0.3s ease forwards; /* Animação de zoom in */
}

.modal-content img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Mantém a proporção da imagem */
}

.close-button {
  position: absolute;
  text-shadow: 0 0px 5px rgba(0,0,0,0.4);
  right: .8rem;
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001; /* Garante que o botão esteja sobre a imagem */
}


@media(max-width: 980px){
  .close-button{
    top: -2.5rem;
    right: -.45rem;
  }
}

/* Animação de zoom in (abrindo) */
@keyframes zoomIn {
  0% {
      transform: scale(0.5); /* Começa pequeno */
      opacity: 0;
  }
  100% {
      transform: scale(1); /* Expande para o tamanho normal */
      opacity: 1;
  }
}

/* Animação de zoom out (fechando) */
@keyframes zoomOut {
  0% {
      transform: scale(1); /* Começa no tamanho normal */
      opacity: 1;
  }
  100% {
      transform: scale(0.5); /* Diminui o tamanho */
      opacity: 0;
  }
}

/* Keyframes para fade in (aparecer suavemente) */
@keyframes fadeIn {
  0% {
      background-color: rgba(0, 0, 0, 0);
  }
  100% {
      background-color: rgba(0, 0, 0, 0.75);
  }
}


footer{
  background-color: #000;
  padding:4rem 1rem;
  position: relative;
  margin-top: 25px;
}

footer::before{
  content: "";
  background-image: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  ) !important;
  width: 100%;
  height: 25px;
  position: absolute;
  top:-25px;
  left: 0;
}

footer .container .grid{
  display: grid;
  grid-template-columns: 1fr 1.65fr 1fr;
  align-items: center;
  gap:4rem;
}

@media(max-width: 980px){
  footer .container .grid{
    grid-template-columns: 1fr;
  }
}

footer .container .grid .col img{
  width: 70%;
  margin-bottom: 1rem;
}


footer .container .grid .col hr{
  border-color: #fff;
  border-width: 1px;
  border-style: solid;
}

footer .container .grid .col {
  display: flex;
  flex-direction: column;
  gap:2rem;
  color:#fff;
}

footer .container .grid .col .contact-infos{
  display: flex;
  flex-direction: column;
  gap:1rem;
}

footer .container .grid .col .contact-infos{
  color: #fff;
}

footer .container .grid .col .contact-infos div{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:.65rem
}

footer .container .grid .col .social{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:1rem;
}

footer .container .grid .col .social a{
  color:#000;
  font-size: 1.5rem;
  width: 35px;
  text-decoration: none;
  height: 35px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 100%;
  margin-top: 1rem;
  opacity: 1;
  transition: opacity .12s ease-in-out;
  justify-content: center;
}
footer .container .grid .col .social a:hover{
  opacity: .7;
}

footer .container .grid .col .menu{
  display: flex;
  gap: 2rem;
  flex-direction: row;
}

footer .container .grid .col .menu .menu-item div{
  display: flex;
  flex-direction: column;
  gap:.45rem;
  margin-top: .45rem;
}

footer .container .grid .col .menu a{
  text-decoration: none;
  color:#fff;
  opacity: 1;
  transform: opacity .12s ease;
}

footer .container .grid .col .menu a:hover{
  opacity: .7;
}

footer .container .grid .col iframe{
  width: 100%;
  border-radius: 12px;
  border:none;
  height: 200px;
}

footer .container .copy{
  text-align: center;
  color:rgba(255,255,255,0.6);
  margin-bottom: -2rem;
  margin-top: 4rem;
}

.clients{
  margin-bottom: 1rem;
}

.numbers{
  background-color: var(--bg-color-secondary);
  position: relative;
}

.numbers .container .grid{
  display: grid;
  
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.numbers .container .about-info{
  display: flex;
  gap: 2rem;
  z-index: 1;
  flex-direction: column;
  max-width: 100%;
}
.numbers .container .btn{
  color: var(--primary-color);
  width: auto;
  align-self: flex-start;
  margin-top: 1rem;
}
.numbers .container .btn:hover{
  color: white;
}

.numbers .container h2{
  font-weight: 200;
  font-size: 3rem;
  line-height: 3.5rem;
}

.numbers .container h2 b{
  color:var(--secondary-color);
}

.numbers .container .col{
  display: flex;
  justify-content: flex-end;
}

.numbers .container .numbers-list{
  display: flex;
  flex-wrap: wrap;
   gap: 3rem;
   margin-top: 1rem;
}

.numbers .container .numbers-list .number-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.numbers .container .numbers-list .number-item h2{
  font-weight: 800;
  font-size: 2.5rem;
  background: linear-gradient(
    95.27deg,
    var(--primary-color) -0.85%,
    var(--secondary-color) 89.32%
  );
  -webkit-background-clip: text;
  line-height: 2.5rem;
  -webkit-text-fill-color: transparent;
}
.numbers .container .numbers-list .number-item h3{
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .1rem;

}

#map{
  width: 70%;
}

#map .model-green .state{
  cursor: pointer;
}
#map .model-green .state.disabled{
  cursor: inherit;
}
#map .model-green .state .shape {
  fill: var(--primary-color);
}

#map .model-green .state.disabled .shape{
  fill: #BBB;
}

#map .model-green .state .label-icon-state {
  fill: #fff;
}

#map .state .label-icon-state {
  fill: #fff;
  font-family: Arial;
  font-size: 11px;
  line-height: 12px;
  font-weight: normal;
}

#map .state.state.disabled .label-icon-state{
  fill:#fff;
}

#map .model-green .state .label-icon-state.circle-label{
  fill:#fff;
}

#map .model-green .state.disabled .label-icon-state.circle-label{
  fill: #fff;
}

#map .model-green .state .label-state {
  fill: #BBB;
}



#map .state .label-state {
  display: none;
  font-family: Arial;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
}

#map .model-green .state .icon-state {
  fill: var(--primary-color-hover) ;
}

#map .model-green .state .icon-state .label-icon-state{
  fill: black !important;
}

#map .model-green .state.state.disabled .icon-state {
  fill: #BBB;
}

#map .model-green .state:hover .shape, #map .model-green .state.hover .shape {
  fill: #f70 !important;
}

#map .model-green .state.disabled:hover .shape, #map .model-green .state.hover .shape{
  fill: #BBB !important;
}

#map .model-green .state:hover .icon-state, #map .model-green .state.hover .icon-state {
  fill: #f70 !important;
}

#map .model-green .state:hover .icon-state, #map .model-green .state.hover .icon-state {
  fill: #f70 !important;
}
#map .model-green .state:hover .label-icon-state{
  fill:#fff !important;
}


#map .model-green .state.state.disabled:hover .icon-state, #map .model-green .state.hover .icon-state{
  fill: #999 !important;
}

#map .model-green .state .label-state {
  fill: #999;
}
#map .state:hover .label-state, #map .state.hover .label-state {
  display: block;
}

#map .state.disabled:hover .label-state, #map .state.hover .label-state{
  display: none;
}

@media(max-width:980px){
  .numbers .container .grid{
    grid-template-columns: 1fr;
  }

  .numbers .container .col{
    display: flex;
    justify-content: center;

  }
  
  .service-content .container .grid{
    gap:3rem;
  }
  
  #map{
    width:100%;
    margin-top: 4rem;
  }
  
}


.clients {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
.clients .swiper-slide img{
  width: 100%;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100)
}

.clients .swiper-slide img:hover{
  filter: grayscale(0)
}


.chat-box {
  display: flex;

  flex-direction: column;
  width: 100%;
  height: 300px;
  background-color: #fff;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.chat-header {
  background-color: #075e54;
  color: white;
  padding: 10px;
  display: flex;

  flex-direction: row;
  align-items: center;
}

.chat-header .avatar {
  position:relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px !important;

  margin-right: 10px;
}

.chat-header .avatar img{
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
}

.chat-header .avatar::after{
  content: "";
  position: absolute;
  bottom:0px;
  right:0px;
  width: 12px;
  height: 12px;
  background-color: #25d366;
  z-index: 2;
  border-radius: 50%; /* Certifique-se de que está redondo */
}

.chat-header .info {
  flex-grow: 1;
}

.chat-header .info h4 {
  margin: 0;
  font-size: 16px;
}

.chat-header .info p {
  margin: 0;
  font-size: 14px;
  opacity: .7;
}

.chat-body {
  padding: 10px;
  background:url('/images/bg-whats.png');
  background-size: cover;

  flex:1;
  position: relative;
}

.message {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  border-top-left-radius: 0;
  width: fit-content;
  max-width: 80%;
  margin-bottom: 10px;
  font-size: 14px;
  position: relative;
}

.chat-footer {
  display: flex;
  background-color: #fff;
  padding: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.chat-footer button {
  background-color: #25d366;
  display: flex;
  font-weight: 500;
  align-items: center;
  gap:.45rem;
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
  margin-top: 0 !important;
}

.chat-footer button:hover {
  background-color: #1da852;
}