body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
header {
  background: #222;
  color: #fff;
  padding: 15px 0;
}
header h1 { display: inline; }
header nav { float: right; }
header nav a { color: #fff; margin-left: 20px; text-decoration: none; }
.banner { background: #007BFF; color: #fff; text-align: center; padding: 40px 20px; }
.produtos { padding: 30px 0; }
.grid { display: flex; gap: 20px; flex-wrap: wrap; }
.produto { background: #fff; padding: 15px; border-radius: 8px; box-shadow: 0 0 5px rgba(0,0,0,0.08); flex: 1 1 calc(33.333% - 20px); text-align: center; }
.produto img { max-width: 100%; height: 180px; object-fit: cover; border-radius: 6px; }
.btn { display: inline-block; margin-top: 10px; padding: 10px 20px; background: #28a745; color: #fff; border-radius: 5px; text-decoration: none; }
.btn:hover { opacity: 0.95; }
.contato { padding: 30px 0; text-align: center; }
footer { background: #222; color: #fff; text-align: center; padding: 20px 0; margin-top: 30px; }




/* Card do produto */
.produto-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.produto-card h2 {
    margin-top: 0;
}

.produto-card ul {
    margin: 10px 0;
    padding-left: 20px;
}

.produto-card li {
    margin-bottom: 5px;
}

.produto-card img.thumb {
    max-width: 150px;
    display: block;
    margin-bottom: 10px;
}


/* Ajuste de listas de descrição */
.produto-card ul {
    list-style: none; /* remove bolinhas padrão */
    padding-left: 0;
    margin: 10px 0;
}
.produto-card li {
    margin-bottom: 6px;
    font-size: 1em;
    line-height: 1.4em;
}


/* Layout responsivo em grid */
.produtos-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .produtos-container {
        grid-template-columns: 1fr 1fr;
    }
}


/* Barra de busca */
.search-bar {
    margin-bottom: 20px;
    text-align: center;
}
.search-bar input {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}


/* Barra de busca fixa no topo da listagem */
.search-bar {
    margin: 20px auto;
    text-align: center;
}
.search-bar input {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}


/* Lista de descrição dos produtos */
.descricao-lista {
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
}
.descricao-lista li {
    margin-bottom: 6px;
    line-height: 1.4em;
}


/* Imagens no site */
.produto-card img.thumb {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    display: block;
    margin: 10px auto;
}

/* Pré-visualização no painel admin */
.preview-img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    margin-top: 10px;
    display: block;
}


/* ===== Botão de Download customizado ===== */
.download-container {
    text-align: center;
    margin: 10px 0;
}

.btn-download {
    display: inline-block;
    width: 90%;
    max-width: 250px;
    padding: 12px 20px;
    background-color: #007bff;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease;
}

.btn-download:hover {
    background-color: #0056b3;
}


/* ===== Estilo do preço centralizado e destacado ===== */


/* ===== Estilo do preço centralizado e destacado (corrigido) ===== */
.preco {
    display: block;
    width: auto;
    max-width: 320px;
    margin: 12px auto; /* centra o bloco horizontalmente */
    text-align: center; /* centraliza o texto dentro do bloco */
    font-size: 22px;
    font-weight: 700;
    color: #28a745; /* verde chamativo */
    background: #f8f9fa; /* fundo clarinho para contraste */
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}


.taxa-mensal {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}
