/* Fonte limpa e neutra */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
}

/* Header com degradê rosa-azul */
header {
    background: linear-gradient(90deg, #ff66b3, #3399ff);
    color: white;
    padding: 2rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

nav {
    margin-top: 1rem;
    font-size: 1.1rem;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 500;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: background 0.2s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}


/* Container centralizado */
main {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Títulos com espaço */
h1, h2, h3 {
    margin-bottom: 0.5rem;
}

/* Seções com fundo branco e sombra suave */
section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Galeria de produtos */
.produtos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.produto {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 200px;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.produto img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.produto h3 {
    margin: 0.5rem 0 0.3rem;
    font-size: 1.1rem;
}

.produto p {
    margin: 0;
    color: #0077cc;
    font-weight: bold;
}

/* Galeria de imagens na página do produto */
.galeria-detalhes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.galeria-detalhes img {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px;
    max-height: 120px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.galeria-detalhes img:hover {
    transform: scale(1.05);
    border-color: #ffcc00;
}

/* Botão "Comprar com Stripe" */
button#btn-comprar {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

button#btn-comprar:hover {
    background-color: #ffd633;
}

/* Footer discreto */
footer {
    text-align: center;
    padding: 1rem;
    background: #eee;
    margin-top: 2rem;
    font-size: 0.9rem;
}
.hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(120deg, #ff66b3, #66ccff);
    color: white;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero .btn-ver-produtos {
    background-color: #fff;
    color: #333;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s;
}

.hero .btn-ver-produtos:hover {
    background-color: #f2f2f2;
}

.vantagens ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.vantagens li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

