.tax-calculator-section {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 700px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1e1f2f, #2e3050);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.tax-calculator-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.tax-calculator-section p {
    font-size: 0.95rem;
    color: #c3c3c3;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tax-calculator {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.tax-calculator label {
    font-weight: 600;
    margin-bottom: 4px;
    color: #e0e0e0;
}

.tax-calculator input {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #2c2f4a;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.tax-calculator input:focus {
    box-shadow: 0 0 0 2px #5865F2;
    background-color: #323554;
}

.tax-calculator button {
    background-color: #5865F2;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.tax-calculator button:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
}

.fee-info-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 400px;
    flex-wrap: wrap;
}

.fee-box {
    flex: 1 1 48%;
    background-color: #2c2f4a;
    border-radius: 10px;
    padding: 1rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.fee-box:hover {
    transform: translateY(-4px);
}

.fee-box h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.fee-box p {
    font-size: 0.9rem;
    color: #c7c7c7;
}

#resultado p {
    margin: 0;
    padding: 6px 0;
    font-size: 1rem;
    color: #dcdcdc;
}

#resultado strong {
    color: #ffffff;
}
