/* =========================
   RESET E BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   HEADER / MENU
========================= */
header {
  background: #003f7d;
}

.nav {
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 18px;
  font-weight: bold;
  font-size: 15px;
}

.menu a:hover {
  text-decoration: underline;
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(135deg, #003f7d, #c4161c);
  color: #ffffff;
  padding: 90px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  text-align: center;
}

/* =========================
   LOGOS (CONTROLE ABSOLUTO)
========================= */
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pendotiba */
.hero-logo-right img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

/* =========================
   TEXTO HERO
========================= */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero img{

  max-width: 300px;
  margin-bottom: 20px;
  width: auto;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
}

.hero-text p {
  font-size: 16px;
  opacity: 0.95;
}


/* =========================
   SERVIÇOS
========================= */
#servicos {
  padding: 70px 0;
  background: #ffffff;
}

#servicos h2 {
  text-align: center;
  margin-bottom: 45px;
  font-size: 28px;
  color: #003f7d;
}

.cards {
  display: grid;  
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #f7f7f7;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
  color: #c4161c;
}

.card p {
  font-size: 15px;
}

/* =========================
   CONTATO
========================= */
.contato {
  background: #eeeeee;
  padding: 60px 0;
}

.contato h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #003f7d;
}

.contato p {
  text-align: center;
  font-size: 15px;
}

.contato a {
  color: #003f7d;
  text-decoration: none;
}

.contato a:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: #111;
  color: #ccc;
  padding: 20px 0;
  font-size: 14px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-right {
  font-weight: 500;
}

.footer-links {
  text-align: center;
  margin-top: 10px;
  width: 100%;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}



/* =========================
   RESPONSIVO (MOBILE)
========================= */
@media (max-width: 768px) {

  .hero {
    padding: 70px 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 25px;
  }

  /* TRAVA MOBILE */
  .hero-logo-left img {
    max-height: 50px;
  }

  .hero-logo-right img {
    max-height: 45px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 15px;
  }

}
  /* =========================
   PAGINA FROTA
========================= */

.frota-page .card img{

  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px; 
}

.frota-page .card img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}
.frota-page h1{

  font-size: 42px;
  font-weight: bold;
  color: #003f7d;
}
  /* =========================
   VIDEO FROTA
========================= */

.frota-page .video-frota{

  margin-top: 80px;
  display: flex;
  justify-content: center;
}
.frota-page .video-frota video{
width: 100%;
max-width: 1100px;
height: auto;
border-radius: 12px;

box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

transition: transforme 0.3s ease;
}
.frota-page .video-frota video:hover {
  transform: scale(1.02);
}





  /* =========================
   PAGINA MAPA
========================= */

.btn-menu a {

  background-color: white;
  padding: 10px 20px;
  border-radius: 6px;
  color: #003f7d;
}