#survey-form {
    max-width: 56rem;
}

h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #1f2937;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #1f2937;
}

.subtitle {
    color: #3b9346;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

textarea {
    font-size: 0.875rem;
    line-height: 1.25rem;
    border-width: 2px;
    border-radius: 1rem;
    resize: none;
    min-height: 8rem;
    border-color: #e9d5ff;
    padding: 1rem;
    background-color: transparent;
}

.btn-submit {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.75rem;

    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 3rem;
    padding-right: 3rem;

    border-radius: 1rem;
    border: none;

    color: #FFF;
    background: #FDC04B;
    background: linear-gradient(152deg, rgba(253, 192, 75, 1) 22%, rgba(245, 134, 58, 1) 64%);

    animation-duration: 300ms;
    transition-duration: 300ms;
}

.btn-submit:hover {
    background: #FDC04B;
    background: linear-gradient(152deg, rgb(195, 147, 57) 22%, rgb(184, 100, 44) 64%);
}

.rating-scale {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.rating-option {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    background-color: #ccc;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.rating-option:hover {
    transform: scale(1.15);
}

/* Classes para cores do score */
.rating-option.red {
    background-color: #dc3545;
    /* vermelho */
}

.rating-option.orange {
    background-color: #fd7e14;
    /* laranja */
}

.rating-option.green {
    background-color: #28a745;
    /* verde */
}

.star-rating {
    display: flex;
    gap: 6px;
    font-size: 3rem;
    cursor: pointer;
    justify-content: center;
}

.star-rating i {
    color: #ccc;
    transition: transform 0.2s ease, color 0.2s ease;
}

.star-rating i.filled {
    color: gold;
}

.star-rating i.hovered {
    color: gold;
    transform: scale(1.15);
}

.star-rating i.selected {
    color: gold;
    transform: scale(1.2);
}