/* Globals & Reset */
:root {
    --primary-color: #12C1A1; /* Verde Teal da imagem */
    --primary-hover: #0fa68a;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-color: #FFFFFF;
    --progress-bg: #E5E7EB;
    --accent-red: #DC2626;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-top: 10px; /* Sem o espaço do editor-nav */
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    /* Bloqueio de Seleção e Clique Direito */
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

img, video {
    max-width: 100%;
    height: auto;
    /* Bloqueio de Arraste de Imagem */
    pointer-events: none;
    -webkit-user-drag: none;
}

* {
    box-sizing: border-box;
}

/* Editor Mode Nav Styles */
.editor-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1e1e1e;
    color: #fff;
    z-index: 1000;
    font-size: 11px;
    padding: 8px 15px;
    border-bottom: 2px solid #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.editor-label {
    background: #FFD700;
    color: #000;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
}

.editor-groups {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.editor-group {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 4px;
}

.editor-group:last-child {
    border-bottom: none;
}

.group-label {
    min-width: 60px;
    font-weight: 700;
    color: #888;
    font-size: 10px;
}

.nav-steps {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 2px;
}

/* Scrollbar fina para o navegador de edição */
.nav-steps::-webkit-scrollbar {
    height: 3px;
}
.nav-steps::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}

.step-nav-btn {
    background: #333;
    color: #ccc;
    border: 1px solid #444;
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.step-nav-btn:hover {
    background: #444;
    color: white;
}

.step-nav-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 700;
}

/* Typography Utilities */
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-red { color: var(--accent-red); }
.text-teal { color: var(--primary-color); }

/* Header */
.main-header {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
    padding: 10px 20px 0; /* Reduzido o padding superior */
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.back-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 6px;
    background-color: var(--progress-bg);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    width: 2%; /* Estado inicial dinâmico */
    transition: width 0.4s ease;
}

/* Main Container */
.app-container {
    width: 100%;
    max-width: 600px; /* Foco mobile-first */
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 60px);
    overflow-x: hidden; /* Prevent horizontal overflow from child elements */
}

/* Step Animations */
.step-content {
    animation: fadeIn 0.4s ease-out forwards;
}

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

/* Step 1 Specifics */
.main-headline {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.sub-headline {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Results Grid com offset baseado no print */
.images-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.image-pair {
    display: flex;
    gap: 5px;
    width: 80%;
}

.image-pair.offset-right {
    margin-top: -30px; /* Sobreposicao fluida */
    margin-left: 20%; /* Offset para a direita simulando o print */
    z-index: 2;
}

.result-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.result-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4; /* Proporção ideal para imagens em pé */
}

/* Badges */
.badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 3px 6px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.4);
    z-index: 10;
}

.badge-red { background-color: #E74C3C; }
.badge-green { background-color: #2ECC71; }

/* Buttons */
.btn-primary {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 18px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(18, 193, 161, 0.4);
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
    outline: none;
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(18, 193, 161, 0.4);
}

/* Option List (Steps 3, 5, 6) */
.option-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    padding-left: 20px;
    height: 85px; /* Altura fixa para manter o padrão */
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.option-item:active {
    transform: scale(0.98);
}

.option-item.selected {
    border-color: var(--primary-color);
    background-color: rgba(18, 193, 161, 0.05);
}

.option-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.option-img {
    height: 100%;
    width: 90px;
    object-fit: cover;
    border-radius: 0 14px 14px 0;
}

/* Social Proof Circle (Step 4) */
.social-proof-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    z-index: 10;
    object-fit: cover;
}

.avatar-halo {
    position: absolute;
    border: 2px dashed #E5E7EB;
    border-radius: 50%;
}

.halo-1 { width: 220px; height: 220px; }
.halo-2 { width: 310px; height: 310px; }

.orbit-avatar {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

/* Gráfico / Imagem de Apoio (Step 7) */
.support-image {
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    display: block;
    border-radius: 12px;
}
.gender-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.gender-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s;
    border: 1px solid #eee;
}

.gender-card:active {
    transform: scale(0.97);
}

.gender-image {
    width: 100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    display: block;
}

.gender-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: #fff;
}

