@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800px;
  font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); 
}

a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.logo {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: white;
  height: 100px;
  font-family: "Montserrat", sans-serif;
  padding-top: 15px;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li a {
  display: block; 
  padding: 30px 25px;
  transition: 0.3s;
  font-size: 20px;
}

.nav-list li a:hover {
  background-color: #00001f; 
  color: white; 
  opacity: 1;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: black;
  margin: 8px;
  transition: 0.3s;
}

@media (max-width: 999px) {
  body {
    overflow-x: hidden;
  }
  header{
    position: static;
    box-shadow: none;
  }

  .nav-list {
    position: absolute;
    top: 8vh;
    right: 0;
    width: 50vw;
    height: 92vh;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    z-index: 9999;
  }
  .nav-list li {
    margin-left: 0;
    opacity: 0;
  }
  .mobile-menu {
    display: block;
    z-index: 10000;
    position: relative;
  }
}

.nav-list.active {
  transform: translateX(0);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

.swiper {
  width: 100%;
  height: 400px;
        }

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  opacity: 0; 
  transition: opacity 1s ease-in-out; 
}

#pagina {
  background-image: url(fundo.png);
  padding: 35px;
  padding-top: 120px;
}

.swiper-slide {
  position: relative; 
}

.swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: #ccc !important;
}

.whatsapp-btn {
  position: absolute;
  text-decoration: none;
  top: 55%; 
  left: 50%;
  transform: translateX(-50%); 
  background-color: #25D366;
  color: white;
  padding: 10px 100px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  z-index: 10; 
  white-space: nowrap;
}

.whatsapp-btn img {
  width: 25px; 
  margin-right: 10px;
}

.swiper-slide .whatsapp-btn:hover {
  background-color: rgba(0, 128, 0, 1); 
}

.botao-whatsapp {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  position: absolute;
  bottom: 45%;
  left: 32%;
  
  color: white;
  padding: 15px 150px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  gap: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  margin-left:  90px;
  margin-top: -500px;
  z-index: 9999;
}

.botao-whatsapp:hover {
  background-color: #1ebd5a;
  transform: scale(1.05);
}

.botao-whatsapp img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  #pagina {
    padding-top: 40px;
  }

  .whatsapp-btn {
    padding: 0px 8px;    
    font-size: 12px;      
    line-height: 1.0;     
    top: 55%;
  }

  .botao-whatsapp {
    padding: 4px 12px;
    font-size: 10px;
    line-height: 1.2;
    bottom: 20%;
    left: 25%;
    margin-left: 0;
    margin-top: -350px;
  }
}

@media screen and (max-width: 480px) {
  
  .whatsapp-btn {
    padding: 0px 20px; 
    font-size: 10px; 
    top: 50%; 
  }

  .botao-whatsapp {
    padding: 0px 20px; 
    font-size: 12px; 
    bottom: 30%; 
    left: 20%; 
    margin-top: -200px; 
  }
}

.servicos {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
}

.titulo-servicos {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}

.box-servicos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
}

