* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: #275CFD;
  color: #000;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: auto;
  font-family: 'Inter', sans-serif;
}

h1 { font-family: 'Poppins', sans-serif; }

/* --------------- MENU NAVEGAÇÃO --------------- */ 

.navegacao {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(to right, #275CFD, #000000);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
}

.logo {
  width: 150px; 
}

.menu {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  gap: 1.2rem;
  flex: 1;            
}


.menu li {
  display: flex;
  align-items: center;
}

.menu-hamburguer{
  display: none;
}

.menu-link{
  display: flex;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem;
  transition: transform 0.3s, color 0.3s;
}

.menu-link:hover {
  color: #bed2f3;
}

.menu-link.active{
  color: #bed2f3;
  transform: scale(1.1);
}

.menu-link i {
  margin-right: 8px;
  vertical-align: middle; 
  font-size: 1.1em; 
}

#menu li:last-child a {   
  color: #0e0e0e;
  background-color: #ebebeb;
  border-radius: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  height: 35px;
}

#menu li:last-child a:hover {
  transform: scale(1.02);    
}

#menu li:last-child i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  height: 100%;
  aspect-ratio: 1 / 1;
  font-size: 1.3rem;
}

#menu li:last-child a.active {
  transform: none; 
}

/* --------------- MENU HAMBURGUER --------------- */

@media only screen and (max-width: 900px) { /* em telas até 900px ativa*/

 .hamburguer {
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%; 
    height: 60px; 
    cursor: pointer;
    z-index: 1000;
  }

  .logo{
    display: block;
  }

  .hamburguer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #275CFD, #000000);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
    z-index: -1; 
  }

  .hamburguer::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0c9"; 
    color: #fff;
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 20px; 
    transform: translateY(-50%); 
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    z-index: 1; 
  }

  .hamburguer.active::after {
    content: "\f00d"; 
    font-size: 3.1rem;
    text-shadow: none;
  }
}

.hamburguer.active::before {
  background-color: transparent; 
}

/* --------------- PAGINA INICIAL --------------- */ 

.cabecalho{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;   
}

.hero-container {
  width: 90%;
  max-width: 1500px;   
  border-radius: 40px;
  padding: 4rem 8rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;     
}

.hero-container::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-image: url("img/background-2.jpg");
  background-size: cover;
  background-position: center;
  z-index: -100; 
}

.hero-texto {
  max-width: 600px;
  text-align: left;
}

.h1-inicio {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);  
}

.cabecalho-subtitulo {
  font-size: 1.5rem;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: bold;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.cor-texto-subtitulo{
  color: #ffffff;   
}

.texto-rotativo {
  position: relative;
  height: 50px;  
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.texto-rotativo span {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: trocarTexto 9s infinite ease-in-out;  
}

.texto-rotativo span:nth-child(1) { animation-delay: 0s; }
.texto-rotativo span:nth-child(2) { animation-delay: 3s; }
.texto-rotativo span:nth-child(3) { animation-delay: 6s; }

@keyframes trocarTexto {
  0%   { opacity: 0; transform: translateY(10px); }
  10%  { opacity: 1; transform: translateY(0); }
  30%  { opacity: 1; transform: translateY(0); }
  40%  { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 0; }
}

.botao-servicos{
  display: inline-block;
  color: #0f0f0f;
  margin-top: 3rem;
  font-size: 1.1rem;
  background: #ffffff;
  border-radius: 35px;
  padding: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  font-weight: bold;
  animation: flutuar 2s ease-in-out infinite;
}

@keyframes flutuar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px); 
  }
}

.botao-servicos:hover{
    animation-play-state: paused; 
    transform: scale(1.02) !important;
}

/* --------------- PAGINA SERVIÇOS --------------- */ 

.servicos{
  min-height: 100vh;
  padding: 8rem;
  text-align: center;
  position: relative;
  display: block;
  justify-content: center;
}

.servicos::after {
  content: "";
  position: absolute;
  bottom: 0; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40vw solid transparent;   
  border-right: 40vw solid transparent;  
  border-radius: 10px;
  border-top: 1px solid #ffffff;        
  z-index: 1;
}

