/* Estilos gerais para dispositivos móveis */
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 0 10px;
    overflow-x: hidden;
  }

  header, footer {
    padding: 10px;
    text-align: center;
  }

  /* Menu de navegação */
  .menu-principal {
    display: none; /* Esconde o menu original */
  }

  .menu-mobile {
    display: block;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }

  .menu-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .menu-mobile li {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

  /* Banner principal */
  .banner-principal img {
    width: 100%;
    height: auto;
  }

  /* Mini banners - 3 por linha, texto proporcional */
  .row-fluid.banner.mini-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .row-fluid.banner.mini-banner .modulo.span4 {
    width: 31%;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 1.5%;
    font-size: 11px; /* Fonte reduzida para caber no mini banner */
  }

  .row-fluid.banner.mini-banner .modulo.span4:nth-child(3n) {
    margin-right: 0;
  }

  .row-fluid.banner.mini-banner .modulo.span4 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-sizing: border-box;
  }

  /* Texto dentro dos mini banners (parágrafo, título, etc.) */
  .row-fluid.banner.mini-banner .modulo.span4 h3,
  .row-fluid.banner.mini-banner .modulo.span4 p,
  .row-fluid.banner.mini-banner .modulo.span4 span {
    font-size: 11px;
    line-height: 1.2;
  }

  /* Produtos em destaque */
  .produtos-destaque {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .produto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .produto-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .produto-item h3 {
    font-size: 1.2em;
    margin: 10px 0;
  }

  .produto-item p {
    font-size: 1em;
    color: #555;
  }

  /* Botão "Ver Mais" menor */
  a[data-ver-mais] {
    width: 80px;
    height: 80px;
    font-size: 12px;
    line-height: 80px;
    transform: none;
  }

  /* Rodapé */
  footer {
    font-size: 0.9em;
    color: #777;
  }
}
