.earnings-section {
    background: linear-gradient(135deg, #6B1B7F 0%, #4C1D95 50%, #6B46C1 100%);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.earnings-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.earnings-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 60px;
}

.left-side {
    flex: 1;
    max-width: 500px;
}

.left-side h2 {
    font-size: 2.5rem;  /* era 4rem - agora menor */
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.1;
    color: white;
    white-space: nowrap;  /* Impede quebra de linha */
}

.location-input {
    margin-top: 40px;
}

.location-field {
    width: 100%;
    max-width: 400px;
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.location-field::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.location-field:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.right-side {
    flex: 0 0 auto;
}

.earnings-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 50px;
    text-align: center;
    min-width: 350px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.earnings-highlight {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.earnings-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 400;
}

.location-estimate {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

.hours-section {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.hours-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
}

.hours-slider {
    max-width: 600px;
    margin: 0 auto;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    cursor: pointer;
    margin-bottom: 20px;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 4px solid rgba(107, 70, 193, 0.8);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 4px solid rgba(107, 70, 193, 0.8);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.1);
}

/* Animações para valores */
.earnings-highlight {
    transition: all 0.3s ease;
}

.earnings-highlight.animate {
    transform: scale(1.05);
}

/* Slider track preenchido */
.slider {
    background: linear-gradient(to right, 
        white 0%, 
        white var(--slider-progress, 100%), 
        rgba(255, 255, 255, 0.2) var(--slider-progress, 100%), 
        rgba(255, 255, 255, 0.2) 100%
    );
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0 12px;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.6;
}

.disclaimer p {
    margin: 8px 0;
}