.servicos::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 90%;
  transform: translateX(-50%);
  width: 1000px;        
  height: 1000px;      
  max-width: 70vw;    
  max-height: 70vh;    
  background-image: url("img/detalhe-fundo.svg");
  filter: invert(66%) sepia(97%) saturate(2596%) hue-rotate(171deg) brightness(103%) contrast(101%);
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  z-index: -100;
  pointer-events: none;
  overflow: hidden;
}

.h1-servicos{
  color: #fff;
  font-size: 3rem;
}

.h2-servicos{
  font-size: 1.4rem;
  margin-top: 0.8rem;
  color: #ffffff;
}

.cards-servicos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 8rem;
}

.card {
  background-color: #ffffff;
  border-radius: 13px;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 310px;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  width: 100%;
  border-radius: 13px 13px 0 0;
  margin-bottom: 15px;
  
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #000000;
}

.card p {
  margin-bottom: 15px;
  color: #000000;
  padding: 6px;
}

.card .btn {
  display: inline-block;
  padding: 10px 40px;
  background-image: linear-gradient(to right, #275CFD, #62D1FF, #275CFD); 
  background-size: 200% 100%; 
  background-position: left;  
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-position 0.5s ease, transform 0.3s;
  margin: 1rem auto 1.3rem auto; 
  width: 190px;
  text-align: center;
  margin-left: auto; 
  margin-right: auto; 
  margin-top: auto;
}

.card .btn:hover {
  background-position: right; 
  transform: scale(1.02);     
}


/* --------------- PAGINA GALERIA/SOBRE --------------- */ 

.galeria{
    min-height: 100vh;
    padding: 8rem;
    text-align: center;
    position: relative;
    display: block;
    justify-content: center;
}

.galeria::after {
  content: "";
  position: absolute;
  bottom: 0; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40vw solid transparent;  
  border-right: 40vw solid transparent;  
  border-radius: 10px;
  border-top: 1px solid #ffffff;        
  z-index: 1;
}

.galeria::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  transform: translateX(-50%);
  width: 1000px;        
  height: 1000px;      
  max-width: 70vw;    
  max-height: 70vh;    
  background-image: url("img/detalhe-fundo.svg");
  filter: invert(66%) sepia(97%) saturate(2596%) hue-rotate(171deg) brightness(103%) contrast(101%);
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  z-index: -100;
  pointer-events: none;
  overflow: hidden;
}

.h1-galeria{
    color: #ffffff;
    font-size: 3rem;
}

.subtitulo-sobre{
    display: inline-block; 
    font-size: 1.2rem;
    max-width: 900px;
    margin-bottom: 3rem;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    margin: auto; 
}

.stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.stats h3{
  color: #bed2f3;
  margin-right: 1rem;
  font-size: 3.2rem;
}

.stats p{
  color: #ffffff;
  font-size: 1.1rem;
  text-align: left;
}

.fundo-numeros {
  padding: 20px;
  border-radius: 8px;
  background-color: #0c0c0c;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  margin: 4rem auto;
  max-width: 900px;
}

.stat-card{
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
}

.titulo-diferenciais{
  color: #fff;
}

.diferenciais-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.dif-card { 
  padding: 1.1rem;
  width: 280px;
  border-radius: 11px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  background-color: #ffffff;
}

.dif-icone {
  width: 55px;
  height: 55px;
  background: #0c0c0c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.dif-icone i {
  font-size: 1.5rem;
  color: #ffffff;
}

.dif-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #000000;
}

.dif-card p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.4rem;
}

/* --------------- PAGINA DEPOIMENTOS --------------- */ 

.depoimentos {
  padding: 8rem;
  text-align: center;
  min-height: 100vh;
  position: relative;
}

.depoimentos::after {
  content: "";
  position: absolute;
  bottom: -23;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;  
  border-right: 25px solid transparent;  
  border-top: 25px solid #275CFD;
  z-index: 1;
}

.title-depo {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
}

.h2-depoimentos{
  margin-bottom: 1rem;
  font-size: 1.4rem;
  margin-top: 0.8rem;
  color: #ffffff;
}

