@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/typo-round');

:root {
  --vermelho: #d61636;
  --amarelo: #ffd600;
  --branco: #fff;
    --primary-color: #e30613;
  --primary-dark: #b30510;
  --secondary-color: #ffd700;
  --dark-gray: #2d2d2d;
  

  --success: #28a745;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ececec;
  color: #1a1d1b;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 100vw;
  overflow-x: hidden;
  padding-top: 100px;
}
.categorias-texto{
background:  from-gray-900 via-gray-800 to-black text-white overflow-hidden;
color: #333;
text-align: center;
font-size: 2.6rem;
}
.categorias-representantes{
  background:  from-gray-900 via-gray-800 to-black text-white overflow-hidden;
  color: #000;
  text-align: center;
  font-size: 2.3rem;
  }


html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
 /* Modoal formulario */ 
    /* Botão para abrir modal */
    .abrir-modal {
      display: block;
      margin:4px auto;
      padding: 10px 24px;
      background-color: #187734;
      color: rgb(252, 249, 249);
      border: none;
      border-radius: 6px;
      font-weight:lighter;
      font-size: 19px; 
      cursor: pointer;      
      }
 /* Estilo do modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
    }

    .modal-conteudo {
      background-color: #fff;
      margin: 10% auto;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 400px;
      position: relative;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }

    .modal-conteudo h2 {
      margin-top: 0;
      color: #d2232a;
    }

    .fechar {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 22px;
      font-weight: bold;
      color: #666;
      cursor: pointer;
    }

    input, button {
      width: 49%;
      padding: 10px;
      margin: 10px 0;
      font-size: 16px;
    }
  .botao-verde {
    background-color: #0c8125;
    color: white;
    font-size: bold;
    font-weight: 800;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-size: 19px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
    animation: piscarSombra 1s infinite alternate; /* Aplica a animação */   
  }

  .botao-verde:hover {
    transform: scale(1.05);
  }

  /* Definição da animação */
  @keyframes piscarSombra {
    0% {
      box-shadow: 0 0 3px 2px rgba(118, 221, 77, 0.87); /* Sombra inicial */
    }
    100% {
      box-shadow: 0 0 15px 4px rgba(108, 245, 54, 0.87); /* Sombra mais "difusa" */
    }
  }


    button[type="submit"] {
      background-color: #d2232a;
      color: white;
      border: none;
      border-radius: 5px;
      font-weight: bold;
    }

    #mensagem {
      display: none;
      color: green;
      text-align: center;
      font-weight: bold;
      margin-top: 10px;
    }

    /* Fundo do modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(4px);
}

/* Caixa do modal */
.modal-conteudo {
  background: #fff;
  margin: 8% auto;
  padding: 40px 30px;
  border-radius: 14px;
  width: 90%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 10px 35px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease;
}

/* Animação de entrada */
@keyframes fadeIn {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Título */
.modal-conteudo h2 {
  margin-top: 0;
  color: #222;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
}

/* Botão fechar */
.fechar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: 0.2s;
}
.fechar:hover {
  color: #333;
}

/* Campos do formulário */
input {
  width: 100%;
  padding: 22px;
  margin: 12px 0;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s ease;
}
input:focus {
  border-color: #d2232a;
  box-shadow: 0 0 6px rgba(210,35,42,0.3);
  outline: none;
}

/* Botão de enviar */
button[type="submit"] {
  background: #d2232a;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}
button[type="submit"]:hover {
  background: #b61c23;
  transform: translateY(-1px);
}

/* Mensagem de sucesso */
#mensagem {
  display: none;
  color: #2e7d32;
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
}

/* Modoal formulario fim */

header {
  background: var(--preto);
  /* border-bottom: 4px solid var(--vermelho); */
  padding: 20px 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header h1 {
  color: var(--amarelo);
  font-size: 2.2rem;
  letter-spacing: 2px;
}
header h1 span {
  color: var(--vermelho);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--amarelo);
}

