/* RESET */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fa;
}
/* PADRÃO GLOBAL DE LAYOUT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #1f4e79;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* CONTAINER (SEM FLEX GLOBAL) */
.container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 15px;
}

/* FLEX SÓ NO HEADER */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

/* MENU */
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* BOTÃO */
.btn-menu {
  background: #25d366;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
}

/* HOVER */
.menu a:hover {
  opacity: 0.85;
}

/* HAMBURGUER */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #1f4e79;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

}
/* HERO CLARO */
.hero {
  background: #f8f9fb;
  color: #0d2b4d;
  padding: 90px 20px 40px;
}

/* TEXTO */
.hero-text h1 {
  font-size: 28px;
  margin: 10px 0;
  color: #0d2b4d;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

/* BADGE */
.badge {
  display: inline-block;
  background: #eaf4ff;
  color: #0d2b4d;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* BOTÕES */
.botoes {
  margin-bottom: 30px;
}

.botoes a {
  display: block;
  text-decoration: none;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}

.btn-whatsapp {
    background-color: #128C7E; 
    color: #fff;           
    font-weight: bold;
}

.btn-ligar {
  border: 2px solid #0d2b4d;
  color: #0d2b4d;
}

/* IMAGEM */
.hero-img img {
  width: 100%;
  max-width: 350px;
  margin: 20px auto 0;
  display: block;
}
.hero-img img {
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}
.hero-img img {
  display: block;
  margin: 0 auto;
}
.hero-img img {
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.2));
}
/* ANIMAÇÃO ENTRADA */
.hero-img img {
  opacity: 0;
  transform: translateX(40px);
  animation: entradaFiorino 0.8s ease-out forwards;
}

/* KEYFRAME */
@keyframes entradaFiorino {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* DESKTOP */
@media (min-width: 768px) {

  .hero-container {
    display: flex;
    align-items: center; /* 🔥 centraliza vertical */
    justify-content: space-between;
    gap: 60px; /* mais respiro */
    text-align: left;
  }
  .hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; /* 🔥 resolve margem esquerda */
}

  .hero-text {
    flex: 1;
    max-width: 520px; /* evita texto muito largo */
  }

  .hero-img {
    flex: 1;
    display: flex;
    justify-content: center; /* 🔥 centraliza o carro */
  }

  .hero-img img {
    max-width: 520px; /* 🔥 aumenta o carro */
    width: 100%;
    transform: scale(1.1); /* 🔥 leve destaque */
  }

}

/* BANNER */
.banner {
  margin-top: 10px;
}

.banner img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 10px auto 0;
  border-radius: 12px;
}
/* SOBRE */
.sobre {
  background: #0d2b4d;
  color: #fff;
  padding: 50px 20px;
}

/* CONTAINER */
.sobre-container {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

/* TEXTO */
.sobre-texto h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.sobre-texto p {
  font-size: 15px;
  line-height: 1.7;
  color: #dbe6f2;
  margin-bottom: 15px;
}

.sobre-texto p:last-of-type {
  font-weight: bold;
}

/* BOTÃO */
.sobre .btn-whatsapp {
  display: inline-block;
  background: #128C7E;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

/* IMAGEM */
.sobre-img img {
  width: 100%;
  max-width: 400px;
  margin: 25px auto 0;
  display: block;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* DESKTOP */
@media (min-width: 768px) {

  .sobre-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
  }

  .sobre-texto {
    flex: 1;
    max-width: 520px;
  }

  .sobre-img {
    flex: 1;
    text-align: center;
  }

  .sobre-img img {
    max-width: 450px;
    margin: 0;
  }

}
/* SERVIÇOS */
.servicos-head {
  text-align: center;
  margin-bottom: 25px;
}

.servicos-head .tag {
  display: inline-block;
  background: #eaf4ff;
  color: #0d2b4d;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

.servicos-head h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0d2b4d;
}

.servicos-head p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}
.servicos {
  padding: 50px 0;
}
.servicos {
  padding: 30px 15px;
  text-align: center;
  background: #fff;
}

.servicos h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.card {
  background: #f8f9fb;
  padding: 15px;
  border-radius: 10px;
  text-align: left;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #0d2b4d;
}

.card p {
  font-size: 14px;
  color: #444;
}

/* destaque */
.destaque-card {
  background: #eaf4ff;
  border: 1px solid #0d2b4d20;
}

/* desktop */
@media (min-width: 768px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.btn-whatsapp,
.btn-ligar {
  display: block;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  max-width: 400px;
}

.btn-whatsapp {
    background-color: #075E54 !important; /* Verde bem escuro */
    color: #ffffff !important;            /* Branco puro */
    font-weight: 700;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
}

.btn-ligar {
  background: #fff; /* 🔥 fundo claro */
  color: #0d2b4d; /* texto azul escuro */
  border: 2px solid #0d2b4d;
}
.btn-ligar:hover {
  background: #0d2b4d;
  color: #fff;
}
/* ATENDIMENTO */
.atendimento {
  padding: 30px 15px;
  text-align: center;
  background: #f8f9fb;
}
.atendimento {
  padding: 50px 0;
}
.atendimento h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.atendimento .sub {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

/* GRID */
.grid-atendimento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}

.col h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0d2b4d;
}

/* LISTA */
.col ul {
  list-style: none;
  padding: 0;
}

.col li {
  margin-bottom: 8px;
}

.col a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  display: block;
  padding-left: 15px;
  position: relative;
}

/* seta estilo da imagem */
.col a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: red;
  font-weight: bold;
}

/* HOVER */
.col a:hover {
  color: #0d2b4d;
}

/* DESKTOP */
@media (min-width: 768px) {
  .grid-atendimento {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* SECTIONS */
.section {
  padding: 25px 15px;
  text-align: center;
}

.lista {
  list-style: none;
  padding: 0;
}

.lista li {
  margin-bottom: 8px;
}

.destaque {
  background: #f5f5f5;
}


/* ORÇAMENTO */
.orcamento {
  padding: 40px 15px;
  background: linear-gradient(180deg, #0d2b4d, #123a66);
  color: #fff;
  text-align: center;
}

.orcamento-box {
  max-width: 500px;
  margin: 0 auto;
}

/* TAG */
.tag {
  display: inline-block;
  background-color: #075E54 !important; /* Verde bem escuro */
    color: #ffffff !important;            /* Branco puro */
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* TEXTO */
.orcamento-box {
  max-width: 1000px;
  margin: 0 auto;
}

/* MOBILE (padrão) */
.orcamento-box {
  display: block;
}

/* DESKTOP */
@media (min-width: 768px) {
  .orcamento-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
  }

  .orcamento-text {
    flex: 1;
  }

  .orcamento-img {
    flex: 1;
    text-align: center;
  }

  .orcamento-img img {
    max-width: 350px;
  }
}
.orcamento h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.orcamento p {
  font-size: 15px;
  margin-bottom: 20px;
}

/* IMAGEM */
.orcamento-img img {
  width: 100%;
  max-width: 320px;
  margin: 10px auto 20px;
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

/* BOTÕES */
.botoes-orcamento a {
  display: block;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.grande {
  font-size: 16px;
}

/* INFO */
.info {
  display: block;
  font-size: 13px;
  margin-top: 10px;
  opacity: 0.9;
}