/* Configurações de Base */
:root {
    --primary: #ff6a00;
    --bg: #ffffff;
    --card-bg: #f5f5f7;
    --text: #1d1d1f;
    --text-sec: #86868b;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; text-decoration: none; }

body { background: var(--bg); color: var(--text); }

/* Header com Logo Original */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #eee;
}

#logoDoStore h1 {
    font-size: 28px;
    font-weight: 900;
    font-style: italic; /* Toque de originalidade */
    letter-spacing: -1px;
}

#logoDoStore h1 span {
    color: var(--primary);
}

.btn-wpp-header {
    background: #25d366;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
}

/* Produtos Primeiro */
.produtos { padding: 20px 5%; max-width: 1200px; margin: 0 auto; }

.produtos .highlight { margin: 20px auto; }


.headline { text-align: center; margin-bottom: 40px; }
.headline h1 { font-size: 34px; font-weight: 800; }
.headline #sub { color: var(--text-sec); font-weight: 500; }

.grid-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    margin: 2%;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    border: 1px solid transparent;
}

.card:hover { transform: translateY(-5px); border-color: #ddd; }

.card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    margin-bottom: 15px;
}

.card h3 { font-size: 22px; font-weight: 700; margin-bottom: 5px; }
.card p { font-size: 14px; color: var(--text-sec); margin-bottom: 20px; }

.tag {
    position: absolute; top: 15px; left: 15px;
    background: var(--primary); color: white;
    font-size: 12px; font-weight: 800; padding: 8px 14px; border-radius: 20px;
}

.btn-comprar {
    background: var(--text);
    color: white;
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-comprar:hover { background: var(--primary); }

/* Seção de 5 Vantagens (Layout Horizontal ou Grade) */
.vantagens {
    background: #fafafa;
    padding: 20px 5%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.v-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.v-item {
    text-align: center;
    font-size: 14px;
    min-width: 150px;
    line-height: 1.2;
}

.v-item span {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
}

.v-item strong {
    color: var(--text);
    font-weight: 700;
}

/* Pagamento e Footer */
.pagamento { text-align: center; padding: 20px 5%; color: var(--text-sec); font-size: 15px; }
.pagamento strong { color: var(--text); }

/* Estilização da Tag de Desenvolvedor */
.developer-tag {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Linha divisória sutil */
}

.developer-tag p {
    font-size: 11px !important; /* Bem discreto */
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.5; /* Meio transparente para não competir com a logo */
}

.developer-tag a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.developer-tag a:hover {
    color: var(--primary); /* Brilha na cor da sua marca ao passar o mouse */
    opacity: 1;
}

/* Ajuste no container do footer para centralizar tudo */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 5%;
    background: #000;
    color: #fff;
}

footer p { opacity: 0.5; font-size: 13px; margin-bottom: 10px; }
.social a { color: var(--primary); font-weight: 800; }

/* Mobile */
@media (max-width: 768px) {
    .grid-produtos { grid-template-columns: 1fr; }
    .v-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
    .v-item { min-width: auto; }
}