.gender-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

/* Checkbox Items (Step 9) */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.check-item {
    display: flex;
    align-items: center;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.check-item.selected {
    border-color: var(--primary-color);
    background-color: rgba(18, 193, 161, 0.08);
}

.check-thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 15px;
}

.check-label {
    flex: 1;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.checkbox-box {
    width: 24px;
    height: 24px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.2s;
}

.check-item.selected .checkbox-box {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-box svg {
    display: none;
    color: white;
}

.check-item.selected .checkbox-box svg {
    display: block;
}

/* Split Layout (Step 10) */
.split-layout {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    text-align: left;
}

.split-side-img {
    flex: 1;
    max-width: 45%;
}

.split-side-img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 2/3;
}

.split-side-content {
    flex: 1.2;
}

.simple-option-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.simple-option {
    padding: 15px;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background: white;
    cursor: pointer;
}

/* Emoji Items (Step 12, 13) */
.emoji-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    margin-bottom: 12px;
    cursor: pointer;
}

.emoji-icon {
    font-size: 24px;
}
/* Circular Image Option (Step 14, 15, 16) */
.circle-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: -10px; /* Faz a imagem ficar colada no canto */
    border: 3px solid white;
}

/* Restriction Item (Step 17) */
.restriction-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.restriction-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.restriction-item.selected {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.restriction-icon {
    font-size: 24px;
    margin-right: 15px;
}

/* Modern Cards & Options (Standardizing for Male/Female tracks) */
.cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.card-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    padding: 15px 20px;
    min-height: 80px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.card-option:active {
    transform: scale(0.98);
    background-color: #f9fafb;
}

.card-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(18, 193, 161, 0.05);
    box-shadow: 0 4px 12px rgba(18, 193, 161, 0.1);
}

.card-option span {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.card-option img {
    height: 100%;
    width: 80px;
    object-fit: cover;
    border-radius: 12px;
}

/* Specific Card Layouts */
.card-img-right {
    padding-right: 0 !important;
}
.card-img-right img {
    height: 80px;
    width: 100px;
    border-radius: 0 16px 16px 0;
    margin-left: 15px;
}

.card-emoji-right .emoji {
    font-size: 24px;
    margin-left: 15px;
}

/* Split Layouts (Left Image, Right Options) */
.split-container {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    text-align: left;
}

.split-img-left {
    flex: 0 0 40%;
}

.split-img-left img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 2/3;
    display: block;
}

.split-options-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

/* Modern Alerts */
.alert-box-blue, .alert-box-yellow {
    padding: 20px;
    border-radius: 16px;
    margin: 25px 0;
    font-size: 14px;
    line-height: 1.5;
}

.alert-box-blue {
    background-color: #EBF5FF;
    color: #1E40AF;
}

.alert-box-yellow {
    background-color: #FEF9C3;
    color: #854D0E;
}

/* Checkbox Modern Lists */
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(18, 193, 161, 0.05);
}

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

.check-box {
    width: 24px;
    height: 24px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    position: relative;
    transition: all 0.2s;
}

.checkbox-option.selected .check-box {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-option.selected .check-box::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 900;
}

/* Utility for spacing */
.mt-30 { margin-top: 30px; }
.mt-20 { margin-top: 20px; }

.restriction-title {
    display: block;
    font-weight: 700;
    font-size: 15px;
}

.restriction-sub {
    display: block;
    font-size: 13px;
    opacity: 0.8;
}

/* Food Selection Grid (Step 18) */
.food-container {
    padding-bottom: 40px;
}

