.ctc-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: 'Inter', -apple-system, sans-serif;
    color: #333;
}

.ctc-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
}

.ctc-step {
    font-size: 14px;
    color: #ccc;
    font-weight: 600;
}

.ctc-step.active {
    color: #ff5a3c; /* Swipoo-like orange */
}

.ctc-form-group {
    margin-bottom: 20px;
}

.ctc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.ctc-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 16px;
    transition: border-color 0.3s;
}

.ctc-select:focus {
    border-color: #ff5a3c;
    outline: none;
}

.ctc-button {
    width: 100%;
    padding: 15px;
    background: #ff5a3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.ctc-button:disabled {
    background: #ffd0c8;
    cursor: not-allowed;
}

.ctc-button.secondary {
    background: #f0f0f0;
    color: #666;
    margin-top: 10px;
}

.ctc-step-content {
    display: none;
}

.ctc-step-content.active {
    display: block;
}

.ctc-price-breakdown {
    background: #fcfcfc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.ctc-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 10px;
}

.ctc-price-row.destaque {
    color: #ff5a3c;
    font-weight: 600;
}

.ctc-details-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-size: 14px;
    color: #777;
}

.ctc-details-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.ctc-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    margin-top: 15px;
}
