/* Archivo: static/css/pricing_section.css */

.pricing-velocimeter {
    position: relative;
    width: 320px;
    height: 180px;
    margin: 0 auto 1.5rem auto;
}
.pricing-velocimeter-bg {
    width: 100%;
    height: 100%;
    border-radius: 100% 100% 0 0 / 100% 100% 0 0;
    background: linear-gradient(90deg, #e0e7ef 0%, #b3d0f7 100%);
    border: 8px solid #007bff;
    border-bottom: none;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.pricing-needle {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 6px;
    height: 90px;
    background: #ff4136;
    border-radius: 3px;
    transform-origin: bottom center;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}
.pricing-velocimeter-labels {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #007bff;
    font-weight: bold;
    padding: 0 10px;
}
.pricing-slider {
    width: 100%;
    margin: 1.5rem 0 0.5rem 0;
}
@media (max-width: 500px) {
    .pricing-velocimeter { width: 100%; height: 120px; }
    .pricing-needle { height: 60px; }
}
