/* Estilos gerais */
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-container {
    display: flex;
    flex-direction: row; /* Para exibir elementos lado a lado no desktop */
    height: auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.image {
    width: 300px;
    height: auto;
    background-image: url('blusinhas.png');
    background-size: contain;
    background-position: top;
    border-radius: 8px 0 0 8px;
    background-repeat: no-repeat;
}

.container {
    width: 300px;
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

/* Estilos para Mobile */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column; /* Para exibir elementos em coluna no mobile */
        height: auto;
        width: 300px; /* Ajuste para centralizar a largura no mobile */
    }

    .image {
        width: 300px;
        height: 250px;
        border-radius: 8px 8px 0 0;
    }

    .container {
        width: 300px;
        border-radius: 0 0 8px 8px;
        padding: 0;
    }
}

/* Estilos do Sistema */
h1 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #c4170c;
    background-color: #ffffff;
    border-color: #c4170c;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    color: #ffffff;
    background-color: #c4170c;
}

.resultado {
    margin-top: 20px;
    text-align: left;
}

.resultado h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.resultado-content {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: bold;
    color: #333;
}

.result-label-disclaimer {
    font-weight:100;
    font-size: 12px;
    color: #333;
}

.result-value {
    color: #c4170c;
    font-weight: bold;
}