.hero {
  background: linear-gradient(120deg, var(--preto) 60%, var(--vermelho) 100%);
  padding: 0px 0 60px 0;
  text-align: center;
}
.hero-content h2 {
  font-size: 2.5rem;
  color: var(--amarelo);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #ffd700;
  color: var(--branco);
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn:hover {
  background: var(--amarelo);
  color: var(--preto);
}

.produtos {
  background: var(--preto);
  padding: 60px 0;
}
.produtos h2 {
  color: var(--vermelho);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.produto-card {
  background: #1a1a1a;
  border: 2px solid var(--amarelo);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.produto-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.produto-card img {
  width: 100%;
  max-width: 180px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.produto-card h3 {
  color: var(--amarelo);
  margin-bottom: 10px;
}

.sobre {
  background: linear-gradient(90deg, var(--vermelho) 0%, var(--preto) 100%);
  padding: 60px 0;
}
.sobre-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.sobre-texto {
  flex: 1 1 300px;
}
.sobre-texto h2 {
  color: var(--amarelo);
  margin-bottom: 18px;
}
.sobre-img {
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 16px;
  border: 4px solid var(--amarelo);
}

.contato {
  background: #f7f7f7;
  padding: 64px 0 48px 0;
}
.contato-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.contato-info {
  flex: 1 1 320px;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 32px 28px;
  margin-bottom: 18px;
}
.contato-info h2 {
  color: var(--vermelho);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.contato-info p {
  color: var(--preto);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.contato-lista {
  list-style: none;
  padding: 0;
}
.contato-lista li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--preto);
  font-weight: 500;
}
.contato-lista img {
  width: 22px;
  height: 22px;
  filter: none;
}
.contato-lista li a {
  color: var(--preto);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.contato-lista li a[href^="https://wa"] {
  color: #25d366;
}
.contato-lista li a[href^="mailto"] {
  color: var(--vermelho);
}
.contato-lista li a:hover {
  color: var(--amarelo);
}
.contato-form-area {
  flex: 1 1 380px;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 32px 28px;
}
#form-contato {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
#form-contato input,
#form-contato textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--amarelo);
  background: #f7f7f7;
  color: var(--preto);
  font-size: 1rem;
}
#form-contato textarea {
  min-height: 100px;
  resize: vertical;
}
#form-contato button {
  margin-top: 10px;
  background: var(--vermelho);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
#form-contato button:hover {
  background: var(--amarelo);
  color: var(--preto);
}
#mensagem-sucesso {
  color: var(--amarelo);
  text-align: center;
  margin-top: 18px;
  font-weight: bold;
}
@media (max-width: 900px) {
  .contato-flex {
    flex-direction: column;
    gap: 18px;
  }
  .contato-info, .contato-form-area {
    padding: 18px 8px;
  }
}

footer {
  background: var(--vermelho);
  color: var(--preto);
  text-align: center;
  padding: 18px 0;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .header-flex, .sobre-flex {
    flex-direction: column;
    text-align: center;
  }
  .sobre-img {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .container {
    width: 98%;
  }
  .produtos-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h2 {
    font-size: 2rem;
  }
}

/* Carrossel Hero */
.carrossel {
  position: relative;
  max-width: 500px;
  margin: 28px auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carrossel-imagens {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.carrossel-img {
  display: none;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: opacity 0.4s;
}
.carrossel-img.ativa {
  display: block;
  opacity: 1;
}
.carrossel-btn {
  background: var(--vermelho);
  color: var(--branco);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.6rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.85;
  transition: background 0.2s, color 0.2s;
}
.carrossel-btn.left {
  left: -48px;
}
.carrossel-btn.right {
  right: -48px;
}
.carrossel-btn:hover {
  background: var(--amarelo);
  color: var(--preto);
}
@media (max-width: 600px) {
  .carrossel {
    max-width: 98vw;
  }
  .carrossel-img {
    height: 140px;
  }
  .carrossel-btn.left {
    left: -10px;
  }
  .carrossel-btn.right {
    right: -10px;
  }
}

/* Carrossel Banner Hero */
.carrossel-banner {
  position: relative;
  max-width: 900px;
  margin: 28px auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carrossel-banners {
  width: 100%;
  overflow: hidden;
}
.banner {
  display: none;
  background: var(--preto);
  color: var(--branco);
  width: 100%;
  min-height: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  padding: 32px 32px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.banner.ativo {
  display: flex;
}
.banner-texto-esq {
  flex: 1 1 40%;
  text-align: left;
}
.banner-titulo {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--branco);
}
.banner-titulo .amarelo {
  color: var(--amarelo);
}
.banner-texto-dir {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.banner-oferta {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--amarelo);
}
.banner-desc {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--branco);
  margin-bottom: 10px;
}
.banner-btn {
  background: var(--branco);
  color: var(--preto);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
  border: none;
  display: inline-block;
}
.banner-btn:hover {
  background: var(--amarelo);
  color: var(--preto);
}
.carrossel-banner .carrossel-btn {
  background: var(--amarelo);
  color: var(--preto);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.6rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.85;
  transition: background 0.2s, color 0.2s;
}
.carrossel-banner .carrossel-btn.left {
  left: -48px;
}
.carrossel-banner .carrossel-btn.right {
  right: -48px;
}
.carrossel-banner .carrossel-btn:hover {
  background: var(--vermelho);
  color: var(--branco);
}
@media (max-width: 900px) {
  .carrossel-banner {
    max-width: 98vw;
  }
  .banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 10px;
    gap: 10px;
  }
  .banner-texto-esq, .banner-texto-dir {
    text-align: left;
    align-items: flex-start;
  }
  .banner-titulo {
    font-size: 2.1rem;
  }
  .banner-oferta {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .carrossel-banner {
    max-width: 99vw;
  }
  .banner {
    min-height: 120px;
    padding: 12px 2px;
  }
  .banner-titulo {
    font-size: 1.2rem;
  }
  .banner-oferta {
    font-size: 1rem;
  }
  .carrossel-banner .carrossel-btn.left {
    left: -10px;
  }
  .carrossel-banner .carrossel-btn.right {
    right: -10px;
  }
}

/* Banner Hero Profissional */
.hero-banner-pro {
  position: relative;
  background: linear-gradient(120deg, #232733 60%, #181a20 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  margin: 32px auto 32px auto;
  max-width: 1200px;
  min-height: 340px;
  overflow: hidden;
  padding: 0 0 0 0;
}
.hero-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.hero-banner-left {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  background: transparent;
  position: relative;
  z-index: 2;
}
.hero-banner-img-principal {
  max-width: 370px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  z-index: 2;
}
.hero-banner-right {
  flex: 1 1 55%;
  color: #fff;
  padding: 36px 36px 36px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-banner-logo {
  width: 110px;
  margin-bottom: 10px;
}
.hero-banner-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #fff;
}
.hero-banner-desc {
  font-size: 1.1rem;
  margin-bottom: 22px;
  color: #e0e0e0;
  max-width: 520px;
}
.hero-banner-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.feature-item {
  background: rgba(30,30,30,0.7);
  border: 2px solid #d90429;
  color: #ffd600;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s, color 0.2s;
}
.feature-item:hover {
  background: #ffd600;
  color: #181a20;
  border-color: #ffd600;
}
.hero-banner-btn {
  background: #d90429;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
  border: none;
  display: inline-block;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero-banner-btn:hover {
  background: #ffd600;
  color: #181a20;
}
.hero-banner-indicadores {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.indicador {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  transition: opacity 0.2s, background 0.2s;
  border: 2px solid #ffd600;
}
.indicador.ativo {
  opacity: 1;
  background: #ffd600;
}
.hero-banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: #ffd600;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 4;
  transition: background 0.2s, color 0.2s;
  opacity: 0.8;
}
.hero-banner-nav.left {
  left: 18px;
}
.hero-banner-nav.right {
  right: 18px;
}
.hero-banner-nav:hover {
  background: #ffd600;
  color: #d90429;
}
@media (max-width: 1000px) {
  .hero-banner-content {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
  }
  .hero-banner-left, .hero-banner-right {
    padding: 0;
    min-width: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .hero-banner-right {
    padding: 24px 12px 12px 12px;
    align-items: center;
    text-align: center;
  }
  .hero-banner-logo {
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .hero-banner-pro {
    min-height: 220px;
    padding: 0;
  }
  .hero-banner-img-principal {
    max-width: 180px;
  }
  .hero-banner-title {
    font-size: 1.2rem;
  }
  .hero-banner-desc {
    font-size: 0.9rem;
    max-width: 98vw;
  }
  .feature-item {
    font-size: 0.9rem;
    padding: 7px 10px;
  }
  .hero-banner-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  .hero-banner-nav {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  .indicador {
    width: 8px;
    height: 8px;
  }
}

/* Topo profissional */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1001;
  padding: 0;
  background: #ff003c;
  color: #fff;
}
.top-bar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.top-bar-info, .top-bar-phone {
  font-weight: 600;
}
.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.2rem;
  font-size: 1.35rem;
  color: #fff;
  background: #e63946;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.top-bar-social a:hover {
  background: #ffd600;
  color: #e63946;
  transform: scale(1.12);
}
.top-bar-social i {
  pointer-events: none;
}

.main-header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background: #fff;
  padding: 0px;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  min-height: 56px;
}
.logo-area .logo-mardonio {
  font-size: 2.1rem;
  font-weight: 900;
  color: #ff003c;
  letter-spacing: 1px;
}
.logo-area .logo-mardonio span {
  color: #FFD600;
}
nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #232323;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #FFD600;
  color: #ff003c;
}
@media (max-width: 900px) {
  .header-flex {
    flex-direction: column;
    gap: 1px;
    padding: 0 10px;
  }
  nav ul {
    gap: 16px;
  }
}

/* Novo Banner/Carrossel Moderno EXPANDIDO */
.novo-banner-carousel {
  position: relative;
  max-width: 100vw;
  width: 100%;
  min-height: 480px;
  height: 60vh;
  margin: 0 auto 0 auto;
  background: linear-gradient(120deg, #181a20 60%, #232733 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide {
  display: none;
  width: 100%;
  min-height: 480px;
  height: 60vh;
  align-items: center;
  justify-content: space-between;
  padding: 0 8vw;
  gap: 48px;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  animation: fadeIn 0.7s;
}
.carousel-slide.ativo {
  display: flex;
  position: relative;
}
.carousel-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  z-index: 2;
}
.carousel-text h1 {
  font-size: 3.2rem;
  color: var(--amarelo);
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.carousel-text p {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.carousel-btn {
  background: var(--vermelho);
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  padding: 18px 48px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
  border: none;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.carousel-btn:hover {
  background: var(--amarelo);
  color: var(--preto);
}
.carousel-img-area {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.carousel-img-area img {
  max-width: 520px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.carousel-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 3;
}
.carousel-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.3;
  transition: opacity 0.2s, background 0.2s;
  border: 3px solid var(--amarelo);
}
.carousel-indicator.ativo {
  opacity: 1;
  background: var(--amarelo);
}
.carousel-nav {
 
  top: 50%;
  transform: translateY(-50%);
  background: var(--amarelo);
  color: var(--vermelho);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 4;
  transition: background 0.2s, color 0.2s;
  opacity: 0.9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.carousel-nav.left {
  left: 32px;
}
.carousel-nav.right {
  right: 32px;
}
.carousel-nav:hover {
  background: var(--vermelho);
  color: #fff;
}
@media (max-width: 1100px) {
  .novo-banner-carousel, .carousel-slide, .carousel-slide.ativo {
    min-height: 320px;
    height: 38vh;
    padding: 0 2vw;
    gap: 18px;
  }
  .carousel-img-area img {
    max-width: 260px;
  }
  .carousel-text h1 {
    font-size: 1.7rem;
  }
  .carousel-text p {
    font-size: 1rem;
  }
  .carousel-btn {
    font-size: 1rem;
    padding: 10px 22px;
  }
  .carousel-indicator {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
}
@media (max-width: 700px) {
  .novo-banner-carousel, .carousel-slide, .carousel-slide.ativo {
    flex-direction: column;
    min-height: 180px;
    height: auto;
    padding: 10px 2vw;
    gap: 8px;
  }
  .carousel-img-area img {
    max-width: 120px;
  }
  .carousel-text h1 {
    font-size: 1.1rem;
  }
  .carousel-btn {
    font-size: 0.8rem;
    padding: 7px 12px;
  }
}

.imagens-com-texto {
  padding: 48px 0 32px 0;
}
.imagens-texto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  margin-top: 32px;
}
.img-texto-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 36px 24px 28px 24px;
  min-height: 340px;
  min-width: 0;
  transition: box-shadow 0.2s;
}
.img-texto-card-imgbox {
  width: 100%;
  height: 140px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.img-texto-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  display: block;
}
.img-texto-overlay {
  width: 100%;
  text-align: center;
}
.img-texto-overlay h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #c2002f;
  margin-bottom: 10px;
  white-space: normal;
  word-break: break-word;
}
.img-texto-overlay p {
  font-size: 1.08rem;
  color: #232323;
  margin-bottom: 0;
}
.img-texto-btn {
  background: #ff003c;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px #ff003c33;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.img-texto-btn:hover {
  background: #FFD600;
  color: #ff003c;
  box-shadow: 0 4px 16px #FFD60055;
}
@media (max-width: 1000px) {
  .imagens-texto-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}
@media (max-width: 700px) {
  .imagens-texto-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Carrossel Tradicional com Texto Sobreposto */
.carrossel-tradicional {
  position: relative;
  width: 100vw;
  min-height: 480px;
  height: 60vh;
  max-height: 600px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 0 0 0px 0px;
 
}
.slide {
  display: none;
  width: 100vw;
  height: 60vh;
  min-height: 480px;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: opacity 0.7s;
}
.slide.ativo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 1;
  z-index: 2;
}
.slide-overlay {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  justify-content: center;
  height: 100%;
}
.slide-overlay h1 {
  font-size: 3.5rem;
  color: var(--amarelo);
  margin-bottom: 0px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.55);
}
.slide-overlay p {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}
.slide-btn {
  background: var(--vermelho);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
  border: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.slide-btn:hover {
  background: var(--amarelo);
  color: var(--preto);
}
.carousel-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 3;
}
.carousel-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.3;
  transition: opacity 0.2s, background 0.2s;
  border: 3px solid var(--amarelo);
}
.carousel-indicator.ativo {
  opacity: 1;
  background: var(--amarelo);
}
.carousel-nav {
 
  top: 50%;
  transform: translateY(-50%);
  background: var(--amarelo);
  color: var(--vermelho);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 4;
  transition: background 0.2s, color 0.2s;
  opacity: 0.9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.carousel-nav.left {
  left: 32px;
}
.carousel-nav.right {
  right: 32px;
}
.carousel-nav:hover {
  background: var(--vermelho);
  color: #fff;
}
@media (max-width: 900px) {
  .carrossel-tradicional, .slide {
    min-height: 220px;
    height: 32vh;
    max-height: 320px;
  }
  .slide-overlay {
    max-width: 98vw;
    padding: 0;
    gap: 12px;
  }
  .slide-overlay h1 {
    font-size: 1.5rem;
  }
  .slide-overlay p {
    font-size: 1rem;
  }
  .slide-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  .carousel-indicator {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
}

.lancamentos {
  background: #f7f7f7;
  padding: 56px 0 40px 0;
}
.lancamentos h2 {
  color: var(--vermelho);
  text-align: center;
  margin-bottom: 36px;
  font-size: 2rem;
  font-weight: 400;
}
.lancamentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  justify-items: center;
}
.lancamento-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0 0 18px 0;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 260px;
  overflow: hidden;
}
.lancamento-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.lancamento-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px 14px 0 0;
  margin-bottom: 14px;
  display: block;
}
.lancamento-card h3 {
  color: var(--amarelo);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.lancamento-card p {
  color: var(--preto);
  font-size: 0.98rem;
  margin-bottom: 0;
}
.lancamento-card .cod {
  color: var(--vermelho);
  font-weight: bold;
}

/* FOOTER MODERNO E PREMIUM */
.footer-mardonio-pro {
  background: linear-gradient(120deg, #181a20 60%, #232733 100%);
  color: #fff;
  padding: 0;
  border-top: 4px solid #ffd600;
  box-shadow: 0 -2px 24px rgba(0,0,0,0.13);
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-mardonio-pro-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 0 32px;
  border-bottom: 1px solid #232733;
  min-height: 260px;
  align-items: flex-start !important;
}
.footer-mardonio-pro-col {
  flex: 1 1 0;
  min-width: 220px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 1.1rem;
  padding: 3.2rem 1.2rem 2.2rem 1.2rem;
  background: transparent;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}
.footer-mardonio-pro-col.logo {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding-top: 2.8rem;
}
.footer-mardonio-pro-col h4 {
  color: #FFD600;
  margin-bottom: 1.2rem;
  font-size: 1.35rem;
  font-size: inherit;
  letter-spacing: 1px;
  text-align: left;
}
.footer-mardonio-pro-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}
.footer-mardonio-pro-col ul li {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.08rem;
}
.footer-mardonio-pro-col ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-mardonio-pro-col ul li a:hover {
  color: var(--amarelo);
  text-decoration: underline;
}
.footer-mardonio-pro-col p {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
  flex-wrap: wrap;
}
.footer-mardonio-pro-col strong {
  margin-right: 0.3em;
  font-weight: 700;
}
.footer-mardonio-pro-col a {
  word-break: break-all;
  color: #ffd600;
  font-weight: 600;
  text-decoration: underline dotted #ffd600 1.5px;
  transition: color 0.2s;
}
.footer-mardonio-pro-col a:hover {
  color: #fff;
  text-decoration: underline solid #fff 2px;
}
.footer-mardonio-pro-social {
  margin-top: 1.2rem;
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  width: 100%;
}
.footer-mardonio-pro-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #232323;
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  border: 2px solid #232323;
  font-size: 1.3rem;
}
.footer-mardonio-pro-social a:hover {
  background: var(--amarelo);
  transform: scale(1.13) translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,214,0,0.13);
  border-color: var(--amarelo);
}
.footer-mardonio-pro-social img, .footer-mardonio-pro-social ion-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}
.footer-mardonio-pro-social a:hover img, .footer-mardonio-pro-social a:hover ion-icon {
  filter: brightness(1) invert(0) sepia(1) hue-rotate(60deg) saturate(5);
}
.footer-mardonio-pro-logo {
  margin-bottom: 1.1rem;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  margin-right: 90px;
}
.footer-mardonio-pro-logo img {
  margin: 0 auto 0.7rem auto;
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
}
.footer-mardonio-pro-bar {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1.1rem 0 0.7rem 0;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  margin-top: 0;
  font-weight: 500;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  opacity: 0.93;
  border-top: 1px solid #ffd600;
}
.footer-pro-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1) grayscale(1);
  opacity: 0.8;
  margin-right: 0.2rem;
  flex-shrink: 0;
  transition: filter 0.2s;
}
@media (max-width: 900px) {
  .footer-mardonio-pro-container {
    flex-direction: column;
    align-items: stretch !important;
    gap: 1.5rem;
    padding: 0 0.5rem 0.5rem 0.5rem;
  }
  .footer-mardonio-pro-col {
    min-width: 0;
    width: 100%;
    text-align: center;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 2.2rem 0.5rem 1.2rem 0.5rem;
  }
  .footer-mardonio-pro-logo {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
  }
  .footer-mardonio-pro-logo img {
    display: inline-block !important;
    margin: 0 auto !important;
    float: none !important;
  }
  .footer-mardonio-pro-social a {
    width: 38px;
    height: 38px;
  }
  .footer-mardonio-pro-social img, .footer-mardonio-pro-social ion-icon {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 600px) {
  .footer-mardonio-pro-container {
    flex-direction: column;
    align-items: center;
    padding: 0 0.2rem 0.2rem 0.2rem;
    gap: 0.5rem;
  }
  .footer-mardonio-pro-col {
    padding: 1.2rem 0.2rem 0.7rem 0.2rem;
    text-align: center;
    align-items: center;
  }
  .footer-mardonio-pro-col p, .footer-mardonio-pro-col li {
    font-size: 0.98rem;
  }
  .footer-mardonio-pro-bar {
    font-size: 0.92rem;
  }
  .footer-mardonio-pro-social a {
    width: 32px;
    height: 32px;
  }
  .footer-mardonio-pro-social img {
    width: 16px;
    height: 16px;
  }
  .footer-mardonio-pro-logo {
    font-size: 1.1rem;
  }
}

.marcas-parceiras {
  background: #fff;
  padding: 36px 0 24px 0;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}
.marcas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 28px;
  align-items: center;
  justify-items: center;
}
.marcas-grid img {
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.2s, transform 0.2s;
  background: #fff;
}
.marcas-grid img:after {
  content: attr(alt);
  display: block;
  color: var(--vermelho);
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  padding: 8px 0;
}
.marcas-grid img:hover {
  filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.10));
  transform: scale(1.08);
}
@media (max-width: 700px) {
  .marcas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .marcas-grid img {
    max-width: 80px;
    max-height: 32px;
  }
}

