/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #8d8d8d; /* mantém o fundo atual */
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  background-color: #555;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(0, 26, 87, 0),
    rgba(0, 26, 87, 0.8)
  );
  transition: background 0.3s ease;
  backdrop-filter: blur(4px); /* leve desfoque para elegância */
}

/* Estado inicial (transparente no topo) */
.navbar.transparent {
  background: linear-gradient(
    to bottom,
    rgba(0, 26, 87, 0),
    rgba(0, 26, 87, 0)
  );
}

.navbar {
  height: 70px; /* ajuste para a altura exata da sua barra */
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 45px; /* mantém a altura real pequena */
  width: auto;
  transform: scale(1.6); /* aumenta visualmente a logo */
  transform-origin: left center;
}

@media (max-width: 600px) {
  .logo img {
    height: 55px;
  }
}

/* LINKS DO MENU */
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #00aaff;
}

/* ÍCONES DE REDES SOCIAIS */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white; /* Ícones visíveis */
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00aaff;
}

/* ======== HOME SLIDER ======== */
.home-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* as imagens */
.slides {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.home-slider .slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.home-slider {
  position: relative;
}

.home-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.581); /* ESCURECIMENTO */
  z-index: 1;
}

.arrow {
  z-index: 3;
}

/* garante que o texto fique acima do overlay */
.home-content {
  position: relative;
  z-index: 2;
}

/* Conteúdo central */
.home-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 1200px;
}

.especialistas {
  font-size: 22px;
  letter-spacing: 8px;
  margin-bottom: 20px;
}

