* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: #040404;
  color: #f0eaea;
  line-height: 1.6;
}

/* === CONTAINER PRINCIPAL === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* === CABEÇALHO === */
header {
  background-color: #1c1c1c;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 3px solid #b20d07;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand h1 {
  font-size: 1.4rem;
  color: #ca0707d3;
}

nav a {
  color: #f7f3f3;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #a2140d;
}

/* === HERO (TOPO) === */
.hero {
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
              url('./img/bmw-g.jpg') center/cover no-repeat;
  text-align: center;
  padding: 120px 20px;
  color: #fff;
}

.hero .kicker {
  font-size: 1rem;
  color: #f7f7f4e9;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero .title {
  font-size: 2rem;
  margin-top: 12px;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #25d366;
  color: white;
}

.btn-primary:hover {
  background-color: #1da955;
}

.btn-ghost {
  border: 2px solid #f1f1ed;
  color: #f2f1ee;
}

.btn-ghost:hover {
  background-color: #9abbd2;
  color: #060606;
}

/* === SEÇÕES === */
section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 1.8rem;
  color: #950909;
  margin-bottom: 20px;
}

/* === CARDS === */
.card {
  background: #0d0d0d;
  border-radius: 10px;
  padding: 20px;
  margin: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}

.card img {
  border-radius: 8px;
  margin-bottom: 10px;
}

/* === GRID DE SERVIÇOS === */
.services, .empresa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* === SOBRE E CONTATO === */
.about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  text-align: left;
}

.contact-card {
  background: #1f1e1e;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card img {
  border-radius: 8px;
}

footer {
  background-color: #0d0c0c;
  padding: 20px;
  text-align: center;
  color: #5b5757;
  border-top: 2px solid #f3f0ed;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }

  .hero .title {
    font-size: 1.6rem;
  }
  /* === BOTÃO DENTRO DA SEÇÃO === */
.pagamento-cta {
  margin-top: 50px;
}

.btn-pix {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-pix:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* === BOTÃO FIXO DO WHATSAPP === */
.whatsapp-fixo {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

.whatsapp-fixo img {
  width: 38px;
  height: 38px;
}

.whatsapp-fixo:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37,211,102,0.6);
}

* === EFEITO DE BRILHO NO TÍTULO === */
.container h1 {
  font-size: 1.5rem;
  color: #f5f5f5;
  background: linear-gradient(90deg, #7eacbe, #b3211c,#ab1510 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: brilho 4s linear infinite;
}

/* === ANIMAÇÃO === */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .pagamentos-container {
    flex-direction: column;
    align-items: center;
  }

  .pagamento-card {
    width: 90%;
  }

  .map-container {
  width: 100%;
  max-width: 500px; /* você pode aumentar ou remover, se quiser ocupar toda a tela */
  height: 230px; /* Ajuste a altura do mapa aqui */
  border-radius: 12px;
  overflow: hidden; /* Faz as bordas arredondadas funcionarem */
  border: 1px solid #3f3d3d;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .pagamentos-container {
    flex-direction: column;
    align-items: center;
  }
  .pagamento-card {
    width: 90%;
  }

.hero h2 {
  font-size: 2.2rem;
  color:#1298d1 ;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  color: #f2f2f2;
}

/* Animação suave de entrada */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