.titulo-produtos {
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  font-weight: 900;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0.7rem;
  color: #ffb400;
}
.categorias-subtitulo {
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  font-weight: 400;
  font-size: 1.25rem;
  color: #d1cbcb;
  text-align: center;
  margin-bottom: 2.2rem;
}

.banners-destaque {
  width: 100%;
  margin: 48px auto 32px auto;
  padding: 0;
}
.banners-destaque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: 100%;
  max-width: 98vw;
  margin: 0 auto;
}
.banner-destaque {
  position: relative;
  background: linear-gradient(90deg, #18191c 0%, #c2002f 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 320px;
  margin: 0;
}
.banner-destaque-texto {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 32px 48px 40px;
  z-index: 2;
}
.banner-destaque-texto h2 {
  color: #FFD600;
  text-shadow: 0 2px 8px #0008;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.banner-destaque-logo {
  max-width: 180px;
  margin-bottom: 18px;
}
.banner-destaque-texto p {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 28px;
  font-weight: 500;
}
.banner-destaque-btn {
  background: #ff003c;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px #ff003c33;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.banner-destaque-btn:hover {
  background: #FFD600;
  color: #ff003c;
  box-shadow: 0 4px 16px #FFD60055;
}
.banner-destaque-imgbox {
  flex: 1 1 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  position: relative;
  z-index: 1;
  min-width: 220px;
  padding: 0 18px 0 0;
}
.banner-destaque-imgbox img {
  width: 100%;
  max-width: 420px;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px #ff003c22);
  display: block;
}
.banner-bg-peca {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  max-width: 500px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.banner-destaque-texto, .banner-destaque-imgbox {
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .banners-destaque-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .banner-destaque {
    flex-direction: column;
    min-height: 0;
  }
  .banner-destaque-imgbox {
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .banner-destaque-imgbox img {
    max-width: 320px;
    margin: 0 auto;
  }
  .banner-destaque-texto {
    align-items: center;
    text-align: center;
    padding: 36px 18px 24px 18px;
  }
}
@media (max-width: 900px) {
  .banners-destaque-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.destaque-amarelo {
  color: #ffb400;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  background: #25d366;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.whatsapp-float img {
  width: 34px;
  height: 34px;
  filter: invert(1);
}
.whatsapp-float:hover {
  background: #128c7e;
  box-shadow: 0 8px 32px rgba(37,211,102,0.18);
  transform: scale(1.08);
}
@media (max-width: 700px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }
}

.logo-mardonio-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.marcas-lista-pro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
  margin: 32px 0 0 0;
}
.marcas-lista-pro img {
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0;
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 8px 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.marcas-lista-pro img:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}

.cta-caminhao-pro {
  background: #f4f4f4;
  padding: 48px 0 0 0;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-caminhao-pro-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
}
.cta-caminhao-pro-img {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.cta-caminhao-pro-img img {
  max-width: 420px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
}
.cta-caminhao-pro-texto {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 32px 0;
}
.cta-caminhao-pro-texto h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #232323;
  margin-bottom: 10px;
  line-height: 1.1;
}
.cta-caminhao-pro-texto h2 span {
  color: var(--vermelho);
  font-size: 2.3rem;
}
.cta-caminhao-pro-texto p {
  font-size: 1.15rem;
  color: #232323;
  margin-bottom: 18px;
  max-width: 480px;
}
.cta-caminhao-pro-btn {
  background: var(--vermelho);
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 14px 38px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.cta-caminhao-pro-btn:hover {
  background: var(--amarelo);
  color: var(--preto);
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}
@media (max-width: 900px) {
  .cta-caminhao-pro-container {
    flex-direction: column;
    gap: 18px;
    padding: 0 8px;
  }
  .cta-caminhao-pro-img, .cta-caminhao-pro-texto {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
  }
  .cta-caminhao-pro-texto h2, .cta-caminhao-pro-texto h2 span {
    font-size: 1.3rem;
  }
  .cta-caminhao-pro-img img {
    max-width: 260px;
  }
}

.menu-toggle, .menu-close {
  display: none;
}
/* menu nav bar quando tela ficar responsive mobile*/
@media (max-width: 900px) {
  .menu-toggle {
    display: ;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--preto);
    cursor: pointer;
    margin-left: 18px;
  }
  .menu-close {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--preto);
    cursor: pointer;
    margin-right: 18px;
  }
  nav ul {
    flex-direction: column;
    gap: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: none;
    z-index: 200;
  }
  nav ul.show {
    display: flex;
  }
}

@media (max-width: 600px) {
  .top-bar-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0 8px;
  }
  .top-bar-info, .top-bar-phone {
    font-size: 0.98rem;
    text-align: left;
    word-break: break-word;
    width: 100%;
    line-height: 1.2;
  }
  .top-bar-social {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 2px;
  }
  .top-bar-social a img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }
}

