* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  overflow-x: hidden;
}

/* ===== BANNER SEO ===== */
.seo-banner {
  background: linear-gradient(135deg, #807c7c, #000);
  color: #fff;
 padding-top: 80px;
 padding-bottom: 25px;
}

.seo-banner-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.seo-banner h1 {
  font-size: 38px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.seo-banner p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 28px;
  opacity: 0.9;
}

/* ===== CABEÇALHO FIXO ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0a0a0a; /* vermelho fosco */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.topbar .logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.topbar img {
  width: 45px;
  height: 45px;

  object-fit: cover;
  background-color: #0a0a0a;
}

.topbar h1 {
  font-size: 1.7rem;
  font-weight: bold;
  color: #f11010;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.topbar h2 {
  font-size: 1.5rem;
  font-weight: bold;
  font-style: italic;
  color: #ffffff;
}

/* ===== REDES SOCIAIS TOPO ===== */
.social-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-top a img {
  width: 26px;
  height: 26px;

  transition: opacity 0.3s ease;
}

.social-top a:hover img {
  opacity: 0.7;
}

/* ===== SEÇÕES DE PRODUTO ===== */
section.produto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  height: 50%;
  width: 100%;
  margin-top: 20px;
}

.produto {
  max-width: 1100px;          /* limita largura no desktop */
  margin: 60px auto;          /* centraliza na tela */
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.produto:first-of-type {
  margin-top: 20px; /* ajuste fino aqui */
}

section.produto:nth-child(even) {
  flex-direction: row-reverse;
  
}

section.produto:nth-child(odd) {
  
}

.produto img {
  width: 50%;
  height: 100%;
  object-fit: contain;
}

.produto .info {
  width: 50%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.produto .info h2 {
  color: #c62828;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.produto .info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.8rem;
  max-width: 500px;  
}

/* ===== BOTÃO COMPRAR AGORA ===== */
.btn-comprar {
  display: inline-block;
  background-color: #d32f2f; /* vermelho médio */
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.btn-comprar:hover {
  background-color: #b71c1c;
}

/* ===== BOTÃO WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5c;
}

.whatsapp-btn img {
  width: 22px;
  height: 22px;
}

/* ===== RODAPÉ ===== */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

footer img {
  width: 45px;
  height: 45px;

  object-fit: cover;
  background-color: #0a0a0a;
}

.footer-title {
  display: flex;
  align-items: baseline; /* alinha bem os textos */
  gap: 6px;              /* espaço entre PARANÁ e reboques */
  margin: 0;
}

.footer-title .titulo  {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #c62828;
}

.footer-title .subtitulo {
  
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
}

.social-footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0 20px;
}

.social-footer a img {
  width: 28px;
  height: 28px;
  /*filter: brightness(0) invert(1);*/
  transition: opacity 0.3s ease;
}

.social-footer a:hover img {
  opacity: 0.7;
}

footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 900px) {
  section.produto {
    flex-direction: column; /* Força imagem em cima */
    height: auto;
  }

  section.produto:nth-child(even) {
    flex-direction: column; /* Mesmo comportamento */
  }

  .produto img {
    width: 100%;
    height: auto;
    order: 1; /* Garante imagem acima */
  }

  .produto .info {
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    align-items: center;
    order: 2; /* Texto abaixo */
  }

  .btn-comprar {
    align-self: center;
  }

 
}
 @media (max-width: 768px) {
  .seo-banner {
    padding: 40px 16px;
  }

  .seo-banner h1 {
    font-size: 28px;
  }

  .seo-banner p {
    font-size: 16px;
  }
}