.prc-calculadora {
    width: 100%;
}

.prc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: end;
}

.prc-grid select {
    width: 100%;
    padding: 8px 15px 8ox 10px;
    box-sizing: border-box;
    border-radius: 0;
    border: 1px solid #d5d5d5;
    max-height: 40px;
    color: #002245;
}


.prc-grid button {
    cursor: pointer;
    background-color: #86BB46;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    color: #ffffff;
    border: 1px solid #86BB46;
    box-shadow: none !important;
    height: 40px;
}

.prc-grid button:hover {
    background-color: #002245;
}

.prc-grid button:disabled,
.prc-grid select:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.prc-resultado {
    margin-top: 20px;
    font-weight: 600;
}

@media (min-width: 768px) and (max-width: 991px) {
    .prc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .prc-grid {
        grid-template-columns: 1fr;
    }
}