/* Comparison Page Styles (Antes e Depois) */
.comparison-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.comparison-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.comparison-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.label-antes,
.label-depois {
    position: absolute;
    top: 12px;
    color: #FFF;
    font-weight: 700;
    font-size: 0.75rem;
    /* Smaller like the reference */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.label-antes {
    left: 25%;
    transform: translateX(-50%);
}

.label-depois {
    right: 25%;
    transform: translateX(50%);
}

.comparison-question {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
    padding: 0 10px;
}

.comparison-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.btn-comparison {
    flex: 1;
    background: #6A1B9A;
    /* Solid purple matching btn-primary */
    border: none;
    padding: 8px 5px;
    /* Reduced padding */
    border-radius: 8px;
    /* Reduced radius */
    font-size: 0.75rem;
    /* Reduced font size */
    font-weight: 700;
    color: #FFF;
    /* White text */
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    /* Reduced gap */
    box-shadow: 0 4px 10px rgba(106, 27, 154, 0.2);
}

.btn-comparison:hover {
    background: #7B1FA2;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(106, 27, 154, 0.3);
}

.btn-comparison:active {
    transform: translateY(0);
}

.btn-comparison.selected {
    background: #4A148C;
    /* Darker purple when selected */
    border: 2px solid #FFF;
    box-shadow: 0 0 15px rgba(106, 27, 154, 0.5);
}

.comp-emoji {
    font-size: 0.9rem;
    /* Reduced emoji size */
}

/* Commitment Styles */
.commitment-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.commitment-question {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 25px;
}

.commitment-buttons {
    display: flex;
    flex-direction: column;
    /* VERTICAL */
    gap: 8px;
    /* Reduced gap */
    width: 100%;
}

.commitment-btn {
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    /* Reduced padding */
}