.food-category {
    text-align: left;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.food-btn {
    padding: 12px 15px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    background: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.food-btn.selected {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
/* Face Comparison (Step 30) */
.face-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin: 25px 0;
}

.face-comparison img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1/1.5;
    object-fit: cover;
}

/* Emoji Item Left (Step 32) */
.emoji-item-left {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    text-align: left;
    gap: 15px;
}

/* Ruler / Height Selector (Step 33) */
/* Ruler / Premium Selector (Step 33, 34, 35) */
.unit-toggle {
    display: inline-flex;
    background: #f1f3f5;
    padding: 3px;
    border-radius: 20px;
    margin-bottom: 30px;
}

 /* --- Graph Step 39 Premium --- */
.graph-container-premium {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px 10px;
    background: #fff;
    border-radius: 12px;
}

.graph-header-title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    text-decoration: underline;
}

.graph-svg-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
}

.graph-badge-you {
    position: absolute;
    top: -35px;
    left: 0;
    background: #fff;
    color: #111;
    font-weight: 800;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.graph-badge-target {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: #12C1A1;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 5;
}

.graph-footer-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

/* Animations */
@keyframes dash {
    from { stroke-dashoffset: 800; }
    to { stroke-dashoffset: 0; }
}

@keyframes fadeFill {
    from { opacity: 0; }
    to { opacity: 1; }
}

.graph-path-line {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: dash 2s ease-out forwards;
}

.graph-path-fill {
    fill: url(#areaGradient);
    opacity: 0;
    animation: fadeFill 1s ease-out 1s forwards;
}

.graph-dot {
    opacity: 0;
    animation: fadeFill 0.5s ease-out forwards;
}

.unit-btn {
    padding: 6px 18px;
    border-radius: 17px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #8c96a0;
    transition: all 0.2s ease;
}

.unit-btn.active {
    background: #12C1A1;
    color: white;
}

.height-display {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.height-display span:not(#height-val) {
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.ruler-container {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    margin-bottom: 20px;
    user-select: none;
}

.ruler-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 80px;
    background: #12C1A1;
    z-index: 10;
    transform: translateX(-50%);
}

.ruler-line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #12C1A1;
}

.ruler-marks {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-top: 10px;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.mark-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 2px;
}

.mark {
    width: 1px;
    background: #e5e7eb;
    height: 30px;
}

.mark.medium {
    height: 45px;
    background: #d1d5db;
}

.mark.long {
    height: 45px;
    background: #9ca3af;
}

.mark-label {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
}


/* Alert Boxes (Blue & Yellow) */
.alert-box {
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
}

.alert-blue {
    background-color: #EBF5FF;
    color: #1E40AF;
}

.alert-yellow {
    background-color: #FEF9C3;
    color: #854D0E;
}

.alert-title {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 15px;
}

/* Text Input */
.text-input {
    width: 100%;
    padding: 18px 20px;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    margin-top: 10px;
}

.text-input:focus {
    border-color: var(--primary-color);
}

.text-input::placeholder {
    color: #ccc;
    font-style: italic;
}

/* BMI Scale (Step 37) */
.bmi-wrapper {
    margin: 30px 0;
    text-align: left;
}

.bmi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.bmi-label {
    font-size: 13px;
    font-weight: 700;
}

.bmi-val-percent {
    font-size: 12px;
    color: #999;
}

.bmi-bar-container {
    position: relative;
    height: 8px;
    background: linear-gradient(to right, #6EE7B7, #FDE047, #F87171);
    border-radius: 4px;
    margin-bottom: 25px;
}

.bmi-pointer {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bmi-legend {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    margin-top: 5px;
}

/* Weight Loss Graph (Step 39, 41) */
.graph-container {
    position: relative;
    width: 100%;
    margin: 30px 0;
    padding-top: 40px;
}

.graph-visual {
    width: 100%;
    height: 180px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 400 200" xmlns="http://www.w3.org/2000/svg"><path d="M 0 50 Q 100 50 200 120 T 400 150 L 400 200 L 0 200 Z" fill="url(%23grad)" /><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%23F87171;stop-opacity:1" /><stop offset="50%" style="stop-color:%23FBBF24;stop-opacity:1" /><stop offset="100%" style="stop-color:%2310B981;stop-opacity:1" /></linearGradient></defs></svg>') no-repeat bottom;
    background-size: 100% 100%;
    border-bottom: 2px dashed #ddd;
}

.graph-badge {
    position: absolute;
    background: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.badge-you { top: 10px; left: 0; }
.badge-target { 
    bottom: 60px; 
    right: 5px; 
    background: var(--primary-color);
    color: white;
    font-size: 12px;
}

.graph-footer {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #999;
    margin-top: 10px;
}

/* Loading Bar Interna (Step 40) */
.inner-progress-container {
    width: 100%;
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
    margin: 15px 0;
}

.inner-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 24%; /* Valor dinâmico ou fixo no mockup */
    transition: width 1s linear;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
}

.testimonial-stars {
    color: #10B981;
    font-size: 12px;
}

/* Comparison Table (Step 42) */
.comp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 13px;
    background: white;
}

.comp-table th {
    text-align: center;
    padding: 10px;
    font-weight: 800;
}

.comp-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.comp-trait {
    text-align: left;
    color: #666;
    font-weight: 600;
}

.comp-old { color: #F87171; text-align: center; }
.comp-new { color: #10B981; text-align: center; font-weight: 700; background: #EBFDF5; }

/* Benefit Cards */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    text-align: left;
    gap: 15px;
}

.benefit-icon { font-size: 24px; min-width: 30px; }
.benefit-title { display: block; font-weight: 800; font-size: 15px; margin-bottom: 4px; }
.benefit-text { font-size: 13px; color: #666; line-height: 1.4; }

/* Transformation Grid */
.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 25px 0;
}

.transform-grid img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Sticky Footer Offer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-container {
    padding-bottom: 10px;
    text-align: center;
}

.price-val {
    font-size: 24px;
    font-weight: 900;
}

/* Guarantee Info */
.guarantee-box {
    margin-top: 40px;
    padding: 30px 20px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.guarantee-badge {
    width: 80px;
    margin-bottom: 15px;
}

/* --- ESTILOS SALES PAGE V2 --- */
.comparison-box {
    background-color: #F8F5EE;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
}

.comp-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    margin-top: 15px;
    padding: 5px 15px 15px 15px;
    background: white;
    border-radius: 12px;
    font-size: 13px;
}

.comp-grid > div {
    display: flex;
    align-items: center;
    padding: 12px 5px;
    border-bottom: 1px solid #f5f5f5;
}

.comp-header {
    font-weight: 800;
    color: #111;
    justify-content: center;
    border-bottom: 2px solid #eee !important;
}

.comp-grid .comp-header:first-child {
    justify-content: flex-start;
}

.comp-label {
    color: #666;
    font-weight: 600;
    justify-content: flex-start !important;
}

.comp-val-old {
    color: #EF4444;
    font-weight: 800;
    justify-content: center !important;
}

.comp-val-new {
    color: #10B981;
    font-weight: 800;
    justify-content: center !important;
}

.alert-green {
    background-color: #EBFDF5;
    color: #065F46;
    border: 1px dashed #10B981;
}

.benefit-card-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.benefit-card-center .benefit-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.benefit-card-center .benefit-title {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 8px;
    color: #111;
}

.benefit-card-center .benefit-text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.price-box {
    margin: 30px 0;
    padding: 25px 15px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.price-tag-pink {
    background: #FDF2F8;
    color: #DB2777;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 13px;
    display: inline-block;
    margin: 5px 0 15px 0;
}

.btn-buy {
    width: 100%;
    background: #10B981;
    color: white;
    font-weight: 800;
    font-size: 16px;
    padding: 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.testimonial-card-v2 {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f5f5f5;
}

.testimonial-card-v2 .author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-card-v2 img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card-v2 .author-info {
    flex: 1;
}

.testimonial-card-v2 .author-name {
    font-weight: 800;
    font-size: 14px;
    color: #111;
}

.testimonial-card-v2 .verified-badge {
    color: #10B981;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.testimonial-content {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* --- SALES PAGE MALE DO ZERO (STEP 42) --- */
.sp-male {
    margin: -20px; /* Counter container padding */
    background: #FAFAFA;
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    padding-bottom: 60px;
}

.sp-male .sp-header {
    text-align: center;
    padding: 25px 0 20px;
    background: #fff;
    border-bottom: 4px solid #10B981;
}

.sp-male .sp-logo {
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sp-male .sp-headline {
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    line-height: 1.25;
    padding: 35px 25px;
    color: #111;
}

.sp-male .sp-card-transf {
    background: #F3EBE1;
    border-radius: 20px;
    padding: 30px 20px;
    margin: 0 20px 40px;
}

.sp-male .sp-transf-pics {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 25px;
}

.sp-male .sp-transf-img {
    width: 46%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.sp-male .sp-transf-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #10B981;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.sp-male .sp-comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.sp-male .sp-comp-col h4 {
    font-weight: 900;
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
    color: #111;
}

.sp-male .sp-comp-item {
    margin-bottom: 12px;
}

.sp-male .sp-comp-texts {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #444;
}

.sp-male .sp-bar-bg {
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
}

.sp-male .sp-bar-fill {
    height: 100%;
    border-radius: 3px;
}

.sp-male .fill-red { background: #EF4444; }
.sp-male .fill-green { background: #10B981; }

.sp-male .sp-box-green {
    background: #EBFDF5;
    border-radius: 20px;
    padding: 30px 25px;
    margin: 0 20px 40px;
    text-align: center;
    border: 1px dashed #A7F3D0;
}

.sp-male .sp-box-green h3 {
    font-size: 16px;
    font-weight: 900;
    color: #065F46;
    margin-bottom: 12px;
}

.sp-male .sp-box-green p {
    font-size: 13px;
    color: #065F46;
    line-height: 1.6;
}

.sp-male .sp-section-title {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    color: #111;
    margin: 40px 20px 30px;
}

.sp-male .sp-mod-list {
    margin: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sp-male .sp-mod-card {
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
}

.sp-male .sp-mod-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.sp-male .sp-mod-title {
    font-size: 15px;
    font-weight: 900;
    color: #111;
    margin-bottom: 8px;
}

.sp-male .sp-mod-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.sp-male .sp-offer-box {
    margin: 0 20px 40px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #10B981;
    overflow: hidden;
}

.sp-male .sp-offer-top {
    background: #10B981;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
}

.sp-male .sp-offer-body {
    padding: 25px 20px;
}

.sp-male .sp-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sp-male .sp-price-name {
    flex: 1;
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.sp-male .sp-price-tag {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

.sp-male .sp-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.sp-male .sp-price-new {
    font-size: 36px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.sp-male .sp-price-new small {
    font-size: 16px;
    vertical-align: super;
}

.sp-male .sp-pink-strip {
    background: #FDF2F8;
    color: #DB2777;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sp-male .sp-btn {
    display: block;
    width: 100%;
    background: #10B981;
    color: white;
    font-weight: 900;
    font-size: 18px;
    text-align: center;
    padding: 22px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.2);
}

.sp-male .sp-sec-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.sp-male .sp-sec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    color: #666;
    font-weight: 600;
    gap: 4px;
}

.sp-male .sp-sec-item img {
    width: 22px;
    opacity: 0.6;
}

.sp-male .sp-grid-before-after {
    margin: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sp-male .sp-grid-before-after img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.sp-male .sp-test-list {
    margin: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sp-male .sp-test-card {
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 16px;
    padding: 20px;
}

.sp-male .sp-test-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sp-male .sp-test-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.sp-male .sp-test-name {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-male .sp-verified {
    background: #10B981;
    color: white;
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 4px;
}

.sp-male .sp-test-stars {
    color: #10B981;
    font-size: 12px;
    margin-top: 2px;
}

.sp-male .sp-test-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
}

.sp-male .sp-test-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

.sp-male .sp-guarantee-box {
    text-align: center;
    padding: 0 20px;
}

.sp-male .sp-guarantee-box img {
    width: 90px;
    margin-bottom: 15px;
}

.sp-male .sp-guarantee-box h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #111;
}

.sp-male .sp-guarantee-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

