/* Calculator Section */
.pricing-section {
    background: var(--bg);
    padding: 80px 0;
}

.calculator-container {
    max-width: 700px;
    margin: 0 auto;
}

.calculator {
    background: var(--bg);
    border: 1px solid var(--light-gray);
    padding: 40px;
}

.calculator-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 32px;
    text-align: center;
}

.calculator-step {
    margin-bottom: 32px;
}

/* Step wizard */
.step-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.step-dot-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--warm-gray);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid var(--light-gray);
}

.step-dot.active .step-dot-circle {
    background: var(--emerald-green);
    color: white;
    border-color: var(--emerald-green);
}

.step-dot.done .step-dot-circle {
    background: rgba(13, 92, 74, 0.12);
    color: var(--emerald-green);
    border-color: var(--emerald-green);
}

.step-dot-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--warm-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.step-dot.active .step-dot-label {
    color: var(--emerald-green);
    font-weight: 600;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--light-gray);
    margin: 0 4px;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.step-connector.done {
    background: var(--emerald-green);
}

/* Sliders */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2px;
    background: var(--light-gray);
    outline: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--charcoal-black);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--emerald-green);
}

/* Summary Box */
.resumen-box {
    background: var(--surface);
    border: 1px solid var(--light-gray);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 13px;
}

/* Buttons */
.btn-next {
    flex: 1;
    padding: 14px 24px;
    background: var(--emerald-green);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.btn-next:hover {
    background: var(--charcoal-black);
}

.btn-back {
    padding: 14px 20px;
    background: var(--light-gray);
    color: var(--charcoal-black);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.btn-back:hover {
    background: #d8d5d1;
}

.attention-box {
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    padding: 20px;
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.6;
}

.attention-box strong {
    color: var(--error-text);
}

.reservar-btn {
    display: block;
    width: 100%;
    background: var(--emerald-green);
    color: white;
    padding: 18px 32px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    margin-top: 24px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.reservar-btn:hover {
    background: var(--charcoal-black);
    transform: translateY(-2px);
}