/* static/css/servico_selection.css */

.service-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.35rem 0 1rem;
    width: 100%;
}

.service-selection-intro {
    margin-bottom: 0.9rem;
}

.service-selection-title {
    margin: 0;
    color: #f5f7fa;
    font-size: 1rem;
    font-weight: 700;
}

.service-selection-subtitle {
    margin: 0.35rem 0 0;
    color: #8fa0ae;
    font-size: 0.86rem;
    line-height: 1.45;
}

.service-card {
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #1f2429 0%, #15191d 100%);
    padding: 1rem 1rem 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid #28303a;
    cursor: pointer;
    transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    gap: 0.9rem;
}

.service-card.selected {
    border-color: #19b6a4;
    background: linear-gradient(180deg, rgba(25, 182, 164, 0.18) 0%, rgba(15, 87, 80, 0.2) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.service-card:hover {
    border-color: #3b4b58;
}

.service-card-details {
    flex-grow: 1;
}

.service-card-name {
    font-size: 1rem; /* 16px */
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.service-card-meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    color: #8e9aa5;
    margin-top: 0.32rem;
}

.service-card-meta .price {
    color: #19b6a4;
    font-weight: 700;
}

.service-card-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #4a5662;
}

.service-card-selector {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #4a5662;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.service-card.selected .service-card-selector {
    background-color: #19b6a4;
    border-color: #19b6a4;
}

.service-card-selector-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: background-color 0.2s ease-in-out;
}

.service-card.selected .service-card-selector-inner {
    background: #0e1317;
}

.service-selection-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.service-selection-counter {
    color: #8fa0ae;
    font-size: 0.84rem;
    font-weight: 600;
}

.btn-confirmar-servicos:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (max-width: 500px) {
    .service-selection-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .service-selection-counter {
        text-align: center;
    }
}
