* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    padding: 10px;
}

header {
    text-align: center;
    background: #00a896;
    padding: 15px;
    color: white;
}

.logo {
    width: 50px;
    vertical-align: middle;
}

main {
    max-width: 800px;
    margin: auto;
}

.calculadora {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.botoes-troca {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.botoes-troca button {
    padding: 10px;
    border: none;
    background: #028090;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.calculadora-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, select, button {
    padding: 10px;
    font-size: 16px;
}

.lojinha {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.produtos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-around;
}

.produto {
    width: 150px;
    text-align: center;
}

.produto img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .botoes-troca {
        flex-direction: column;
        gap: 10px;
    }

    .produtos {
        flex-direction: column;
        align-items: center;
    }

    .produto {
        width: 80%;
    }
}