@media (max-width: 700px) {
  body {
    padding-top: 120px !important;
  }
  .main-header {
    top: 60px !important;
  }
  .logo-area .logo-mardonio-img {
    max-width: 140px !important;
    width: 80vw !important;
    margin: 24px auto 2px auto !important;
    display: block !important;
  }
  .main-header nav,
  .main-header .menu-toggle {
    margin-top: 0 !important;
  }
  .slider-lancamentos-wrapper {
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    padding: 0 2vw;
  }
  .slider-lancamentos-imagens {
    min-height: 180px;
    max-width: 99vw;
    padding: 0;
  }
  .slider-track {
    flex-wrap: nowrap;
  }
  .lancamento-img-desc {
    flex: 0 0 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .lancamento-img-desc img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    max-width: 240px !important;
    width: 95vw !important;
    height: auto !important;
  }
  .lancamento-desc h3 {
    font-size: 1.1rem;
    word-break: break-word;
  }
  .lancamento-desc p, .lancamento-desc .cod {
    font-size: 0.95rem;
    word-break: break-word;
  }
  .slider-btn {
    position: static;
    margin: 8px auto;
    display: inline-flex;
    transform: none;
  }
}

.marcas-titulo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.representantes-section {
  text-align: center;
  margin: 48px auto 40px auto;
  max-width: 1300px;
  padding: 0 16px;
}

