:root {
    --primary: #14B8A6;
    --primary-dark: #079889;
    --bg-color: #FFFFFF;
    --bg-gray: #F9FAFB;
    --text: #050505;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --color-red: #D60000;
    --color-green: #06B66C;
    --color-yellow: #FFF4D7;
    --color-blue: #E8F2FF;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; -webkit-tap-highlight-color: transparent; }

body { background-color: var(--bg-gray); color: var(--text); display: flex; justify-content: center; min-height: 100vh; }

.app-container {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
    background: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow-x: hidden;
}

/* Header & Progress */
header { 
    padding: 16px 20px 0 20px; 
    background: white; 
    z-index: 10; 
    text-align: center; 
}
header.hidden { display: none; }
.logo { font-weight: 900; font-size: 18px; margin-bottom: 12px; color: var(--text); }
.progress-container { flex-grow: 1; height: 6px; background: #EAF7F5; border-radius: 4px; overflow: hidden; margin: 0 auto; width: 100%; }
.progress-bar { height: 100%; width: 0%; background: var(--primary); transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 10px; box-shadow: 0 0 10px rgba(20, 184, 166, 0.5); }

/* Steps */
.step { display: none; padding: 32px 20px 48px; flex-direction: column; animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1); flex-grow: 1; }
.step.active { display: flex; }

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

/* Typography & Text Utils */
h1 { font-size: 26px; font-weight: 900; line-height: 1.2; margin-bottom: 12px; text-align: center; color: var(--text); }
h2 { font-size: 24px; font-weight: 900; line-height: 1.2; margin-bottom: 20px; text-align: center; color: var(--text); }
.subtitle { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; text-align: center; font-weight: 500; }
.description { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; text-align: center; line-height: 1.5; }
.hint { text-align: center; font-size: 14px; color: #9CA3AF; margin-bottom: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Text Highlights */
.text-turquoise { color: var(--primary); }
.text-red { color: var(--color-red); }
.text-green { color: var(--color-green); }
.text-yellow { color: var(--color-yellow); }

.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -2px;
    right: -2px;
    height: 35%;
    background: #CCFBF1;
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}
.highlight-yellow::after { background: var(--color-yellow); }

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-gray);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0 auto 20px;
    border: 1px solid var(--border);
}
.badge-primary { background: #CCFBF1; color: var(--primary-dark); border-color: var(--primary); }

/* Images */
.hero-logo { font-size: 32px; font-weight: 900; text-align: center; margin-bottom: 24px; letter-spacing: -1.5px; text-transform: uppercase; color: var(--primary-dark); }
.content-image-wrapper { position: relative; margin-bottom: 32px; text-align: center; }
.hero-image, .content-image { width: 100%; border-radius: 20px; object-fit: cover; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.floating-emoji { position: absolute; font-size: 32px; background: white; border-radius: 50%; padding: 8px; box-shadow: var(--shadow-md); top: -15px; right: -10px; z-index: 2; transform: rotate(15deg); }

/* Buttons Primary (Performance style) */
.btn { display: block; width: 100%; padding: 18px; border: none; border-radius: 16px; font-size: 18px; font-weight: 900; cursor: pointer; text-align: center; transition: all 0.2s; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 5px 0 var(--primary-dark); margin-top: 15px; }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 1px 0 var(--primary-dark); }

/* Options Lists */
.options-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.option-btn { width: 100%; padding: 16px 20px; background: white; border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; display: flex; align-items: center; justify-content: flex-start; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; text-align: left; box-shadow: var(--shadow-sm); gap: 16px; }
.option-btn:hover { border-color: var(--primary); background: #F0FFFC; }
.option-btn.selected { border-color: var(--primary); background: #F0FFFC; border-width: 2px; padding: 15px 19px; }
.option-emoji { font-size: 24px; }
.option-text { flex-grow: 1; font-size: 16px; font-weight: 700; color: var(--text); }
.option-arrow { color: var(--border); font-size: 18px; font-weight: bold; }
.option-btn:hover .option-arrow, .option-btn.selected .option-arrow { color: var(--primary); }

.mini-asset { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; background: #F3F4F6; }
.mini-asset.right { margin-left: auto; margin-right: 0; }
.checkbox-icon { width: 24px; height: 24px; border: 2px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: transparent; font-weight: bold; }
.option-btn.selected .checkbox-icon { background: var(--primary); border-color: var(--primary); color: white; content: '✓'; }
.checkbox-icon::after { content: '✓'; }

/* Multi-select Tags / Chips */
.tags-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.tag-btn { 
    padding: 14px 20px; 
    border-radius: 100px; 
    border: 2px solid var(--border); 
    background: white; 
    font-weight: 700; 
    cursor: pointer; 
    font-size: 15px;
    transition: all 0.2s;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}
.tag-btn:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tag-btn.selected { 
    background: #CCFBF1; 
    color: var(--primary-dark); 
    border-color: var(--primary); 
    transform: scale(1.02);
}
.category-title { font-weight: 900; margin-bottom: 16px; margin-top: 24px; color: var(--text); font-size: 18px; text-transform: uppercase; letter-spacing: -0.5px; border-bottom: 2px solid var(--bg-gray); padding-bottom: 8px; }

/* Grid Options (Gender) */
.options-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.option-card { 
    border: 2px solid var(--border); 
    border-radius: 20px; 
    padding: 20px 16px; 
    text-align: center; 
    cursor: pointer; 
    background: white; 
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.option-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); background: #F0FFFC; }
.option-card img { width: 100%; border-radius: 16px; margin-bottom: 16px; object-fit: cover; aspect-ratio: 1; }
.option-card span { font-weight: 900; font-size: 20px; color: var(--text); display: block; }

/* Inputs */
.input-group { position: relative; margin-bottom: 24px; }
.input-group input { width: 100%; padding: 18px; font-size: 24px; font-weight: 900; text-align: center; border: 2px solid var(--border); border-radius: 14px; font-family: 'Inter', sans-serif; }
.input-group input:focus { outline: none; border-color: var(--primary); }
.input-group span { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-weight: 700; font-size: 18px; }

/* Rulers / Sliders */
.slider-container { background: white; border: 2px solid var(--border); border-radius: 16px; padding: 24px; text-align: center; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.slider-val-display { font-size: 48px; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.slider-unit { font-size: 18px; color: var(--text-muted); font-weight: 700; }
.custom-slider { -webkit-appearance: none; width: 100%; height: 8px; border-radius: 4px; background: #E5E7EB; outline: none; margin-top: 24px; margin-bottom: 12px; }
.custom-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--primary); cursor: pointer; border: 4px solid white; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }

/* Alerts / Info Boxes */
.alert-box { padding: 16px; border-radius: 14px; display: flex; gap: 12px; font-size: 14px; line-height: 1.5; font-weight: 600; }
.alert-box.yellow { background: var(--color-yellow); color: #B45309; border: 1px solid #FDE68A; }
.alert-box.green { background: var(--color-green); color: white; }
.alert-box.light-blue { background: var(--color-blue); color: #1E40AF; border: 1px solid #BFDBFE; }
.alert-box strong { font-weight: 900; display: block; margin-bottom: 6px; font-size: 16px; }

/* Social Proof & Orbits */
.social-proof-small { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.social-proof-small .test-card { box-shadow: none; padding: 16px; background: #F9FAFB; }
.social-proof-circles { display: flex; justify-content: center; margin-bottom: 16px; position: relative; height: 60px; }
.circle-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 3px solid white; box-shadow: var(--shadow-sm); margin-left: -12px; position: relative; z-index: 2; }
.circle-img:first-child { margin-left: 0; }
.circle-img.count { background: var(--bg-gray); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; color: var(--text); z-index: 1; border: 3px solid white; }

.orbit-container { position: relative; width: 250px; height: 250px; margin: 0 auto 32px; display: flex; align-items: center; justify-content: center; }
.orbit-center { width: 100px; height: 100px; border-radius: 50%; background: var(--primary); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 900; z-index: 10; box-shadow: 0 10px 25px rgba(20, 184, 166, 0.4); text-align: center; line-height: 1.1; }
.orbit-center span { font-size: 28px; }
.orbit-center small { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.orbit-ring { position: absolute; width: 100%; height: 100%; border: 2px dashed var(--border); border-radius: 50%; animation: spin 40s linear infinite; }
.orbit-ring-inner { position: absolute; width: 65%; height: 65%; border: 2px dashed #E5E7EB; border-radius: 50%; animation: spin-reverse 30s linear infinite; }
.orbit-avatar { position: absolute; width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid white; box-shadow: var(--shadow-md); }
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }

/* Loading */
.loading-container { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 32px 20px; text-align: center; box-shadow: var(--shadow-sm); }
.loading-percentage { font-size: 48px; font-weight: 900; color: var(--primary); margin-bottom: 20px; }
.loading-bar-wrapper { width: 100%; height: 12px; background: #E5E7EB; border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.loading-bar-fill { height: 100%; background: var(--primary); width: 0%; transition: width 0.2s ease; }
.loading-text { font-size: 16px; color: var(--text-muted); font-weight: 600; }

/* Compare Cards */
.comparison-cards { display: flex; gap: 16px; margin-bottom: 32px; }
.comp-card { flex: 1; border: 2px solid var(--border); border-radius: 20px; padding: 20px; background: white; box-shadow: var(--shadow-sm); }
.comp-card.highlight { border-color: var(--primary); background: #F0FFFC; box-shadow: var(--shadow-md); transform: scale(1.05); z-index: 2; position: relative; }
.comp-card h3 { font-size: 20px; margin-bottom: 16px; text-align: center; font-weight: 900; text-transform: uppercase; }
.comp-card.highlight h3 { color: var(--primary-dark); }
.comp-card ul { list-style: none; padding: 0; font-size: 16px; line-height: 1.8; font-weight: 700; color: var(--text-muted); }
.comp-card.highlight ul { color: var(--text); }
.comp-card ul li { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.comp-card ul li::before { content: "❌"; font-size: 14px; }
.comp-card.highlight ul li::before { content: "✅"; font-size: 14px; }

/* Offer */
.price-box { font-size: 54px; font-weight: 900; color: var(--primary-dark); text-align: center; margin: 0px 0 24px 0; letter-spacing: -1px; }
.timer-box { background: #FEF2F2; color: var(--color-red); padding: 12px; border-radius: 12px; text-align: center; font-weight: 800; font-size: 15px; margin-bottom: 24px; border: 1px solid #FECACA; }
.badges { display: flex; justify-content: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.badges span { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); font-weight: 700; background: #F3F4F6; padding: 6px 12px; border-radius: 20px; }

/* Pulse Animation */
.pulse { animation: pulseBtn 2s infinite; }
@keyframes pulseBtn { 
    0% { transform: scale(1); box-shadow: 0 8px 0 var(--primary-dark), 0 0 0 0 rgba(20, 184, 166, 0.4); } 
    50% { transform: scale(1.02); box-shadow: 0 8px 0 var(--primary-dark), 0 0 0 15px rgba(20, 184, 166, 0); } 
    100% { transform: scale(1); box-shadow: 0 8px 0 var(--primary-dark), 0 0 0 0 rgba(20, 184, 166, 0); } 
}
.btn-primary.pulse:active { transform: scale(0.98) translateY(8px); box-shadow: 0 0 0 var(--primary-dark) !important; animation: none; }

/* Modules */
.modules-list { display: flex; flex-direction: column; gap: 20px; }
.module-card { background: white; border: 2px solid var(--border); border-radius: 20px; padding: 20px; border-left: 8px solid var(--primary); box-shadow: var(--shadow-sm); position: relative; }
.module-card h4 { margin-bottom: 10px; font-size: 18px; font-weight: 900; color: var(--text); display: flex; align-items: flex-start; gap: 10px; }
.module-card h4::before { content: "🔥"; font-size: 20px; }
.module-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; font-weight: 600; padding-left: 30px; }

/* Testimonials */
.testimonials { display: flex; flex-direction: column; gap: 20px; }
.test-card { background: white; border: 2px solid var(--border); border-radius: 20px; padding: 24px; box-shadow: var(--shadow-md); position: relative; }
.test-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.test-header img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.stars { color: var(--color-yellow); font-size: 16px; letter-spacing: 2px; }
.test-card p { font-size: 16px; color: var(--text); line-height: 1.6; font-style: italic; font-weight: 600; }
.test-header strong { font-weight: 900; font-size: 18px; color: var(--text); }
.verified-badge { color: var(--color-green); font-size: 14px; margin-left: 5px; }

/* Custom Visual Components for Funnel */
.chart-container { background: var(--primary-light); padding: 20px; border-radius: 20px; margin-bottom: 24px; position: relative; height: 180px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden;}
.line-chart { width: 100%; height: 100%; position: absolute; top: 0; left: 0; padding: 20px 0; overflow: visible; }
.chart-label { background: white; padding: 10px 20px; border-radius: 20px; font-weight: 900; color: var(--primary-dark); box-shadow: var(--shadow-md); z-index: 2; display: flex; align-items: center; gap: 8px;}

.metabolism-chart { display: flex; align-items: flex-end; justify-content: space-around; height: 160px; background: white; border: 2px solid var(--border); border-radius: 20px; padding: 20px 10px 0; margin-bottom: 24px; box-shadow: inset 0 -10px 20px rgba(0,0,0,0.02);}
.meta-bar { width: 20%; background: var(--bg-gray); border-radius: 8px 8px 0 0; transition: all 1s; position: relative; }
.meta-bar-1 { height: 30%; }
.meta-bar-2 { height: 50%; }
.meta-bar-3 { height: 75%; }
.meta-bar-4 { height: 100%; background: linear-gradient(to top, var(--color-yellow), var(--color-red)); box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); display: flex; align-items: flex-start; justify-content: center; padding-top: 10px; color: white; font-weight: 900; font-size: 16px; }

.projection-graph { display: flex; align-items: center; justify-content: space-between; padding: 50px 20px 30px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: 20px; margin-bottom: 24px; color: white; box-shadow: var(--shadow-md);}
.graph-point { display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 2; position: relative; }
.graph-point span { font-weight: 800; font-size: 14px; background: rgba(255,255,255,0.2); padding: 6px 12px; border-radius: 12px; backdrop-filter: blur(4px);}
.dot { width: 24px; height: 24px; background: white; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,255,255,0.2); }
.dot.bounce { animation: bounceDot 2s infinite; background: var(--color-yellow); box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.3); }
.graph-line { flex-grow: 1; height: 4px; background: rgba(255,255,255,0.3); margin: 0 -10px; position: relative; top: 18px; border-radius: 2px;}
.target-weight { position: absolute; top: -55px; background: var(--color-yellow); color: #92400E; padding: 8px 16px; border-radius: 12px; font-weight: 900; font-size: 20px; box-shadow: var(--shadow-md); white-space: nowrap;}
.target-weight::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); border-width: 8px 8px 0; border-style: solid; border-color: var(--color-yellow) transparent transparent transparent; }

@keyframes bounceDot { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.before-after-card { display: flex; border-radius: 20px; overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-md); border: 2px solid var(--border); background: white;}
.ba-half { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 20px 10px; position: relative;}
.ba-half.before { background: var(--color-red-light); opacity: 0.8;}
.ba-half.after { background: var(--color-green-light); }
.ba-label { font-weight: 900; font-size: 16px; margin-bottom: 15px; padding: 4px 12px; border-radius: 12px; background: white; }
.before .ba-label { color: var(--color-red); }
.after .ba-label { color: var(--color-green); }
.ba-icon { font-size: 48px; }
.ba-divider { width: 4px; background: white; z-index: 1;}

.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;}
.res-box { background: white; border: 2px solid var(--border); border-radius: 16px; padding: 16px; text-align: center; box-shadow: var(--shadow-sm);}
.res-box .icon { font-size: 32px; margin-bottom: 8px;}
.res-box .val { font-size: 24px; font-weight: 900; color: var(--primary-dark); margin-bottom: 4px;}
.res-box .lbl { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase;}

.value-stack { background: white; border: 2px solid var(--primary); border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 15px rgba(20, 184, 166, 0.15); position: relative; }
.value-stack::before { content: '🎁 BONOS INCLUIDOS'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 4px 16px; border-radius: 20px; font-weight: 900; font-size: 12px; letter-spacing: 1px; white-space: nowrap; }
.value-stack .value-title { font-weight: 900; font-size: 18px; color: var(--text); margin-bottom: 16px; border-bottom: 2px solid var(--border); padding-bottom: 8px; text-align: center; }
.value-stack ul { list-style: none; padding: 0; }
.value-stack li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-weight: 700; font-size: 15px; color: #374151; line-height: 1.4; }
.value-stack li .icon { font-size: 18px; margin-top: 0px; }
.value-stack li:last-child { margin-bottom: 0; }

/* Visual Refinements */
.image-card-thumb { width: 68px; height: 68px; border-radius: 14px; object-fit: cover; flex-shrink: 0; }
.focus-thumb { width: 72px; height: 72px; border-radius: 14px; object-fit: cover; margin-right: 16px; }
.best-shape-layout { display: flex; gap: 16px; align-items: stretch; margin-top: 24px; }
@media (max-width: 600px) { .best-shape-layout { flex-direction: column; } }
.best-shape-image { width: 100%; border-radius: 22px; object-fit: cover; box-shadow: var(--shadow-sm); max-height: 360px; margin-bottom: 16px; }
.imc-card { background: white; border-radius: 18px; padding: 20px; border: 1px solid #e5e7eb; box-shadow: var(--shadow-sm); margin-top: 24px; margin-bottom: 24px; }
.imc-gradient-bar { height: 12px; border-radius: 999px; background: linear-gradient(90deg, #10B981, #FACC15, #EF4444); position: relative; margin: 16px 0; }
.imc-marker { width: 16px; height: 16px; background: white; border: 3px solid var(--primary); border-radius: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); left: 83%; box-shadow: var(--shadow-sm); }
.metrics-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
@media (max-width: 380px) { .metrics-comparison { grid-template-columns: 1fr; } }
.metric-bar { border-radius: 6px; overflow: hidden; height: 8px; margin-top: 6px; }

.quiz-full-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  margin: 20px 0;
}

.quiz-infographic {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: var(--shadow-sm);
  margin: 22px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-shot-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.testimonial-shot-card img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: contain;
}

@media (min-width: 700px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.community-social-proof { margin: 24px 0 20px; }
.community-visual { position: relative; width: 100%; max-width: 360px; aspect-ratio: 1 / 1.02; margin: 0 auto; overflow: hidden; animation: communityFadeIn .6s ease-out both; }

.orbit { position: absolute; border: 2px dashed rgba(199, 178, 138, 0.55); border-radius: 999px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.orbit-1 { width: 150px; height: 150px; }
.orbit-2 { width: 235px; height: 235px; }
.orbit-3 { width: 315px; height: 315px; }

.community-avatar { position: absolute; border-radius: 999px; overflow: hidden; background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.10); border: 3px solid #d8d1ef; }
.community-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.community-avatar-center { width: 110px; height: 110px; left: 50%; top: 54%; transform: translate(-50%, -50%); z-index: 3; animation: centerPulse 3.2s ease-in-out infinite; }

.avatar-a { width: 62px; height: 62px; left: 18px; top: 170px; }
.avatar-b { width: 66px; height: 66px; left: 76px; top: 86px; }
.avatar-c { width: 58px; height: 58px; left: 255px; top: 102px; }
.avatar-d { width: 70px; height: 70px; left: 282px; top: 165px; }
.avatar-e { width: 56px; height: 56px; left: 55px; top: 278px; }
.avatar-f { width: 64px; height: 64px; left: 245px; top: 280px; }
.avatar-g { width: 50px; height: 50px; left: 305px; top: 325px; }
.avatar-h { width: 50px; height: 50px; left: 10px; top: 300px; }
.avatar-i { width: 48px; height: 48px; left: 160px; top: 320px; }

@keyframes communityFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes softFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
@keyframes centerPulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.03); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.avatar-a, .avatar-c, .avatar-e, .avatar-g, .avatar-i { animation: softFloat 3.8s ease-in-out infinite; }
.avatar-b, .avatar-d, .avatar-f, .avatar-h { animation: softFloat 4.6s ease-in-out infinite; }

.imc-value {
  font-weight: 900;
  font-size: 20px;
  color: var(--primary-dark);
}

.imc-category-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.imc-gradient-bar {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3B82F6 0%, #10B981 28%, #FACC15 48%, #F97316 68%, #EF4444 100%);
}

.imc-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--primary);
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  transition: left .4s ease, border-color .4s ease;
}

.imc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  margin-top: 8px;
}

.final-page-section {
  margin: 32px 0;
}

.final-section-title {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  margin-bottom: 18px;
  color: var(--text);
}

.final-section-subtitle {
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  color: var(--text-muted);
  margin: -6px 0 18px;
}

.final-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.final-module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.final-module-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.final-module-title {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 8px;
}

.final-module-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.35;
  font-weight: 600;
}

.final-offer-card {
  border: 2px solid var(--primary);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  margin: 24px 0;
}

.final-offer-topbar {
  background: var(--primary);
  color: white;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  padding: 8px;
}

.final-offer-body {
  padding: 16px;
}

.final-before-after-grid,
.final-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.final-proof-card,
.final-testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.final-proof-card img,
.final-testimonial-card img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: contain;
}

.guarantee-box {
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 28px 16px;
  margin: 34px 0 10px;
}

.guarantee-seal {
  width: 104px;
  height: 104px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: radial-gradient(circle, #FDE68A 0%, #FACC15 70%, #EAB308 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #78350F;
  text-align: center;
  line-height: 1.05;
  box-shadow: 0 6px 18px rgba(234,179,8,.35);
}

.guarantee-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}

.guarantee-text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 600;
}
