.cta-buttons .button {
  background-color: #0078d4;
  padding: 12px 30px;
  color: white;
  text-decoration: none;
  margin: 10px;
  border-radius: 5px;
  position: relative;
  top: 20px;
  left: 20px;
}

/* SOBRE A AGÊNCIA */
.about {
  padding: 50px 20px;
  text-align: center;
  background-color: #ffffff;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.mission, .vision, .values {
  text-align: center;
}

.mission i, .vision i, .values i {
  font-size: 40px;
  margin-bottom: 10px;
}

/* SERVIÇOS */
.services {
  padding: 50px 20px;
  text-align: center;
  background-color: #f0f0f0;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.service-item {
  display: inline-block;
  margin: 20px;
  width: 200px;
  text-align: center;
}

.service-item i {
  font-size: 40px;
  margin-bottom: 10px;
}

.service-item h3 {
  margin-bottom: 10px;
}

/* DEPOTIMENTOS */
.testimonials {
  padding: 50px 20px;
  text-align: center;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.testimonial {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial h4 {
  font-size: 18px;
  font-weight: 600;
}

/* CHAMADA PARA AÇÃO (promoções) */
.promo {
  background-color: #4d5b36;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.promo h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.promo form {
  display: inline-block;
  margin-top: 20px;
}

.promo input[type="email"] {
  padding: 10px;
  font-size: 16px;
  width: 300px;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
}

.promo .button {
  background-color: #ff5722;
  color: white;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
}

/* RODAPÉ */
footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

footer .social-icons i {
  font-size: 24px;
  margin: 0 10px;
  color: white;
}

footer .footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

footer .footer-links {
  margin-bottom: 10px;
}

footer .contact p {
  font-size: 14px;
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 36px;
  }

  .services h2 {
    font-size: 30px;
  }

  .testimonial p {
    font-size: 14px;
  }

  .testimonial h4 {
    font-size: 16px;
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
  }

  header nav ul li {
    margin: 10px 0;
  }

  .cta-buttons .button {
    font-size: 14px;
    padding: 8px 20px;
  }

  .promo input[type="email"] {
    width: 80%;
  }

  .promo .button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mission-values {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
  }

  .services .service-item {
    width: 100%;
    margin: 10px 0;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  footer .footer-links {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .services h2 {
    font-size: 24px;
  }

  footer .contact p {
    font-size: 12px;
  }

  .promo input[type="email"] {
    width: 100%;
  }

  .promo .button {
    font-size: 14px;
    width: 100%;
  }

  .cta-buttons .button {
    font-size: 14px;
    padding: 8px 20px;
  }
}

/* Estilo do Popup */
.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  z-index: 1000;
}

.popup a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.popup .icon {
  margin-right: 10px;
  font-size: 24px;
}

.popup-btn {
  display: flex;
  align-items: center;
}

/* Responsividade para o Popup */
@media (max-width: 768px) {
  .popup {
    bottom: 10px;
    right: 10px;
    padding: 10px 15px;
  }

  .popup a {
    font-size: 14px;
  }

  .popup .icon {
    font-size: 20px;
  }
}

/* Destinos */
.destinos {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.destinos h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.carrossel-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.carrossel-destinos {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  padding: 10px;
}

.carrossel-destinos::-webkit-scrollbar {
  display: none;
}

.destino {
  flex: 0 0 250px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.destino:hover {
  transform: translateY(-10px);
}

.destino img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.destino h3 {
  font-size: 1.25em;
  margin: 10px;
}

.destino p {
  font-size: 0.9em;
  color: #666;
  margin: 10px;
}

.btn-saiba-mais {
  display: block;
  width: calc(100% - 20px);
  margin: 10px auto;
  padding: 10px;
  background: #001f54;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}

.btn-saiba-mais:hover {
  background: #003078;
}

.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 10px;
  font-size: 1.5em;
  z-index: 10;
}

.carrossel-btn.esquerda {
  left: 10px;
}

.carrossel-btn.direita {
  right: 10px;
}

/* Responsividade para o carrossel */
@media (max-width: 768px) {
  .carrossel-destinos {
    gap: 10px;
  }

  .destino {
    flex: 0 0 200px;
  }

  .destinos h2 {
    font-size: 1.5em;
  }
  
}
/* SEÇÃO DE ATENDIMENTO */
.mainde-atendimento {
    background: #f8f9fa;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.mainde-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    gap: 40px;
}

/* Lado Esquerdo - Contato */
.mainde-contato {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mainde-contato h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.mainde-contato p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Ícones e Contato */
.mainde-contato-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #e9ecef;
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s;
    margin-bottom: 15px;
}

.mainde-contato-item:hover {
    background: #d6d8db;
}

.mainde-icon-box {
    background: rgba(0, 128, 0, 0.1);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

.mainde-icon {
    width: 30px;
}

/* Informações */
.mainde-info h3 {
    font-size: 18px;
    margin: 0;
}

.mainde-info a {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.mainde-info a:hover {
    color: #0056b3;
}

/* Lado Direito - Banner */
.mainde-banner {
    flex: 1;
    text-align: center;
}

.mainde-banner img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .mainde-container {
        flex-direction: column;
        align-items: center;
    }

    .mainde-contato, .mainde-banner {
        width: 100%;
        max-width: 500px;
    }

    .mainde-banner img {
        width: 100%;
    }
}