.representantes-section h2 {
  color: #d90429;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 1px;
}

.representantes-section select {
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1.5px solid #ccc;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  color: #232323;
  font-weight: 600;
}

.representantes-section .representantes-aviso {
  color: #d90429;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}

/* Layout profissional para os cards de representantes */
.representantes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
  align-items: stretch;
  margin-top: 32px;
}
.representante-card {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 32px 24px 28px 24px;
  width: 100%;
  min-width: 0;
  max-width: 370px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.representante-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border-color: #e53935;
}
.representante-card::before {
  content: '';
  display: block;
  width: 56px;
  height: 56px;
  background: #e53935 url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'32\' height=\'32\' fill=\'white\' viewBox=\'0 0 24 24\'><path d=\'M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.07 21 3 13.93 3 5a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.24 1.01l-2.2 2.2z\'/></svg>') no-repeat center/32px 32px;
  border-radius: 50%;
  margin: 0 auto 18px auto;
}
.representante-card h3 {
  font-size:1.18rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #e53935;
  margin-top: 0;
  line-height: 1.3;
  word-break: break-word;
}
.representante-fone {
  font-size: 1.1rem;
  color: #d90429 !important;
  margin-bottom: 4px;
  display: block;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.representante-card > div {
  margin-bottom: 6px;
  font-size: 1.04rem;
  color: #232323;
}
.representante-card > div:last-child {
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .representantes-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .representantes-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .representante-card {
    max-width: 98vw;
    min-width: 0;
    width: 100%;
    padding: 18px 8px;
    min-height: 0;
  }
}

.footer-mardonio-pro-col a[href^="mailto"] {
  white-space: nowrap;
  word-break: normal;
}

.footer-endereco {
  display: block;
  white-space: nowrap;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  margin-top: 0.2em;
}

.btn-catalogo-menu {
  background: #ffd600;
  color: #232323;
  font-weight: bold;
  border-radius: 20px;
  padding: 0.4em 1.2em;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-catalogo-menu:hover {
  background: #d90429;
  color: #fff;
}

.btn-catalogo-hero {
  background: #d90429;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  padding: 0.7em 2em;
  margin-top: 1.2em;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(230,57,70,0.13);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-catalogo-hero:hover {
  background: #ffd600;
  color: #232323;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #fff;
  color: #232323;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.10);
  border-top: 4px solid #ffd600;
  padding: 24px 16px 16px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieFadeIn 0.5s;
}

@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

.cookie-banner-content {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.cookie-banner-content p {
  font-size: 1.08rem;
  margin-bottom: 18px;
  color: #232323;
}

.cookie-banner-content a {
  color: #d90429;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cookie-btn-accept {
  background: #d90429;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7em 1.6em;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-btn-accept:hover {
  background: #ffd600;
  color: #232323;
}

.cookie-btn-options {
  background: #ececec;
  color: #232323;
  border: none;
  border-radius: 6px;
  padding: 0.7em 1.6em;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-btn-options:hover {
  background: #ffd600;
  color: #232323;
}

@media (max-width: 600px) {
  .cookie-banner-content {
    max-width: 98vw;
    font-size: 0.98rem;
  }
  .cookie-banner {
    padding: 16px 2vw 12px 2vw;
  }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 8px;
  }
} 

/* Novo estilo para representantes tipo cards */
.representantes-cards.novo-estilo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 24px;
  margin-top: 32px;
}
.representante-card.novo-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 28px 24px 28px;
  min-width: 280px;
  max-width: 340px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.representante-card.novo-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border-color: #e53935;
}
.icon-rep {
  margin-bottom: 18px;
}
.representante-card.novo-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #232323;
}
.rep-info {
  font-size: 1.08rem;
  color: #232323;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.rep-info span[style*="color:#25d366"] {
  font-weight: 700;
}
@media (max-width: 900px) {
  .representantes-cards.novo-estilo {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .representante-card.novo-card {
    max-width: 98vw;
    min-width: 0;
    width: 100%;
    padding: 18px 8px;
  }
  
  /*video background*/
  
  /* Reset de margin e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container do vídeo */
.video-background {
    position:;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh; /* Altura de 70% da tela */
    display: flex; /* Usamos flex para centralizar o vídeo */
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    overflow: hidden;
    z-index: -1;
    background-color: black; /* Preenche onde o vídeo não cobre */
}

/* Estilo do vídeo */
#bg-video {
    object-fit: contain; /* Mostra o vídeo inteiro */
    width: 100%;
    height: 50%;
}

/* Conteúdo sobre o vídeo */
.conteudo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	margin-bottom: 20px;
 

}



}


    .empresa-card {
      position: fixed;
      bottom: 400px;
      right: 0px;
      background-color: #c50202;
      padding: 6px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      width: 220px;
      z-index: 999;
      transition: all 0.4s ease;
      transform: scale(1);
      text-align:left; /* Alinha todo conteúdo à direita */
      max-width: 300px;
      width: 100%;

    }
    .empresa-card:hover,
    .empresa-card.empresa-active {
      width: 300px;
    }

    .empresa-title {
      font-size: 18px;
      text-align: left;
      margin-bottom: 10px;
      color: #fff;
      transition: all 0.3s ease;
    }

    .empresa-msg {
      font-size: 15px;
      color: #fff;
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.4s ease;
      height: 0;
      overflow: hidden;
      margin-bottom: 0;
      
    }

    .empresa-card:hover .empresa-msg,
    .empresa-card.empresa-active .empresa-msg {
      opacity: 1;
      transform: translateY(0);
      height: auto;
      margin-bottom: 10px;
      
    }

    .empresa-btn-container {
      flex-direction: column;
      align-items: center;
    }

    .empresa-btn {
      padding: 10px 15px;
      font-size: 16px;
	    font-weight:bolder;
      background-color: #fff;
      color: #c50202;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .empresa-btn, button {
    width: 63%;
    }
    .empresa-btn:hover {
      background-color: #fff;
      transform: scale(1.03);
    }

    @media (max-width: 480px) {
      .empresa-card {
        display: none;
      }
    }
	
	/* Garantia */