.carro-depoimentos{
  width: 450px;
  margin-bottom: 1rem;
}

.slider-container {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  margin: auto;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

.user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.user-info span{
  font-size: 1.2rem;
  color: #141414;
  font-weight: bold;
}

.user-info i{
  margin-left: 1rem;
  font-size: 1.2rem;
  color: #275CFD;
}

.stars{
  font-size: 1.2rem;
  color: #ffd250;
}

.slider {
  display: flex;
  transition: transform .4s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 3rem;
  background: #ffffff;
  align-items: center;
  justify-content: center;
}

.slide p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: #333;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: .7rem;
}

.dots button {
  width: 9px;
  height: 9px;
  background: #c7c7c7;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
}

.dots button.active {
  background: #585858;
}

.dots button:hover{
  background: #8f8f8f;
}

/* --------------- DICAS --------------- */ 

.dicas {
  width: 100%;
  padding: 6rem 2rem;
  text-align: center;
  min-height: 100vh;
  position: relative;
}

.dicas::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url("img/background.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1; 
}

.h1-dicas {
  color: #ffffff;
  font-size: 3rem;
}

.h2-dicas {
  color: #ffffff;
  font-size: 1.4rem;
  margin-top: 0.8rem;
  margin-bottom: 3rem;
}

.dicas-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dica-card {
  margin-top: 4rem;
  background: rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(3.8px);
    -webkit-backdrop-filter: blur(3.8px);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.dica-icone i {
  font-size: 1.5rem;
  color: #ffffff;
  background: #1f1f1f;
  padding: 1rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.dica-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.dica-card p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* --------------- PAGINA FAQ --------------- */ 

.faq {
    width: 100%;
    padding: 8rem 2rem;
    color: #ffffff;
    text-align: center;
    min-height: 100vh;
    position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 90%;
  transform: translateX(-50%);
  width: 1000px;        
  height: 1000px;      
  max-width: 70vw;    
  max-height: 70vh;    
  background-image: url("img/detalhe-fundo.svg");
  filter: invert(66%) sepia(97%) saturate(2596%) hue-rotate(171deg) brightness(103%) contrast(101%);
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  z-index: -100;
  pointer-events: none;
  overflow: hidden;
}

.faq::after {
  content: "";
  position: absolute;
  top: -3; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;  
  border-right: 25px solid transparent; 
  border-top: 25px solid #0e0e0e;      
  z-index: 0;
}

.faq-title {
  color: #fff;
    font-size: 3rem;
    margin-bottom: 5rem;
    letter-spacing: 1px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-image: linear-gradient(to right, #275CFD, #62D1FF);
    margin-bottom: 1.4rem;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.faq-question::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    content: "\f067"; 
    position: absolute;
    right: 2rem;
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: "\f068"; 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #275CFD;
    transition: max-height 0.4s ease;
    margin-bottom: 0.2rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem 2rem;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6rem;
    text-align: left;
}

/* --------------- PAGINA CONTATOS --------------- */ 
.contatos {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    background-image: linear-gradient(to bottom, #275CFD, #000000);
}

.contatos::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40vw solid transparent;  
  border-right: 40vw solid transparent;  
  border-radius: 10px;
  border-top: 1px solid #ffffff;        
  z-index: 1;
}

.contato-container {
  margin-top: 8rem;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    width: 90%;
    z-index: 1;
}

.contato-info {
    flex: 1 1 300px; 
    color: #131313;
    text-align: left;    
}

.contato-info h2 {
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.contato-info p {
    margin-bottom: 1rem;
}

.contato-info i{
  color: #1449AF;
}

.info-item {
    margin-bottom: 1rem;
}

.info-item i{
  margin-right: 0.5rem;
}

.info-item-sociais{
  margin-top: 3rem;
}

.info-item-sociais a{
    color: #0c0c0c;
  text-decoration: none;
  line-height: 2rem;
}

.info-item-sociais i{
  margin-right: 0.5rem;
}

.contato-form {
    flex: 1 1 300px;
    text-align: left;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
    background-color: #ebebeb; 
    resize: none;
    color: #202020;
}

.botao-envio {
      background-image: linear-gradient(to right, #275CFD, #62D1FF, #275CFD); 
    background-size: 200% 100%;     
    background-position: left;       
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-position 0.5s ease, transform 0.3s;
}

.botao-envio:hover {
    background-position: right;       
    transform: scale(1.02);           
}

.map-container {
  margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    z-index: 1;
}

iframe {
    width: 90%;
    max-width: 1200px;
    height: 250px;
    border-radius: 12px;
}

.copyright {
    font-size: 0.8rem;
    color: #ffffff;
    background: #000000;
    padding: 0.5rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.copyright a{
  color: #ffffff;
  text-decoration: none;
}

/* --------------- PAGINA RESPONSIVIDADE --------------- */ 

/* ----- Celulares pequenos ----- */
@media only screen and (max-width: 480px) {

.menu {
    position: fixed;
    background-color: #000;
    flex-direction: column;
    width: auto; 
    height: 100%; 
    top: 0;       
    left: 0;  
    justify-content: start;
    padding: 5rem 1rem;
    display: none;
}

.menu.active {
    display: flex;
}

.menu-link:hover {
    transform: none;
}

.menu-link.active{
    transform: none;
}

.navegacao {
    justify-content: space-between;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 90%;
    padding: 0.5rem 1rem;
    border-bottom: none;
    box-shadow: none;
}

  .logo {
    display: block; 
    position: fixed;
    top: 20px;
    right: 20px; 
    width: 120px; 
    z-index: 1001; 
  }

.cabecalho{
  padding: 0;
}

  .hero-container {
    flex-direction: column;
    padding: 10rem 1rem;
    gap: 2rem;
    width: 100%;
    border-radius: 0;
  }

  .h1-inicio {
    font-size: 1.7rem;
  }

  .cabecalho-subtitulo {
    font-size: 1rem;
  }

  .texto-rotativo {
    font-size: 1rem;
    height: auto;
  }

  .botao-servicos {
    font-size: 0.6rem;
    padding: 0.8rem 1.5rem;
  }

  /* ----- serviços ----- */

.servicos{
  min-height: 100vh;
  padding: 1rem 0;
  text-align: center;
  position: relative;
  display: block;
  justify-content: center;
}

.servicos::after {
  content: "";
  position: absolute;
  bottom: 0; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40vw solid transparent;   
  border-right: 40vw solid transparent;  
  border-radius: 10px;
  border-top: 1px solid #ffffff;        
  z-index: 1;
}

.h1-servicos{
  color: #fff;
  font-size: 1.3rem;
}

.h2-servicos{
  font-size: 0.8rem;
  margin-top: 0.8rem;
  color: #ffffff;
}

.cards-servicos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 4rem;
  margin-bottom: 5rem;

}

.card {
  background-color: #ffffff;
  border-radius: 13px;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  width: 100%;
  border-radius: 13px 13px 0 0;
  margin-bottom: 15px;
  
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #000000;
}

.card p {
  margin-bottom: 15px;
  color: #000000;
  padding: 6px;
  font-size: 0.9rem;
}

.card .btn {
  display: inline-block;
  padding: 10px 40px;
  background-image: linear-gradient(to right, #275CFD, #62D1FF, #275CFD); 
  background-size: 200% 100%; 
  background-position: left;  
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-position 0.5s ease, transform 0.3s;
  margin: 1rem auto 1.3rem auto; 
  width: 170px;
  text-align: center;
  margin-left: auto; 
  margin-right: auto; 
  margin-top: auto;
  font-size: 0.8rem;
}

.card .btn:hover {
  background-position: right; 
  transform: scale(1.02);     
}


  /* ----- sobre ----- */ 

.galeria{
    min-height: 100vh;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    display: block;
    justify-content: center;
}

.galeria::after {
  content: "";
  position: absolute;
  bottom: 0; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40vw solid transparent;  
  border-right: 40vw solid transparent;  
  border-radius: 10px;
  border-top: 1px solid #ffffff;        
  z-index: 1;
}



.h1-galeria{
    color: #ffffff;
    font-size: 1.3rem;
    margin-top: 5rem;
}

.subtitulo-sobre{
    display: inline-block; 
    font-size: 0.8rem;
    padding: 0 1rem 0 1rem;
    margin-bottom: 3rem;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    margin: auto; 
}

.stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.stats h3{
  color: #bed2f3;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.stats p{
  color: #ffffff;
  font-size: 0.6rem;
  text-align: left;
}

.fundo-numeros {
  padding: 20px;
  border-radius: 0px;
  background-color: #0c0c0c;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  margin: 3rem auto;
  max-width: 100%;
}

.stat-card{
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
}

.titulo-diferenciais{
  color: #fff;
  font-size: 1rem;
}

.diferenciais-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.dif-card { 
  padding: 1.1rem;
  width: 250px;
  border-radius: 11px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  background-color: #ffffff;
}

.dif-icone {
  width: 55px;
  height: 55px;
  background: #0c0c0c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.dif-icone i {
  font-size: 1.5rem;
  color: #ffffff;
}

.dif-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #000000;
}

.dif-card p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.4rem;
}

/* --------------- PAGINA DEPOIMENTOS --------------- */ 

.depoimentos {
  padding: 5rem 1rem;
  text-align: center;
  min-height: 100vh;
  position: relative;
  display: block;
}

.depoimentos::after {
  content: "";
  position: absolute;
  bottom: -23;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;  
  border-right: 25px solid transparent;  
  border-top: 25px solid #275CFD;
  z-index: 1;
}

.title-depo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.h2-depoimentos{
  margin-bottom: 1rem;
  font-size: 0.8rem;
  margin-top: 0.8rem;
  color: #ffffff;
}

.carro-depoimentos{
  width: 15rem;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.slider-container {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  margin: auto;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

.user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.user-info span{
  font-size: 1rem;
  color: #141414;
  font-weight: bold;
}

.user-info i{
  margin-left: 1rem;
  font-size: 1.2rem;
  color: #275CFD;
}

.stars{
  font-size: 1.1rem;
  color: #ffd250;
}

.slider {
  display: flex;
  transition: transform .4s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 3rem;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 2rem 0;
}

.slide p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: #333;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: .7rem;
}

.dots button {
  width: 5px;
  height: 5px;
  background: #c7c7c7;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
}

.dots button.active {
  background: #585858;
}

.dots button:hover{
  background: #8f8f8f;
}


/* --------------- DICAS --------------- */ 

.dicas {
  width: 100%;
  padding: 6rem 3rem;
  text-align: center;
  min-height: 100vh;
  position: relative;
  display: block;
}

.dicas::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url("img/background-mobile.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1; 
}

.h1-dicas {
  color: #ffffff;
  font-size: 1.3rem;
}

.h2-dicas {
  color: #ffffff;
  font-size: 0.9rem;
  margin-top: 0.8rem;
  margin-bottom: 3rem;
}

.dicas-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.dica-card {
  margin-top: 4rem;
  background: rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(3.8px);
    -webkit-backdrop-filter: blur(3.8px);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.dica-icone i {
  font-size: 1.5rem;
  color: #0e0e0e;
  background: #ffffff;
  padding: 1rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.dica-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.dica-card p {
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.5rem;
}


/* --------------- PAGINA FAQ --------------- */ 

.faq {
    width: 100%;
    padding: 8rem 1rem;
    color: #ffffff;
    text-align: center;
    min-height: 100vh;
    position: relative;
    display: block;
}



.faq::after {
  content: "";
  position: absolute;
  top: -3; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;  
  border-right: 25px solid transparent; 
  border-top: 25px solid #000000;      
  z-index: 0;
}

.faq-title {
  color: #fff;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-image: linear-gradient(to right, #275CFD, #62D1FF);
    margin-bottom: 1.4rem;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.faq-question::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    content: "\f067"; 
    position: absolute;
    right: 1rem;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: "\f068"; 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #275CFD;
    transition: max-height 0.4s ease;
    margin-bottom: 0.2rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem 2rem;
    color: #ffffff;
    font-size: 0.8rem;
    line-height: 1.2rem;
    text-align: left;
}

/* --------------- PAGINA CONTATOS --------------- */ 
.contatos {
    min-height: 100vh;
    display: block;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    padding: 0;
    position: relative;
    padding-top: 5rem;
    background-image: linear-gradient(to bottom, #275CFD, #000000);
}

.contatos::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  top: 0;
  border-left: 40vw solid transparent;  
  border-right: 40vw solid transparent;  
  border-radius: 10px;
  border-top: 1px solid #ffffff;        
  z-index: 1;
}

.contato-container {
  margin-top: 8rem;
    display: block;
    flex-wrap: wrap; 
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    width: 90%;
    z-index: 1;
    margin: auto;
}

.contato-info {
    flex: 1 1 300px; 
    color: #131313;
    text-align: left;  
    font-size: 0.8rem;  
}

.contato-info h2 {
    margin-bottom: 1rem;
    color: #0a0a0a;
    font-size: 1.3rem;
}

.contato-info p {
    margin-bottom: 1rem;
}

.contato-info i{
  color: #1449AF;
}

.info-item {
    margin-bottom: 1rem;
}

.info-item i{
  margin-right: 0.5rem;
}

.info-item-sociais{
  margin-top: 1rem;
}

.info-item-sociais a{
    color: #0c0c0c;
  text-decoration: none;
  line-height: 2rem;
}

.info-item-sociais i{
  margin-right: 0.5rem;
}

.contato-form {
    flex: 1 1 300px;
    text-align: left;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 0.8rem;
    background-color: #ebebeb; 
    resize: none;
    color: #202020;
}

.botao-envio {
      background-image: linear-gradient(to right, #275CFD, #62D1FF, #275CFD); 
    background-size: 200% 100%;     
    background-position: left;       
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-position 0.5s ease, transform 0.3s;
}

.botao-envio:hover {
    background-position: right;       
    transform: scale(1.02);           
}

.map-container {
  margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    z-index: 1;
}

iframe {
    width: 90%;
    max-width: 1200px;
    height: 250px;
    border-radius: 12px;
}

.copyright {
    font-size: 0.7rem;
    color: #ffffff;
    background: #000000;
    padding: 0.5rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.copyright a{
  color: #ffffff;
  text-decoration: none;
}
}

/* ----- Telas médias e Tablets ----- */
@media only screen and (min-width: 481px) and (max-width: 900px) {

.menu {
    position: fixed;
    background-color: #000;
    flex-direction: column;
    width: auto;    
    height: 100%;    
    left: 0;  
    top: 0;
    justify-content: start;
    padding: 5rem 1rem;
    display: none;
}

.hamburguer::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0c9";
    color: #fff;
    font-size: 3rem;
    position: absolute;
}

.hamburguer.active::after {
    content: "\f00d"; 
    font-size: 3.1rem;
}

.menu.active {
    display: flex;
}

.menu-link:hover {
    transform: none;
}

.menu-link.active{
    transform: none;
}

  .logo {
    display: block; 
    position: fixed;
    top: 20px;
    right: 20px; 
    width: 120px; 
    z-index: 1001; 
  }

.navegacao {
    justify-content: space-between;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 90%;
    padding: 0.5rem 1rem;
     border-bottom: none;
    box-shadow: none;
}

  .hero-container {
    flex-direction: column;
    padding: 10rem 1rem;
    gap: 2rem;
  }

  .h1-inicio {
    font-size: 1.7rem;
  }

  .cabecalho-subtitulo {
    font-size: 1rem;
  }

  .texto-rotativo {
    font-size: 1rem;
    height: auto;
  }

  .botao-servicos {
    font-size: 0.6rem;
    padding: 0.8rem 1.5rem;
  }

  /* ----- serviços ----- */

.servicos{
  min-height: 100vh;
  padding: 1rem 0;
  text-align: center;
  position: relative;
  display: block;
  justify-content: center;
}

.servicos::after {
  content: "";
  position: absolute;
  bottom: 0; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40vw solid transparent;   
  border-right: 40vw solid transparent;  
  border-radius: 10px;
  border-top: 1px solid #ffffff;        
  z-index: 1;
}

.h1-servicos{
  color: #fff;
  font-size: 1.3rem;
}

.h2-servicos{
  font-size: 0.8rem;
  margin-top: 0.8rem;
  color: #ffffff;
}

.cards-servicos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 4rem;
  margin-bottom: 5rem;

}

.card {
  background-color: #ffffff;
  border-radius: 13px;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  width: 100%;
  border-radius: 13px 13px 0 0;
  margin-bottom: 15px;
  
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #000000;
}

.card p {
  margin-bottom: 15px;
  color: #000000;
  padding: 6px;
  font-size: 0.9rem;
}

.card .btn {
  display: inline-block;
  padding: 10px 40px;
  background-image: linear-gradient(to right, #275CFD, #62D1FF, #275CFD); 
  background-size: 200% 100%; 
  background-position: left;  
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-position 0.5s ease, transform 0.3s;
  margin: 1rem auto 1.3rem auto; 
  width: 170px;
  text-align: center;
  margin-left: auto; 
  margin-right: auto; 
  margin-top: auto;
  font-size: 0.8rem;
}

.card .btn:hover {
  background-position: right; 
  transform: scale(1.02);     
}


  /* ----- sobre ----- */ 

.galeria{
    min-height: 100vh;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    display: block;
    justify-content: center;
}

.galeria::after {
  content: "";
  position: absolute;
  bottom: 0; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40vw solid transparent;  
  border-right: 40vw solid transparent;  
  border-radius: 10px;
  border-top: 1px solid #ffffff;        
  z-index: 1;
}



.h1-galeria{
    color: #ffffff;
    font-size: 1.3rem;
    margin-top: 5rem;
}

.subtitulo-sobre{
    display: inline-block; 
    font-size: 0.8rem;
    padding: 0 1rem 0 1rem;
    margin-bottom: 3rem;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    margin: auto; 
}

.stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.stats h3{
  color: #bed2f3;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.stats p{
  color: #ffffff;
  font-size: 0.6rem;
  text-align: left;
}

.fundo-numeros {
  padding: 20px;
  border-radius: 0px;
  background-color: #0c0c0c;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  margin: 3rem auto;
  max-width: 100%;
}

.stat-card{
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
}

.titulo-diferenciais{
  color: #fff;
  font-size: 1rem;
}

.diferenciais-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.dif-card { 
  padding: 1.1rem;
  width: 250px;
  border-radius: 11px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  background-color: #ffffff;
}

.dif-icone {
  width: 55px;
  height: 55px;
  background: #0c0c0c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.dif-icone i {
  font-size: 1.5rem;
  color: #ffffff;
}

.dif-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #000000;
}

.dif-card p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.4rem;
}

/* --------------- PAGINA DEPOIMENTOS --------------- */ 

.depoimentos {
  padding: 5rem 1rem;
  text-align: center;
  min-height: 100vh;
  position: relative;
  display: block;
}

.depoimentos::after {
  content: "";
  position: absolute;
  bottom: -23;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;  
  border-right: 25px solid transparent;  
  border-top: 25px solid #275CFD;
  z-index: 1;
}

.title-depo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.h2-depoimentos{
  margin-bottom: 1rem;
  font-size: 0.8rem;
  margin-top: 0.8rem;
  color: #ffffff;
}

.carro-depoimentos{
  width: 15rem;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.slider-container {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  margin: auto;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

.user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.user-info span{
  font-size: 1rem;
  color: #141414;
  font-weight: bold;
}

.user-info i{
  margin-left: 1rem;
  font-size: 1.2rem;
  color: #275CFD;
}

.stars{
  font-size: 1.1rem;
  color: #ffd250;
}

.slider {
  display: flex;
  transition: transform .4s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 3rem;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 2rem 0;
}

.slide p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: #333;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: .7rem;
}

.dots button {
  width: 5px;
  height: 5px;
  background: #c7c7c7;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
}

.dots button.active {
  background: #585858;
}

.dots button:hover{
  background: #8f8f8f;
}


/* --------------- DICAS --------------- */ 

.dicas {
  width: 100%;
  padding: 6rem 1rem;
  text-align: center;
  min-height: 100vh;
  position: relative;
  display: block;
}

.dicas::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url("img/background-mobile.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1; 
}

.h1-dicas {
  color: #ffffff;
  font-size: 1.3rem;
}

.h2-dicas {
  color: #ffffff;
  font-size: 0.9rem;
  margin-top: 0.8rem;
  margin-bottom: 3rem;
}

.dicas-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.dica-card {
  margin-top: 4rem;
  background: rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(3.8px);
    -webkit-backdrop-filter: blur(3.8px);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.dica-icone i {
  font-size: 1.5rem;
  color: #0e0e0e;
  background: #ffffff;
  padding: 1rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.dica-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.dica-card p {
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.5rem;
}


/* --------------- PAGINA FAQ --------------- */ 

.faq {
    width: 100%;
    padding: 8rem 1rem;
    color: #ffffff;
    text-align: center;
    min-height: 100vh;
    position: relative;
    display: block;
}



.faq::after {
  content: "";
  position: absolute;
  top: -3; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;  
  border-right: 25px solid transparent; 
  border-top: 25px solid #000000;      
  z-index: 0;
}

.faq-title {
  color: #fff;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-image: linear-gradient(to right, #275CFD, #62D1FF);
    margin-bottom: 1.4rem;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.faq-question::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    content: "\f067"; 
    position: absolute;
    right: 1rem;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: "\f068"; 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #275CFD;
    transition: max-height 0.4s ease;
    margin-bottom: 0.2rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem 2rem;
    color: #ffffff;
    font-size: 0.8rem;
    line-height: 1.2rem;
    text-align: left;
}

/* --------------- PAGINA CONTATOS --------------- */ 
.contatos {
    min-height: 100vh;
    display: block;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    padding: 0;
    position: relative;
    padding-top: 5rem;
    background-image: linear-gradient(to bottom, #275CFD, #000000);
}

.contatos::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  top: 0;
  border-left: 40vw solid transparent;  
  border-right: 40vw solid transparent;  
  border-radius: 10px;
  border-top: 1px solid #ffffff;        
  z-index: 1;
}

.contato-container {
  margin-top: 8rem;
    display: block;
    flex-wrap: wrap; 
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    width: 90%;
    z-index: 1;
    margin: auto;
}

.contato-info {
    flex: 1 1 300px; 
    color: #131313;
    text-align: left;  
    font-size: 0.8rem;  
}

.contato-info h2 {
    margin-bottom: 1rem;
    color: #0a0a0a;
    font-size: 1.3rem;
}

.contato-info p {
    margin-bottom: 1rem;
}

.contato-info i{
  color: #1449AF;
}

.info-item {
    margin-bottom: 1rem;
}

.info-item i{
  margin-right: 0.5rem;
}

.info-item-sociais{
  margin-top: 1rem;
}

.info-item-sociais a{
    color: #0c0c0c;
  text-decoration: none;
  line-height: 2rem;
}

.info-item-sociais i{
  margin-right: 0.5rem;
}

.contato-form {
    flex: 1 1 300px;
    text-align: left;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 0.8rem;
    background-color: #ebebeb; 
    resize: none;
    color: #202020;
}

.botao-envio {
      background-image: linear-gradient(to right, #275CFD, #62D1FF, #275CFD); 
    background-size: 200% 100%;     
    background-position: left;       
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-position 0.5s ease, transform 0.3s;
}

.botao-envio:hover {
    background-position: right;       
    transform: scale(1.02);           
}

.map-container {
  margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    z-index: 1;
}

iframe {
    width: 90%;
    max-width: 1200px;
    height: 250px;
    border-radius: 12px;
}

.copyright {
    font-size: 0.7rem;
    color: #ffffff;
    background: #000000;
    padding: 0.5rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.copyright a{
  color: #ffffff;
  text-decoration: none;
}

}

