body {
    font-family: Arial, sans-serif;
    background: #f8fafc;
    margin: 0;
    padding: 20px;
    color: #1e293b;
}

/* TITULO */
.container {
    text-align: center;
    margin-bottom: 30px;
}

/* CAIXAS */
.DadosEntrada, .resultado, .conteudo {
    background: white;
    padding: 25px;
    margin: 20px auto;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
}

/* INPUTS */
input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
}

/* BOTÕES */
button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

button:hover {
    opacity: 0.9;
}

/* BOTÃO PRINCIPAL */
#btnCalcular {
    background: #3b82f6;
    color: white;
}

/* BOTÕES RESULTADO */
.acoes button:first-of-type {
    background: #64748b;
    color: white;
}

.acoes button:first-of-type:hover {
    background: #3b82f6;
    color: white;
}

.acoes button:last-of-type {
    background: #4a775a;
    color: white;
}

.acoes button:last-of-type:hover {
    background: #22c55e;
}

/* BOTÕES LUCRO */
.botoesLucro {
    display: flex;
    gap: 10px;
}

.botoesLucro button {
    flex: 1;
    background: #e2e8f0;
}

/* BOTÕES AFILIADOS */
.botoesAfiliados {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.btn-afiliado {
    flex: 1;
    padding: 10px;
    background: #16a34a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}

.btn-afiliado:hover {
    background: #15803d;
}

/* RESULTADO */
.resultado {
    display: none;
    margin-top: 20px;
}

/* FOOTER */
.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #64748b;
}

.footer a {
    color: #3b82f6;
    text-decoration: none;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .DadosEntrada, .resultado, .conteudo {
        padding: 20px;
        max-width: 100%;
    }

    .botoesLucro, .botoesAfiliados {
        flex-wrap: wrap;
    }
}

/* BLOCO AFILIADO MELHORADO */
.produtos-afiliado {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.titulo-afiliado {
    font-size: 16px;
    font-weight: bold;
    color: #1e293b;
}

.sub-afiliado {
    font-size: 13px;
    color: #475569;
    margin-bottom: 10px;
}

/* BOTÕES */
.btn-afiliado {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px;
    background: #16a34a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    transition: 0.2s;
}

.btn-afiliado span {
    font-size: 11px;
    font-weight: normal;
    margin-top: 3px;
    opacity: 0.9;
}

.btn-afiliado:hover {
    transform: scale(1.02);
    background: #15803d;
}

/* BOTÃO DE DESTAQUE */
.btn-afiliado.destaque {
    background: #f59e0b;
}

.btn-afiliado.destaque:hover {
    background: #d97706;
}

/* AVISO */
.aviso-afiliado {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 10px;
}