
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 480px;
            margin: 0 auto;
            background: white;
            min-height: 100vh;
            position: relative;
            box-shadow: 0 0 40px rgba(0,0,0,0.3);
        }

        .header {
            text-align: center;
            padding: 25px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .logo {
            width: 140px;
            height: auto;
            filter: brightness(-1) invert(1);
        }

        .progress-bar {
            height: 4px;
            background: rgba(102, 126, 234, 0.1);
            margin: 0;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
        }

        .screen {
            display: none;
            padding: 30px 20px;
            min-height: calc(100vh - 150px);
            animation: fadeIn 0.4s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .screen.active {
            display: block;
        }

        .intro-screen {
            text-align: center;
            padding: 40px 20px;
        }

        .intro-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px 20px;
            border-radius: 24px;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .intro-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .product-image {
            width: 100%;
            height: 100%;
            margin: 20px auto;
            background: #f8f9fa;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .attention-text {
            margin: 25px 0;
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 16px;
            border-left: 4px solid #667eea;
        }

        .attention-text strong {
            color: #667eea;
        }

        .cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            max-width: 320px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        .question-title {
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
            color: #2d3748;
            line-height: 1.4;
        }

        .question-subtitle {
            text-align: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .question-description {
            text-align: center;
            color: #718096;
            margin: 20px 0;
            font-size: 15px;
            line-height: 1.6;
        }

        .options-container {
            margin: 30px 0;
        }

        .option {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 18px 20px;
            margin: 12px 0;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .option:hover {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        }

        .option.selected {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
        }

        .option-content {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .option-image {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            margin-right: 15px;
            background: #f7fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 2px solid #e2e8f0;
        }

        .option-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .option-text {
            font-weight: 600;
            color: #2d3748;
            font-size: 15px;
        }

        .option-description {
            font-size: 13px;
            color: #718096;
            margin-top: 4px;
            line-height: 1.4;
        }

        .arrow {
            color: #cbd5e0;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .option:hover .arrow {
            color: #667eea;
            transform: translateX(4px);
        }

        .name-input {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 16px;
            margin: 25px 0;
            outline: none;
            transition: all 0.3s ease;
            background: white;
        }

        .name-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .privacy-text {
            font-size: 13px;
            color: #718096;
            text-align: center;
            margin: 20px 0;
            line-height: 1.6;
            background: #f7fafc;
            padding: 15px;
            border-radius: 12px;
        }

        .continue-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            margin-top: 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .continue-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
        }

        .continue-button:disabled {
            background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
            cursor: not-allowed;
            box-shadow: none;
            transform: none;
        }

        .emoji {
            font-size: 28px;
            margin-right: 15px;
        }

        .checkbox-option {
            display: flex;
            align-items: center;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 18px 20px;
            margin: 12px 0;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .checkbox-option:hover {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        }

        .checkbox-option.selected {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
        }

        .checkbox {
            width: 24px;
            height: 24px;
            border: 2px solid #cbd5e0;
            border-radius: 6px;
            margin-left: auto;
            position: relative;
            transition: all 0.3s ease;
        }

        .checkbox.checked {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: #667eea;
        }

        .checkbox.checked::after {
            content: '✓';
            color: white;
            position: absolute;
            top: -2px;
            left: 4px;
            font-size: 16px;
            font-weight: bold;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .testimonials-title {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            display: inline-block;
            font-size: 16px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
        }

        .testimonial-images {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .testimonial-image {
            flex: 1;
            height: 220px;
            background: #f7fafc;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

        .image-label {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.6;
            color: #4a5568;
            margin-top: 15px;
        }

        .slider-container {
            text-align: center;
            margin: 40px 0;
        }

        .unit-selector {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            gap: 8px;
        }

        .unit-button {
            background: white;
            border: 2px solid #e2e8f0;
            padding: 10px 24px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .unit-button.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: #667eea;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .value-display {
            font-size: 56px;
            font-weight: 800;
            margin: 30px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slider-track {
            position: relative;
            height: 8px;
            background: #e2e8f0;
            border-radius: 10px;
            margin: 40px 20px;
        }

        .slider-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            transition: width 0.1s ease;
        }

        .slider-thumb {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            background: white;
            border: 4px solid #667eea;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
            transition: all 0.2s ease;
        }

        .slider-thumb:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
        }

        .slider-labels {
            display: flex;
            justify-content: space-between;
            margin: 10px 20px;
            font-size: 13px;
            color: #718096;
            font-weight: 600;
        }

        .slider-instruction {
            text-align: center;
            color: #a0aec0;
            font-size: 13px;
            margin: 15px 0;
            font-style: italic;
        }

        .slider-note {
            text-align: center;
            color: #4a5568;
            font-size: 14px;
            margin: 25px 0;
            font-weight: 500;
            line-height: 1.6;
        }

        .loading-screen {
            text-align: center;
            padding: 40px 20px;
        }

        .loading-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 35px;
            color: #2d3748;
            line-height: 1.4;
        }

        .loading-title .highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .loading-progress {
            margin: 35px 0;
        }

        .loading-bar {
            height: 10px;
            background: #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .loading-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            transition: width 0.5s ease;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
        }

        .loading-percentage {
            text-align: right;
            font-size: 15px;
            color: #4a5568;
            font-weight: 700;
        }

        .loading-image {
            width: 100%;
            max-width: 360px;
            height: 320px;
            background: #f7fafc;
            border-radius: 20px;
            margin: 25px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .loading-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .alert-screen {
            padding: 20px;
        }

        .alert-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .alert-icon {
            color: #667eea;
            font-size: 24px;
            margin-right: 5px;
        }

        .alert-title {
            font-size: 17px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .alert-subtitle {
            font-size: 15px;
            color: #4a5568;
            font-weight: 600;
        }

        .imc-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border-radius: 20px;
            padding: 25px;
            margin: 25px 0;
            border: 1px solid #e2e8f0;
        }

        .imc-title {
            font-size: 17px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: #2d3748;
        }
        
        .imc-visual-scale {
            position: relative;
            width: 100%;
            height: 24px;
            background: #e2e8f0;
            border-radius: 12px;
            display: flex;
            overflow: hidden;
            margin: 25px 0;
        }

        .imc-bar {
            height: 100%;
        }

        .imc-bar.underweight { background-color: #38b2ac; width: 15%; }
        .imc-bar.normal { background-color: #667eea; width: 30%; }
        .imc-bar.overweight { background-color: #ed8936; width: 20%; }
        .imc-bar.obesity { background-color: #f56565; width: 35%; }
        
        .imc-pointer {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 14px solid #2d3748;
            transition: left 0.5s ease;
        }

        .imc-pointer-label {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: #2d3748;
            color: white;
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
            transition: left 0.5s ease;
        }

        .imc-labels-container {
            display: flex;
            justify-content: space-around;
            font-size: 11px;
            text-align: center;
            margin-top: 8px;
        }

        .imc-label {
            font-weight: 700;
            opacity: 0.6;
            transition: all 0.3s ease;
            color: #4a5568;
        }

        .imc-label.active {
            opacity: 1;
            font-size: 13px;
            color: #667eea;
        }

        .alert-list {
            margin: 25px 0;
        }

        .alert-item {
            margin: 18px 0;
            padding-left: 25px;
            position: relative;
            font-size: 14px;
            line-height: 1.6;
            color: #4a5568;
        }

        .alert-item::before {
            position: absolute;
            left: 0;
            top: 0;
            font-size: 18px;
        }

        .alert-item strong {
            color: #2d3748;
        }

        .comparison-screen {
            padding: 20px;
            text-align: center;
        }

        .comparison-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #2d3748;
            line-height: 1.4;
        }

        .comparison-images {
            display: flex;
            gap: 15px;
            margin: 30px 0;
        }

        .comparison-image {
            flex: 1;
            height: 260px;
            background: #f7fafc;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .comparison-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .comparison-label {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10px 18px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        .health-metrics {
            margin: 35px 0;
        }

        .metric-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 18px 0;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .metric-label {
            font-size: 14px;
            color: #2d3748;
            font-weight: 600;
        }

        .metric-bars {
            display: flex;
            gap: 20px;
            flex: 1;
            margin: 0 20px;
        }

        .metric-bar {
            height: 10px;
            border-radius: 5px;
            flex: 1;
        }

        .metric-bar.before {
            background: #f56565;
        }

        .metric-bar.after {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        }

        .plan-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border-radius: 20px;
            padding: 25px;
            margin: 35px 0;
            text-align: left;
            border: 1px solid #e2e8f0;
        }

        .plan-title {
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 18px;
            text-align: center;
        }

        .plan-description {
            font-size: 14px;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 20px;
        }

        .plan-includes {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-radius: 16px;
            padding: 20px;
            margin: 20px 0;
        }

        .plan-includes h4 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .plan-includes ul {
            list-style: none;
            padding: 0;
        }

        .plan-includes li {
            margin: 12px 0;
            padding-left: 25px;
            position: relative;
            font-size: 14px;
            line-height: 1.6;
            color: #4a5568;
        }

        .plan-includes li::before {
            content: '•';
            color: #667eea;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 20px;
        }

        .bonus-section {
            margin: 35px 0;
        }

        .bonus-title {
            font-size: 20px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 25px;
            color: #2d3748;
            line-height: 1.4;
        }

        .bonus-item {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 20px;
            padding: 20px;
            margin: 18px 0;
            display: flex;
            align-items: center;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .bonus-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            margin-right: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
        }

        .bonus-content h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .bonus-content p {
            font-size: 13px;
            opacity: 0.95;
            line-height: 1.5;
        }

        .offer-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border-radius: 20px;
            padding: 25px;
            margin: 25px 0;
            text-align: center;
            border: 1px solid #e2e8f0;
        }

        .offer-title {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px;
            border-radius: 16px;
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 25px;
            box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
        }

        .offer-list {
            text-align: left;
            margin: 25px 0;
        }

        .offer-item {
            display: flex;
            align-items: center;
            margin: 15px 0;
            padding: 15px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .offer-check {
            color: #667eea;
            font-size: 22px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .bonus-highlight {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border: 2px dashed #667eea;
            border-radius: 16px;
            padding: 20px;
            margin: 25px 0;
            text-align: center;
        }

        .price-section {
            background: white;
            border-radius: 20px;
            padding: 25px;
            margin: 25px 0;
            text-align: center;
            border: 3px solid #667eea;
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
        }

        .original-price {
            text-decoration: line-through;
            color: #a0aec0;
            font-size: 17px;
            font-weight: 600;
        }

        .current-price {
            font-size: 52px;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 12px 0;
        }

        .price-note {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px;
            border-radius: 12px;
            font-size: 14px;
            margin-top: 18px;
            font-weight: 600;
            line-height: 1.5;
        }

        .guarantee-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-radius: 20px;
            padding: 25px;
            margin: 25px 0;
            text-align: center;
            border: 1px solid #e2e8f0;
        }

        .testimonial-final {
            background: white;
            border-radius: 20px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
        }

        .stars {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 12px;
        }

        .flavinha-image {
            width: 100%;
            max-width: 320px;
            height: 220px;
            background: #f7fafc;
            border-radius: 20px;
            margin: 25px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .flavinha-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .result-images {
            width: 100%;
            max-width: 420px;
            margin: 25px auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .result-images img {
            width: 100%;
            height: auto;
            display: block;
        }

        .process-diagram {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border-radius: 20px;
            padding: 25px;
            margin: 25px 0;
            text-align: center;
            border: 1px solid #e2e8f0;
        }

        .process-diagram img {
            width: 100%;
            max-width: 320px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        @media (max-width: 480px) {
            .container {
                max-width: 100%;
            }
            
            .question-title {
                font-size: 20px;
            }
            
            .intro-title {
                font-size: 22px;
            }

            .comparison-images {
                flex-direction: column;
            }

            .comparison-image {
                height: 220px;
            }

            .value-display {
                font-size: 48px;
            }

            .current-price {
                font-size: 44px;
            }
        }
        <style id="tema-minimo-feminino">
  /* 1) FUNDO GERAL DA PÁGINA (body) */
  body{
    background: linear-gradient(135deg, #ffe1ec 0%, #f3e7ff 100%) !important; /* rosa suave -> lavanda suave */
  }

  /* 2) PRIMEIRA DOBRA (header e tela inicial) */
  .header{
    background: linear-gradient(135deg, #ff5fa2 0%, #b96bff 100%) !important; /* rosa -> lavanda */
  }
  /* Se quiser um cartão/área de destaque na 1ª dobra, pinte o "attention box" */
  #screen1 .attention-text{
    background: #fff5f9 !important;           /* leve rosé */
    border-left-color: #ff5fa2 !important;    /* acento rosa */
  }
  /* Opcional: dar um glow levinho na imagem da primeira dobra */
  #screen1 .product-image{
    box-shadow: 0 12px 36px rgba(255,95,162,.18) !important;
  }

  /* 3) BOTÕES (CTA e continuar) */
  .cta-button,
  .continue-button{
    background: linear-gradient(135deg, #ff5fa2 0%, #b96bff 100%) !important;
    box-shadow: 0 10px 28px rgba(255,95,162,.28) !important;
    /* Não alterar cor do texto! (sem color:) */
    /* Não usar -webkit-text-fill-color */
  }
  .cta-button:hover,
  .continue-button:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(255,95,162,.34) !important;
  }
  .cta-button:active,
  .continue-button:active{
    transform: translateY(0);
  }

  /* 4) NÃO TOCAR NO RESTO — mas alguns componentes usam “fills” azuis.
        Se quiser o slider e a barra de progresso combinando, ative abaixo.
        (Se não quiser, apague essas 3 regras) */
  .progress-fill{ background: linear-gradient(90deg, #ff5fa2 0%, #b96bff 100%) !important; }
  .slider-fill{   background: linear-gradient(90deg, #ff5fa2 0%, #b96bff 100%) !important; }
  .slider-thumb{  border-color:#ff5fa2 !important; box-shadow:0 4px 12px rgba(255,95,162,.35) !important; }



  html, body {
    background: linear-gradient(135deg, #ffe1ec 0%, #f3e7ff 100%) !important; /* rosa suave -> lavanda suave */
  }
