/* Base Reset & Fonts */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #fce4ec 100%);
    background-attachment: fixed;
    color: #333;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
}

.quiz-container {
    background: white;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.15), 0 5px 20px rgba(255, 105, 180, 0.1);
    border-radius: 0;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
}

/* Top Banner */
.top-banner {
    width: 100%;
    background: linear-gradient(135deg, #E91E63 0%, #FF1493 50%, #FF69B4 100%);
    color: white;
    text-align: center;
    padding: 5px 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    position: relative;
}

.top-banner img {
    max-height: 90px;
    height: auto;
    width: auto;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Progress Bar */
.progress-container {
    width: 100%;
    background: linear-gradient(90deg, #fce4ec 0%, #f8bbd0 100%);
    height: 6px;
    border-radius: 10px;
    margin: 10px 20px 30px 20px;
    max-width: calc(100% - 40px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF1493 0%, #FF69B4 50%, #FFB6C1 100%);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.4);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Steps */
.step {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: flex;
}

.step h2 {
    font-size: 1.9rem;
    font-weight: 800;
    text-align: center;
    margin: 10px 0 15px 0;
    line-height: 1.4;
    color: #2c2c2c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step .highlight {
    color: #FF1493;
    font-weight: 700;
}

.step-subtext {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ... */

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
    text-transform: none;
    letter-spacing: 0.5px;
    outline: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E91E63 0%, #FF1493 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

/* Pink Button for Step 1 */
.btn-brown {
    width: 100%;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%) !important;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5) !important;
    border: none !important;
    outline: none !important;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-brown::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-brown:hover::before {
    width: 300px;
    height: 300px;
}

.btn-brown:hover {
    background: linear-gradient(135deg, #E91E63 0%, #FF1493 100%) !important;
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.6) !important;
    transform: translateY(-3px) scale(1.02);
}

/* Step 4 button now uses default pink gradient from .btn-primary */

/* Step 1 Specifics */
.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.footer-warning {
    margin-top: 20px;
    background-color: #d32f2f;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Option Cards */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

.option-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.option-card:hover {
    border-color: #FF1493;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.2);
    background: linear-gradient(135deg, #fff 0%, #fce4ec 100%);
}

.option-card img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    padding: 5px;
}

.box-card img {
    height: 80px;
    object-fit: cover;
    padding: 0;
}

.option-card p {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 5px 0 0 0;
    color: #333;
}

/* Options List & Items */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 20px 0;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 65px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.option-item:hover {
    border-color: #FF1493;
    background: linear-gradient(135deg, #fff 0%, #fce4ec 100%);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.15);
}

.option-item:active {
    transform: translateX(3px) scale(1);
}

.option-item.selected {
    border-color: #FF1493;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.2), 0 4px 15px rgba(255, 20, 147, 0.3);
    transform: scale(1.02);
}

.option-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-item span:not(.option-icon) {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    color: #333;
    flex: 1;
}

.text-only-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    /* keep spacing consistent */
}

/* Responsiveness adjustments */
/* Responsiveness adjustments */
@media (min-width: 480px) {
    .options-grid {
        grid-template-columns: 1fr 1fr;
        /* Explicitly state grid columns */
    }
}

/* Step 5 Form Styles */
.secure-message {
    display: flex;
    align-items: start;
    gap: 10px;
    background-color: transparent;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.lock-icon {
    font-size: 1.2rem;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

/* Step 5 button now uses default pink gradient from .btn-primary */
#step5 .btn-primary {
    margin-top: 10px;
}

/* Step 6 Icons */
.option-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.step-subtext {
    text-align: center;
    color: #777;
    margin-bottom: 20px;
    font-size: 0.95rem;
    margin-top: -10px;
}

/* Step 10: WhatsApp & Testimonial */
.whatsapp-container {
    width: 100%;
    background-color: #E2E1DE;
    /* Better beige match */
    padding: 20px 15px;
    /* More padding around */
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.whatsapp-card {
    background: white;
    padding: 8px 12px 25px;
    /* Extra bottom padding for time */
    border-radius: 0 16px 16px 16px;
    /* Rounded corners except top-left */
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 340px;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at bottom left, transparent 70%, white 72%);
    /* Actually a simple triangle is easier and more robust */
    background: none;
    width: 0;
    height: 0;
    border-top: 12px solid white;
    border-left: 12px solid transparent;
}

.wa-name {
    color: #25D366;
    /* or #075E54 */
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.2;
    text-align: left;
}

.wa-player {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-dot {
    width: 12px;
    height: 12px;
    background-color: #34B7F1;
    /* WhatsApp Blue */
    border-radius: 50%;
    flex-shrink: 0;
}

.wa-wave {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 24px;
    overflow: hidden;
    margin: 0 5px;
}

.bar {
    background-color: #d0d0d0;
    width: 3px;
    border-radius: 2px;
    transition: background-color 0.1s ease;
}

.bar.played {
    background-color: #34B7F1;
    /* WhatsApp Blue */
}

.bar:nth-child(odd) {
    height: 60%;
}

.bar:nth-child(even) {
    height: 100%;
}

.bar:nth-child(3n) {
    height: 40%;
}

.bar:nth-child(4n) {
    height: 80%;
}

.bar:nth-child(5n) {
    height: 50%;
}

/* Slider Styles (Steps 11, 12, 13) */
.unit-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px 0 30px 0;
}

.unit {
    padding: 6px 20px;
    border-radius: 18px;
    background-color: #f0f0f0;
    color: #999;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.unit.active {
    background-color: #FF1493;
    color: white;
}

.weight-display {
    text-align: center;
    margin: 20px 0 30px 0;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.unit-label {
    font-size: 1.8rem;
    font-weight: normal;
    color: #666;
    margin-left: 3px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
    padding: 15px 0;
}

.ruler-ticks {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 35px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    background-image: repeating-linear-gradient(to right,
            #ddd 0px,
            #ddd 1px,
            transparent 1px,
            transparent 3px,
            #ccc 3px,
            #ccc 4px,
            transparent 4px,
            transparent 12px);
    background-size: 12px 100%;
}

.weight-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #e8e8e8;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.weight-slider::-webkit-slider-track {
    width: 100%;
    height: 4px;
    background: #e8e8e8;
    border-radius: 2px;
}

.weight-slider::-moz-range-track {
    width: 100%;
    height: 4px;
    background: #e8e8e8;
    border-radius: 2px;
}

/* Ponteiro rosa em forma de gota - mais largo */
.weight-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 50px;
    background-color: #FF1493;
    border-radius: 4px 4px 50% 50%;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.weight-slider::-webkit-slider-thumb:hover {
    transform: scale(1.05);
}

.progress-container {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF1493 0%, #FF69B4 100%);
    width: 0%;
    transition: width 0.4s ease;
}

/* Buttons */
.weight-slider::-moz-range-thumb {
    width: 28px;
    height: 50px;
    background-color: #FF1493;
    border-radius: 4px 4px 50% 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.weight-slider::-moz-range-thumb:hover {
    transform: scale(1.05);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    padding: 0 5px;
}

.drag-hint {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 20px;
}


.bar:nth-child(odd) {
    height: 60%;
}

.bar:nth-child(even) {
    height: 100%;
}

.bar:nth-child(3n) {
    height: 40%;
}

.bar:nth-child(4n) {
    height: 80%;
}

.bar:nth-child(5n) {
    height: 50%;
}

.wa-avatar-container {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.wa-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.mic-icon-wrapper {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wa-time {
    font-size: 0.75rem;
    color: #999;
    position: absolute;
    bottom: 5px;
    left: 15px;
    /* approximate position based on print */
}

/* Testimonial */
.testimonial-section {
    width: 100%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

/* BMI Chart Styles */
.bmi-chart-container {
    position: relative;
    width: 100%;
    margin: 30px 0 20px 0;
}

.bmi-bars {
    display: flex;
    width: 100%;
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.bmi-segment {
    flex: 1;
}

.seg-1 {
    background-color: #66BB6A;
}

/* Green */
.seg-2 {
    background-color: #CDDC39;
}

/* Lime */
.seg-3 {
    background-color: #FFCA28;
}

/* Amber */
.seg-4 {
    background-color: #FF7043;
}

/* Deep Orange */
.seg-5 {
    background-color: #EF5350;
}

/* Red */

.bmi-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.bmi-labels span {
    flex: 1;
    text-align: center;
}

.bmi-marker-wrapper {
    position: absolute;
    top: -35px;
    /* Adjust based on tooltip height */
    left: 50%;
    /* JS will update this */
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: left 0.5s ease-out;
}

.bmi-tooltip {
    background-color: #2c3e50;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    white-space: nowrap;
    margin-bottom: 2px;
}

.bmi-marker-circle {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 3px solid #5d4037;
    border-radius: 50%;
    box-sizing: border-box;
    position: absolute;
    top: 25px;
    /* Position it overlapping the bar slightly */
}

.testimonial-section h3 {
    text-align: center;
    font-size: 1.1rem;
    margin: 15px 0;
}

.transformation-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.review-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.review-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.stars {
    color: #FFC107;
    font-size: 0.9rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Alert Boxes for Step 17 */
.alert-box {
    margin: 20px 0;
    padding: 20px;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.yellow-box {
    background-color: #FFF9E6;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.pink-box {
    background-color: #FFE8F0;
    color: #333;
}

.pink-box h3 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.pink-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pink-box li {
    margin: 12px 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.transformation-headline {
    text-align: center;
    font-size: 1.3rem;
    margin: 30px 0 20px 0;
    line-height: 1.5;
}

.transformation-images {
    margin: 20px 0;
}

.bmi-table-img {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
}

/* Step 17 - Analysis Header Styles */
.analysis-header {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}

.warning-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 15px 0;
    color: #333;
}

.bmi-text {
    font-size: 1.4rem;
    margin: 15px 0;
    color: #000;
    font-weight: 900;
}

.zone-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 10px 0;
}

/* Step 18 - Loading Bars */
.loading-bars {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
}

.loading-item {
    margin-bottom: 25px;
}

.loading-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.loading-percentage {
    color: #666;
    font-weight: 600;
}

.loading-bar-bg {
    width: 100%;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF1493 0%, #FF69B4 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 10px;
}

/* Carousel */
.carousel-container {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    position: relative;
}

.carousel-images {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    display: none;
    border-radius: 15px;
}

.carousel-img.active {
    display: block;
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}


.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #FF1493;
}

/* Step 19 - Body Type Selection */
.body-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
}

.body-type-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.body-type-card:hover {
    border-color: #FF1493;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.body-type-card img {
    width: 100%;
    height: auto;
    display: block;
}

.body-type-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
}

.body-type-label span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.radio-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.body-type-card:hover .radio-circle {
    border-color: #FF1493;
}

.body-type-card:hover .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #FF1493;
    border-radius: 50%;
}

/* Manter 2 colunas em todas as telas */
/* @media (max-width: 480px) {
    .body-type-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
} */

/* Step 20 - Final Results */
.transformation-box {
    width: 100%;
    max-width: 650px;
    margin: 25px auto;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #d4f1d4 0%, #c8e6c9 100%);
    padding: 15px;
}

.transformation-main-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.body-fat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 650px;
    margin: 25px auto;
}

.body-fat-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.body-fat-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.body-fat-percentage {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 650px;
    margin: 20px auto;
}

.profile-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}

.profile-card h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    margin: 0 0 8px 0;
}

.profile-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.profile-value.highlight {
    color: #2196F3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 650px;
    margin: 25px auto;
}

.benefit-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0 auto 15px auto;
    display: block;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

.highlight-text {
    color: #2196F3;
    font-weight: 600;
}

/* Manter grids 2x2 em todas as telas - nÃ£o forÃ§ar 1 coluna no mobile */
/* @media (max-width: 600px) {
    .body-fat-grid,
    .profile-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
} */

/* Price Box */
.price-box {
    max-width: 650px;
    margin: 30px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-header {
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.price-content {
    background: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.price-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #333;
    line-height: 1.3;
}

.price-tag {
    text-align: right;
    position: relative;
}

.discount-badge {
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.value {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    line-height: 1;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 5px;
}

/* CTA Button Large */
.btn-cta-large {
    width: 100%;
    max-width: 650px;
    padding: 20px;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(109, 76, 65, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px auto;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(109, 76, 65, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 30px rgba(109, 76, 65, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(109, 76, 65, 0.4);
    }
}

.btn-cta-large:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 76, 65, 0.5);
}

/* Security Badges */
.security-badges {
    text-align: center;
    margin: 20px auto;
}

.security-img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* Testimonials Carousel */
.testimonials-carousel {
    max-width: 650px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

@media (max-width: 600px) {
    .price-content {
        flex-direction: column;
        text-align: center;
    }

    .price-tag {
        text-align: center;
    }

    .price-amount {
        justify-content: center;
    }
}

/* Guarantee Banner */
.guarantee-banner {
    max-width: 700px;
    margin: 40px auto 30px auto;
}

.guarantee-banner-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Weekly Progress Grid */
.weekly-progress-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 30px auto;
}

.progress-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-bar-vertical {
    width: 60px;
    height: 180px;
    background: #e0e0e0;
    border-radius: 30px;
    margin: 0 auto 15px auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.progress-percentage-inside {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: #666;
    z-index: 2;
}

.progress-fill {
    width: 100%;
    border-radius: 0 0 30px 30px;
    transition: height 0.5s ease;
    position: relative;
}

.progress-percentage {
    font-size: 1.3rem;
    font-weight: 700;
    color: #666;
    display: block;
    margin: 10px 0;
}

.progress-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 8px 0 5px 0;
    color: #333;
}

.progress-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

/* Cost Comparison */
.cost-comparison {
    max-width: 650px;
    margin: 40px auto;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
}

.cost-comparison h2 {
    font-size: 1.4rem;
    text-align: center;
    margin: 0 0 25px 0;
}

.cost-list {
    margin: 20px 0;
}

.cost-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cost-text {
    flex: 1;
    font-size: 1rem;
    color: #333;
}

.cost-price {
    font-weight: 700;
    color: #666;
    text-decoration: line-through;
}

.total-price-highlight {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.3rem;
    margin: 20px 0;
}

.value-proposition {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin: 20px 0;
}

.availability-alert {
    background: #ffe8e8;
    border: 2px solid #ffcccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Most Sold Box */
.most-sold-box {
    max-width: 650px;
    margin: 30px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.most-sold-badge {
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: white;
    padding: 12px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.most-sold-content {
    background: white;
    padding: 25px;
}

.most-sold-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #333;
}

.most-sold-price {
    text-align: center;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

/* Guarantee Seal */
.guarantee-seal {
    text-align: center;
    margin: 30px auto;
}

.guarantee-seal-img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .weekly-progress-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .weekly-progress-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Money Back Guarantee */
.money-back-section {
    max-width: 650px;
    margin: 40px auto;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.money-back-section h2 {
    margin: 0 0 15px 0;
}

.stars-rating {
    font-size: 1.5rem;
    margin: 10px 0;
}

.money-back-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 15px 0;
}

.support-text {
    color: #4CAF50 !important;
    font-size: 1.05rem !important;
}

/* Nutritionist Section */
.nutritionist-section {
    max-width: 500px;
    margin: 30px auto;
    text-align: center;
}

.nutritionist-img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.nutritionist-credentials {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.protocol-text {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #2196F3;
}

.crn-text {
    font-size: 1.05rem;
    margin: 10px 0;
    color: #2196F3;
}

/* Timer Alert */
.timer-alert {
    max-width: 650px;
    margin: 30px auto;
    background: #ffe8e8;
    border: 2px solid #ffcccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.timer-alert p {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

/* Testimonials List */
.testimonials-list {
    max-width: 650px;
    margin: 30px auto;
}

.testimonial-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 5px 0 10px 0;
    color: #333;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 650px;
    margin: 30px auto;
}

.faq-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px 20px;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* Info Cards Large - Height and Weight */
.info-card-large {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px 25px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-card-label {
    font-size: 1rem;
    color: #999;
    margin-bottom: 10px;
    font-weight: 400;
}

.info-card-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkmark {
    color: #4CAF50;
    font-size: 1.6rem;
    font-weight: 900;
}

.alert-icon {
    color: #FF9800;
    font-size: 1.6rem;
    font-weight: 900;
}

.status-badge {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 5px;
}

.status-good {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.status-warning {
    background-color: #FFF3E0;
    color: #E65100;
}

.info-card-large {
    min-height: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* Step 4 New Split Layout */
.step-split-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.split-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split-image-container img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    /* Adjust as needed */
    object-fit: contain;
}

.split-options-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.split-option-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    /* Slightly different visual style */
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.split-option-item:hover {
    border-color: #FF1493;
    background: #fff0f6;
}

.split-option-item.selected {
    border-color: #FF1493;
    background: #ffe6f0;
    /* Light pink background */
    box-shadow: 0 0 0 1px #FF1493;
}

/* Checkbox style square */
.checkbox-square {
    width: 24px;
    height: 24px;
    border: 2px solid #FF1493;
    /* Main color border */
    border-radius: 6px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.2s;
}

.split-option-item.selected .checkbox-square {
    background: #FF1493;
}

.split-option-item.selected .checkbox-square::after {
    content: '';
    display: block;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.split-option-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
}

/* Specific highlight for Step 4 items */
.highlight-option {
    background-color: #FFF8E1;
    /* Yellowish background for 'Peitos' in example? Or we stick to pink */
}

/* Responsive adjustments for Step 4 */
@media (max-width: 768px) {
    .step-split-content {
        flex-direction: row;
        /* Force side-by-side */
        align-items: center;
        gap: 8px;
    }

    .split-image-container {
        width: 45%;
        flex: 0 0 45%;
        display: flex;
        justify-content: center;
    }

    .split-options-container {
        width: 55%;
        flex: 1;
        gap: 6px;
    }

    .split-image-container img {
        max-height: 400px;
        width: 100%;
        margin-bottom: 0;
        object-fit: contain;
    }

    .split-option-item {
        padding: 12px 14px;
        min-height: 50px;
    }

    .split-option-text {
        font-size: 1rem;
    }

    .checkbox-square {
        width: 22px;
        height: 22px;
        margin-right: 12px;
    }
}/ *   S t e p   4   V e r t i c a l   D e s i g n   * /  
 . v e r t i c a l - o p t i o n s - c o n t a i n e r   {  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   1 5 p x ;  
         w i d t h :   1 0 0 % ;  
         m a r g i n :   2 0 p x   0 ;  
 }  
  
 . v e r t i c a l - o p t i o n - i t e m   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         p a d d i n g :   1 0 p x ;  
         b o r d e r :   2 p x   s o l i d   # e 0 c b e 0 ;  
         / *   L i g h t   P u r p l e / P i n k i s h   b o r d e r   * /  
         b o r d e r - r a d i u s :   1 2 p x ;  
         b a c k g r o u n d :   # f f f ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
         h e i g h t :   8 0 p x ;  
         / *   F i x e d   h e i g h t   f o r   c o n s i s t e n c y   * /  
 }  
  
 / *   S e l e c t e d   s t a t e   -   P i n k   b o r d e r   a n d   l i g h t   p i n k   b g   * /  
 . v e r t i c a l - o p t i o n - i t e m . s e l e c t e d   {  
         b o r d e r - c o l o r :   # f f 6 9 b 4 ;  
         b a c k g r o u n d :   # f f f 0 f 5 ;  
 }  
  
 . o p t i o n - t h u m b   {  
         w i d t h :   6 0 p x ;  
         h e i g h t :   6 0 p x ;  
         b o r d e r - r a d i u s :   8 p x ;  
         o b j e c t - f i t :   c o v e r ;  
         m a r g i n - r i g h t :   1 5 p x ;  
 }  
  
 . o p t i o n - l a b e l   {  
         f l e x :   1 ;  
         f o n t - w e i g h t :   7 0 0 ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         c o l o r :   # 0 0 0 ;  
         t e x t - a l i g n :   l e f t ;  
 }  
  
 . c u s t o m - c h e c k b o x   {  
         w i d t h :   2 5 p x ;  
         h e i g h t :   2 5 p x ;  
         b o r d e r :   2 p x   s o l i d   # f f 6 9 b 4 ;  
         / *   P i n k   b o r d e r   * /  
         b o r d e r - r a d i u s :   6 p x ;  
         m a r g i n - r i g h t :   1 0 p x ;  
         b a c k g r o u n d :   w h i t e ;  
 }  
  
 / *   C h e c k b o x   f i l l e d   s t a t e   w h e n   i t e m   i s   s e l e c t e d   * /  
 . v e r t i c a l - o p t i o n - i t e m . s e l e c t e d   . c u s t o m - c h e c k b o x   {  
         b a c k g r o u n d :   # f f 6 9 b 4 ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 / *   O p t i o n a l   c h e c k m a r k   i f   d e s i r e d ,   b u t   s i m p l e   f i l l   i s   o f t e n   e n o u g h   * /  
 . v e r t i c a l - o p t i o n - i t e m . s e l e c t e d   . c u s t o m - c h e c k b o x : : a f t e r   {  
         c o n t e n t :   ' â S ' ;  
         c o l o r :   w h i t e ;  
         f o n t - s i z e :   1 6 p x ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   5 0 % ;  
         l e f t :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ;  
         l i n e - h e i g h t :   1 ;  
 }  
  
 . b t n - g r e e n   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   2 0 p x ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 4 C A F 5 0   0 % ,   # 4 5 a 0 4 9   1 0 0 % ) ;  
         / *   G r e e n   G r a d i e n t   * /  
         c o l o r :   w h i t e ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   5 0 p x ;  
         f o n t - s i z e :   1 . 3 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c u r s o r :   p o i n t e r ;  
         m a r g i n - t o p :   2 0 p x ;  
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 7 6 ,   1 7 5 ,   8 0 ,   0 . 4 ) ;  
         t e x t - t r a n s f o r m :   n o n e ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . b t n - g r e e n : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
         b o x - s h a d o w :   0   8 p x   2 0 p x   r g b a ( 7 6 ,   1 7 5 ,   8 0 ,   0 . 6 ) ;  
 }  
 