:root {
    --primary-color: #D845FF;
    --primary-dark: #b836d9;
    --primary-gradient: linear-gradient(90deg, #D845FF 0%, #8E2DE2 100%);
    --secondary-color: #28A745;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #FFF5F8;
    --card-bg: #FFFFFF;
    --border-color: #ffe0ef;
    --shadow: 0 4px 12px rgba(216, 69, 255, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.mobile-container {
    max-width: 500px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    background-color: var(--bg-color);
}

/* Progress Bar */
.progress-container {
    padding: 15px 20px 10px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-small {
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--text-color);
}

.fire-icon {
    color: var(--primary-color);
    margin-right: 5px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hidden {
    display: none !important;
}

/* Quiz Content */
.quiz-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

p.description {
    text-align: center;
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Cards & Buttons */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.option-card:active {
    transform: scale(0.98);
}

.option-card.selected {
    border-width: 2px;
    border-color: var(--primary-color);
    background: #fdf5ff;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-emoji {
    font-size: 1.5rem;
}

.option-text {
    font-weight: 600;
    font-size: 1rem;
}

.arrow-icon {
    color: #ccc;
    font-size: 1.2rem;
}

.name-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 10px rgba(216, 69, 255, 0.1);
}

/* Grid Layout for Body Types */
.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.image-label {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    background: #fafafa;
}

/* Intro Page Specific */
.intro-hero {
    margin: -20px -20px 20px -20px;
    position: relative;
}

.intro-hero img {
    width: 100%;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(216, 69, 255, 0.3);
    transition: var(--transition);
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--primary-dark);
}

.cta-button.green {
    background: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

/* Sliders */
.slider-container {
    padding: 40px 0;
    text-align: center;
}

.slider-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.slider-unit {
    font-size: 1.2rem;
    color: var(--light-text);
}

input[type=range] {
    width: 100%;
    height: 10px;
    background-color: #eee;
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: var(--primary-gradient);
    background-repeat: no-repeat;
    background-size: 0% 100%;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(216, 69, 255, 0.3);
    margin-top: -1px;
}

input[type=range]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(216, 69, 255, 0.3);
}

/* Results & Charts */
.result-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.chart-item {
    margin-bottom: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.chart-bar-bg {
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
}

.chart-bar-fill {
    height: 100%;
    border-radius: 5px;
}

/* Offer Page Details */
.feature-box {
    border: 2px solid #e8fdf0;
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.bonus-app-scene {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    perspective: 1000px;
}

.phone-frame {
    width: 180px;
    height: 360px;
    background: #111;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.phone-screen-content {
    width: 100%;
    height: 100%;
    background: #fdfbff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.book-3d,
.notebook-3d {
    width: 80px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 5px 15px 15px 5px;
    box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6rem;
    font-weight: 900;
    text-align: center;
    padding: 10px;
    position: relative;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: rotateY(-45deg) translateZ(-50px);
}

.book-3d.reveal,
.notebook-3d.reveal {
    opacity: 1;
    transform: rotateY(0) translateZ(0);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FFD700;
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.5rem;
}

.video-carousel {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.carousel-proof-item {
    min-width: 240px;
    height: 420px;
    background: #000;
    border-radius: 20px;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.proof-name-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.expert-card {
    background: white;
    padding: 30px 20px;
    border-radius: 25px;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.expert-img-wrapper {
    width: 120px;
    height: 120px;
    margin: -60px auto 20px;
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.guarantee-box {
    background: #fdfbff;
    border: 1px dashed #D845FF;
    padding: 30px 20px;
    border-radius: 25px;
    margin: 40px 0;
}

.compliance-footer {
    padding: 40px 20px;
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    background: #fafafa;
    border-top: 1px solid #eee;
}

/* --- NOVAS MELHORIAS DE CONVERSÃO --- */

@keyframes pulse {
    0% {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(216, 69, 255, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 30px rgba(216, 69, 255, 0.5);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(216, 69, 255, 0.3);
    }
}

.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

.price-card {
    background: white;
    border-radius: 25px;
    padding: 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.price-card.popular {
    border: 3px solid var(--primary-color);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(216, 69, 255, 0.15);
    background: #fff;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    white-space: nowrap;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin: 5px 0;
}

.current-price span {
    font-size: 1.2rem;
    vertical-align: super;
}

.benefit-list {
    text-align: left;
    margin: 20px 0;
}

.benefit-item {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #555;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
    padding: 0 10px;
}

.cta-button {
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}