.titulo-principal {
  font-size: 50px;
  font-weight: 700;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.subtitulo {
  margin-top: 20px;
  font-size: 20px;
}

.btn-home {
  display: inline-block;
  margin-top: 40px;
  background: #0077ff;
  padding: 15px 40px;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-home:hover {
  background: #005dcc;
}

/* ===== Setas ===== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
  user-select: none;
}

.arrow:hover {
  color: #0077ff;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* ===== SEÇÃO SOBRE NÓS ===== */
.sobre-nos {
  background: rgba(255, 255, 255, 0.8);
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-container {
  width: 85%;
  max-width: 1200px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.sobre-imagem img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px 0 0 8px;
  display: block;
}

.sobre-texto {
  flex: 1;
  padding: 40px;
  color: #333;
}

.sobre-texto h2 {
  font-size: 2em;
  color: #001a57;
  margin-bottom: 20px;
}

.sobre-texto p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.botao-sobre {
  display: inline-block;
  background-color: #0077c8;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.botao-sobre:hover {
  background-color: #005f9e;
}

.servicos {
  text-align: center;
  padding: 60px 20px;
  color: #001a57;
}

.servicos h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.servicos p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ffffff;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  position: relative;
  width: 270px;
  height: 360px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.card h3 {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 1px;
  z-index: 2;
}

/* Overlay escondida inicialmente */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(83, 83, 83, 0.347);
  opacity: 0;
  visibility: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

/* Efeito ao passar o mouse */
.card:hover img {
  transform: scale(1.1);
  filter: brightness(0.5);
}

.card:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.card:hover h3 {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.servicos,
section.servicos,
.nossos-servicos {
  background: #fff !important;
  color: #001a57;
  z-index: 1;
  position: relative;
}

.parallax {
  background-image: url("img/praia.png");
  min-height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subtexto-servicos h4 {
  text-align: center;
  font-size: 15px;
  color: #898989;
  max-width: 2000px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

.btn-centro {
  text-align: center;
  margin: 40px 0;
}

.btn-contato {
  display: inline-block;
  background-color: #0a74bb;
  color: white;
  padding: 14px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-contato:hover {
  background-color: #08578c;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

/*cards*/

.novos-cards,
h2 {
  color: #003366;
}

.novos-cards {
  text-align: center;
  padding: 50px 0;
  background: #ffffff;
}

.cards-linha {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 29px;
  margin-top: 30px;
}

.card-item {
  width: 380px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(48, 48, 48, 0.15);
  text-align: center;
  transition: 0.3s ease;
}

.card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 22px rgba(21, 21, 21, 0.15);
}

.card-imagem {
  width: 100%;
  height: 170px;
  background-color: #d9d9d9;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* título */
.card-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* texto */
.card-item p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

/* botão */
.btn-card {
  display: inline-block;
  background-color: #0a6bbf;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-card:hover {
  background-color: #094f8c;
}

.parallax2 {
  background-image: url("img/praia_teste.jpg"); /* usa a imagem que você salvou */
  min-height: 300px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* SEÇÃO DE PAGAMENTOS */
.pagamentos {
  background: #f3f3f3;
  padding: 70px 20px;
  text-align: center;
}

.logos-pagamento img {
  width: 70%;
  max-width: 700px;
  border-radius: 10px;
}

.pagamentos .obs {
  font-size: 20px;
  margin-top: 25px;
  color: #333;
  font-weight: 600;
}

/* -------- FORMAS DE PAGAMENTO -------- */
.pagamentos {
  text-align: center;
  padding: 35px 20px;
}

.pagamentos h2 {
  font-size: 32px;
  color: #003366;
  font-weight: 300; /* mais fino */
  margin-bottom: 40px;
}

.cards-pagamentos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card-pag {
  width: 260px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: 0.3s;
}

.card-pag img {
  width: 60px;
  margin-bottom: 15px;
}

.card-pag h3 {
  font-size: 20px;
  font-weight: 300; /* mais fino */
  margin-bottom: 10px;
  color: #003366;
}

.card-pag p {
  font-size: 15px;
  font-weight: 300; /* fino */
  color: #555;
}

/* Hover */
.card-pag:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* transfortes */

.transportes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 60px 8%;
  gap: 40px;
}

.texto-transportes {
  max-width: 520px;
}

.texto-transportes h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #0a3769;
}

.texto-transportes p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.botoes-transporte {
  margin-top: 28px;
  display: flex;
  gap: 18px;
}

.btn-fale,
.btn-detalhes {
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

/* Fale conosco */
.btn-fale {
  background: #0077cc;
  color: #fff;
}

.btn-fale:hover {
  background: #005fa3;
}

/* Detalhes */
.btn-detalhes {
  background: #eaeaea;
  color: #222;
}

.btn-detalhes:hover {
  background: #d5d5d5;
}

/* Imagens */
.imagens-transportes {
  position: relative;
}

.img-veiculos {
  width: 600px;
  margin-top: 50px;
}

/* SEÇÃO NOSSOS SERVIÇOS */
.nossos-servicos1 {
  background-color: #eaeaea; /* FUNDO BRANCO */
  padding: 40px 20px 60px 20px; /* título mais próximo e mais elegante */
  text-align: center;
}

.nossos-servicos1 h2 {
  font-size: 42px;
  color: #0c1b5f;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 25px; /* título mais perto da seção */
}

/* O subtítulo (texto menor abaixo do título) */
.nossos-servicos1 p.subtitulo {
  font-size: 18px;
  color: #333;
  max-width: 1050px;
  margin: 0 auto 40px auto; /* aproxima do conteúdo */
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

/* CARDS DOS SERVIÇOS */
.cards-servicos {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.card-servico {
  width: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.card-servico:hover {
  transform: scale(1.05);
}

.card-servico img {
  width: 100%;
  display: block;
}

.card-servico .info {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

.card-servico:hover .info {
  height: 100%;
  padding-top: 45px;
  opacity: 1;
}

/* SECTION COM PARALLAX */
.contato-section {
  background-image: url("img/praia_teste.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* PARALLAX */
  padding: 70px 0;
  position: relative;
}

/* SOBREPOSIÇÃO ESCURA */
.contato-overlay {
  background: rgba(10, 25, 60, 0.75);
  width: 100%;
  height: 100%;
  padding: 40px 0;
}

/* GRID CENTRAL */
.contato-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  padding: 20px;
  color: white;
}

/* COLUNA ESQUERDA */
.contato-info {
  width: 40%;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item h3 {
  margin: 0;
  font-size: 1.3rem;
}

.info-item p {
  margin: 5px 0 0;
}

.icon {
  font-size: 32px;
}

/* COLUNA DIREITA */
.contato-form {
  width: 60%;
}

.contato-form h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contato-form p {
  margin-bottom: 25px;
  line-height: 1.5;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.contato-form textarea {
  height: 120px;
}

.contato-form button {
  width: 100%;
  padding: 15px;
  background: #1e4ba1;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contato-form button:hover {
  background: #143b82;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .contato-container {
    flex-direction: column;
    text-align: center;
  }

  .contato-info,
  .contato-form {
    width: 100%;
  }

  .info-item {
    justify-content: center;
  }
}

.footer {
  width: 100%;
  background-color: #1a2256; /* Azul escuro */
  color: white;
  font-family: "Poppins", sans-serif;
}

/* NEWSLETTER */
.footer-newsletter {
  padding: 40px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-newsletter h2 {
  color: white;
  font-size: 28px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  width: 40%;
}

.newsletter-form input {
  width: 100%;
  padding: 12px;
  border-radius: 6px 0 0 6px;
  border: none;
  background: #2c357b; /* Azul médio */
  color: white;
}

.newsletter-form button {
  padding: 12px 30px;
  background: #0f1537; /* Azul quase preto */
  border: none;
  border-radius: 0 6px 6px 0;
  color: white;
  cursor: pointer;
  font-weight: 600;
}

/* PARTE PRINCIPAL */
.footer-main {
  background-color: #1f2a6b; /* Azul mais iluminado */
  padding: 50px 10%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
}

.footer-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-line {
  width: 40px;
  height: 3px;
  background: white;
  margin-bottom: 20px;
}

.footer-logo {
  width: 230px;
  border-radius: 12px;
}

.footer-social img {
  width: 38px;
  margin-right: 15px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .footer-newsletter {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-line {
    margin: 10px auto 20px;
  }

  .footer-social img {
    margin: 10px;
  }
}

.cta-container {
  text-align: center;
}

.cta-logo {
  margin-top: 60px;
}

.cta-logo img {
  height: 200px; /* ajuste como quiser */
  width: auto;
}
