.hover-effect {
    user-select: none;
}

.hover-effect:hover {
    box-shadow: 0 6px 18px rgba(66, 105, 245, 0.15);
    border-color: #4269f5 !important;
    transform: translateY(-2px);
    background-color: #f7f9ff;
}

.hover-effect:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(66, 105, 245, 0.12);
}

.social-button {
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #ccc;
}

.social-button:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    margin: 10px 0;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.credit-result {
    border: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#vehiclePrice {
    font-weight: bold;
    color: #007bff;
}

#vehiclePrice:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
    font-weight: bold;
}

/* ─── Patrocinios Grid ─── */
.patrocinios-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.patrocinios-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.patrocinios-item {
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
    width: 100px;
}

.patrocinios-item:hover {
    color: #333;
    text-decoration: none;
    transform: translateY(-4px);
}

.patrocinios-icon {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.patrocinios-label {
    display: block;
    font-size: 12px;
    margin-top: 10px;
    font-weight: 500;
    color: #444;
    line-height: 1.3;
}

.patrocinios-sponsor-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 40%;
    height: 40%;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.patrocinios-sponsor-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