.garantia {
  background: var(--light-gray);
  padding: 80px 0;
}

.garantia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.garantia-image img {
  width: 100%;
  border-radius: 10px;
}

.garantia-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.lead {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-light);
}

.garantia-list {
  margin-bottom: 30px;
}

.garantia-item {
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.garantia-item i {
  font-size: 32px;
  color: var(--success);
  flex-shrink: 0;
}

.garantia-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

/* BOTÃO GARANTE SEU ESTOQUE */
.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 5px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
}

.btn-cta-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-cta-primary:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(227, 6, 19, 0.4);
}

.btn-cta-secondary {
  background: var(--success);
  color: var(--white);
}

.btn-cta-secondary:hover {
  background: #218838;
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(40, 167, 69, 0.4);
}

.btn-cta-large {
  padding: 22px 50px;
  font-size: 18px;
}

.btn-cta i {
  transition: transform 0.3s;
}

.btn-cta:hover i {
  transform: translateX(5px);
}


/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=800&width=1600") center / cover;
  opacity: 0.1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
	
  color: var(--secondary-color);
  font-size: 60px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.benefits-quick {
  display: flex;
  color: #fff;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  color: #fff;
  align-items: center;
  gap: 8px;
}

.benefit-item i {
  color: #fff;
  font-size: 20px;
}
/* Responsivo para tablets e celulares */
@media (max-width: 768px) {
  .cta-benefit {
    flex: 1 1 100%;
    font-size: 1rem;
	gap: 15px; /* menos espaço entre os itens no mobile */
    padding-left: 10px;
    padding-right: 10px;
  }
}

  .cta-benefit {
    font-size: 1rem; /* opcional: reduz fonte em telas pequenas */
    gap: 8px;        /* opcional: ícone e texto mais juntos */
  }

  .cta-benefit i {
    font-size: 1.3rem; /* opcional: ícone um pouco menor */
  }
}

.cta-group {
  display: ce;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.urgency-banner {
  background: rgba(255, 215, 0, 0.2);
  border-left: 4px solid var(--secondary-color);
  padding: 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* ICON QUEM SOMOS */
.sobre-icon {
  font-size: 37px;
  color: var(--primary-color);
  margin-bottom: 20px;
}


/* CTA Final */
.cta-final {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta-final-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.cta-final-content .lead {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--white);
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-benefit i {
  font-size: 24px;
  color: var(--secondary-color);
}

.cta-disclaimer {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
}
 /* ICON BENEFICIOS CARROSEL */
.benefits-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  color:#fff;
}

 /* texto carrosel */

.hero-titulo {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color:#fff;
}

.highlight {
  color: #ffd600;
  font-size: 60px;
}
 /* div produto mais vendido */
.produto-badge {
	position: relative;
    margin-bottom: 20px
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
 /* borda vermelho  card representantes  */
.depoimento-card {
    
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
	color:#e30613;
}