.servico {
    width: 300px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.servico img {
    width: 100%;
    height: 250px;         
    object-fit: cover;    
   
}

.legenda {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    font-weight: bolder;
    font-size: 14px;
}

.servico {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.servico:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}

.servico {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.servico:nth-child(1) {
    animation-delay: 0.2s;
}
.servico:nth-child(2) {
    animation-delay: 0.4s;
}
.servico:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sobre-empresa{
    padding: 50px 20px;
    background-color: #f8f8f8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: black;
    text-align: justify;
}

.container-empresa {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
}

.titulo-empresa {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.texto-empresa {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

.contato {
  padding: 50px 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  background-image: url(fundo.png);
  color: white;
}

.contato a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}

.formulario-contato {
  max-width: 500px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.linha-form {
  display: flex;
  gap: 10px;
}

.linha-form input {
  flex: 1;
}

.formulario-contato input,
.formulario-contato textarea {
  border: 1px solid #101b5f;
  padding: 10px 15px;
  border-radius: 3px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.formulario-contato textarea {
  resize: vertical;
}

.formulario-contato button {
  background-color: #132bb3;
  color: white;
  padding: 12px;
  border: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.formulario-contato button:hover {
  background-color: #912f00;
}

input,
textarea,
button {
  font-family: Arial, sans-serif;
}

.swiper {
  width: 800px;
  height: 500px;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.swiper-button-prev {
  left: 10px;
  right: auto;
  width: 30px;
  height: 30px;
}

.swiper-button-next {
  right: 10px;
  left: 50px;
  width: 30px;
  height: 30px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  color: white;
  
  
}
.midias {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 9999;
}

.socialmedia {
  display: flex;
  flex-direction: column; 
  gap: 15px;
  align-items: center;
}

.socialmedia img {
  width: 50px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.socialmedia img:hover {
  transform: scale(1.1); 
}

.feedbacks {
  text-align: center;
  padding: 50px 30px;
  background: url(fundo.png);
  padding-bottom: 120px;
}

.titulo-feed {
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: bold;
  color: white;
}

.box-feed {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
}

.feedback {
  width: 100%;
  max-width: 510px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.feedback img {
  width: 100%;
  max-width: 510px;
  height: auto;
  border-radius: 5px;
}

.feedback:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.feedback:nth-child(1) {
  animation-delay: 0.2s;
}
.feedback:nth-child(2) {
  animation-delay: 0.4s;
}
.feedback:nth-child(3) {
  animation-delay: 0.7s;
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .feedbacks {
    padding: 40px 20px;
    padding-bottom: 100px;
  }

  .box-feed {
    gap: 60px;
  }

  .titulo-feed {
    font-size: 22px;
  }
}


@media (max-width: 480px) {
  .feedbacks {
    padding: 30px 15px;
    padding-bottom: 80px;
  }

  .box-feed {
    gap: 40px;
  }

  .titulo-feed {
    font-size: 20px;
  }

  .feedback {
    font-size: 14px;
  }

  .feedback img {
    border-radius: 5px;
  }
}

footer{
  color: white;
}

.footer-link{
  color: white;
  text-decoration: none;
}
.footer-content {
  background-color: #171717;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  padding: 3rem 3.5rem;
}

.footer-column h1,
.footer-column h3 {
  margin-bottom: 1rem;
}

.footer-column p {
  margin-bottom: 1rem;
}

.footer-column7{
  margin-left: 5%;
}

.footer-list {
  list-style: none;
  padding: 0;
  font-weight: 700;
  font-size: 20px;
  margin-left: 30%;
}

.footer-list li {
  margin: 0.5rem 0;
}

.footer-social-media {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-media img {
  width: 40px;
  height: 40px;
}

.footer-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  padding: 15px 15px;  
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-top: 30px;
  max-width: 290px;     
  width: 100%;          
  height: 40%;
  margin-right: 80%;
}

.footer-whatsapp:hover {
  background-color: #1ebd5a;
  transform: scale(1.05);
}

.footer-whatsapp img {
  width: 18px;
  height: 18px;
}

.footer-copyright{
  display: flex;
  justify-content: center;
  background-color: #0e0e0e;
  font-size: 0.9rem;
  padding: 2rem;
  font-weight: 100;
  text-align: center;
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 20px 10px;
  }

  .menu {
    width: 100%;
    text-align: center;
  }

  .menu a {
    display: block;
    line-height: 50px;
    margin: 5px 0;
    font-size: 16px;
  }

  .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .swiper {
    width: 100%;
    height: auto;
  }

  .swiper-slide img {
    width: 100%;
    height: auto;
  }

  .botao-whatsapp {
    left: 10%;
    right: 10%;
    padding: 10px 20px;
    font-size: 14px;
    margin-left: 0;
    transform: translateX(0);
  }

  .box-servicos,
  .box-feed {
    flex-direction: column;
    gap: 30px;
  }

  .servico,
  .feedback {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
  .footer-social-media {
  justify-content: center;
  }

  .footer-list {
    margin-left: 0;
  }

  .footer-whatsapp {
    margin: 20px auto;
  }
}

