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

html {
    background-color: #020617;
    /* Prevent white flash */
}

body {
    background-color: #020617;
    /* User provided background color */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    animation: fadeIn 0.4s ease-in-out;
    /* Smooth transition */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

header {
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo {
    width: 140px;
    /* Adjusted size based on common mobile headers */
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 15px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #e0e0e0;
}

.benefit-item .emoji {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-button {
    background-color: #DC2625;
    /* Strong Red */
    color: white;
    border: none;
    padding: 22px 0;
    /* Standard padding */
    width: 100%;
    border-radius: 20px;
    font-size: 1.15rem;
    font-weight: 800;
    /* Extra Bold */
    cursor: pointer;
    box-shadow: 0 6px 0 #9f1212;
    /* Solid dark red 3D bottom */
    transition: transform 0.1s, box-shadow 0.1s;
    text-transform: uppercase;
    margin-top: 15px;
    position: relative;
    top: 0;
    line-height: 1;
    text-decoration: none;
    /* REMOVED UNDERLINE */
    display: block;
    /* Ensures block behavior */
    text-align: center;
    animation: pulse-animation 2s infinite;
    /* Added global pulse */
}

.cta-button:hover {
    background-color: #c92120;
    transform: translateY(2px);
    box-shadow: 0 4px 0 #9f1212;
}

.cta-button:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #9f1212;
}

/* Page 2 Specific Styles */
.header-with-back {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    width: 100%;
}

.back-button {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    width: 24px;
}

.spacer {
    width: 24px;
}

.progress-container {
    width: 90%;
    /* Leave space on sides */
    max-width: 400px;
    /* Match content width */
    margin: 0 auto 20px auto;
    /* Center it */
    height: 8px;
    background-color: #2d3748;
    /* Darker gray */
    margin-bottom: 20px;
    border-radius: 4px;
    /* Rounded track */
}

.progress-bar {
    height: 100%;
    background-color: #ef4444;
    /* Bright Red */
    border-radius: 4px;
    /* Rounded bar */
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
    /* Glow effect */
    transition: width 0.5s ease;
}

.page-title {
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-content {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.text-content p {
    margin-bottom: 15px;
}

.highlight-red {
    color: #DC2625;
    font-weight: 700;
}

/* Social Card */
.social-card {
    background-color: #0F1221;
    /* Slightly lighter background for card */
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #1e2337;
}

.social-profile-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    /* Instagram gradient border */
    flex-shrink: 0;
}

.social-profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #020617;
    /* Matches body background */
}

.social-info {
    flex: 1;
}

.social-name {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.social-stats {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    text-align: center;
}

.social-stats div {
    display: flex;
    flex-direction: column;
}

.social-stats strong {
    font-size: 0.9rem;
    color: #fff;
}

/* Page 3 - Quiz Styles */
.question-header {
    text-align: center;
    margin-bottom: 25px;
}

.pre-headline {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.question-title {
    font-size: 1.4rem;
    color: white;
}

.quiz-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #220818;
    /* User specified background */
    border: 1px solid #DC2625;
    /* Strong red border */
    border-radius: 12px;
    /* Less rounded */
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.quiz-option:hover,
.quiz-option:has(input:checked) {
    border-color: #DC2625;
    /* Bright red on hover/checked */
    background-color: #2a0a1f;
}

.quiz-option input[type="radio"] {
    display: none;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    flex: 1;
}

.option-content .emoji {
    font-size: 1.2rem;
}

.custom-radio {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #DC2625;
    /* Red border for radio */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Inner dot for radio */
.quiz-option input:checked+.option-content+.custom-radio::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #DC2625;
    border-radius: 50%;
}

/* Checkbox specific styles */
.quiz-option input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    /* Squarish rounded corners */
    border: 2px solid #DC2625;
    /* Red border to match design */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* Checkbox Checked State */
.quiz-option input[type="checkbox"]:checked+.option-content+.custom-checkbox {
    background-color: transparent;
    border-color: #DC2625;
}

/* Inner Checkmark (or fill) for checkbox */
.quiz-option input[type="checkbox"]:checked+.option-content+.custom-checkbox::after {
    content: '✓';
    color: #DC2625;
    font-size: 16px;
    font-weight: bold;
}

.quiz-option:has(input[type="checkbox"]:checked) {
    border-color: #DC2625;
    background-color: #2a0a1f;
}

/* Testimonials / Review Cards */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
}

.review-card {
    background-color: #05060f;
    /* Very dark/black card background */
    border: 1px solid #1e2337;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars {
    color: #FFC107;
    /* Gold color for stars */
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.reviewer-name {
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
    line-height: 1.2;
}

.reviewer-handle {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.4;
}

/* Page 8 Specific Styles */
.warning-text-block {
    text-align: center;
    width: 100%;
}

.highlight-bg {
    background-color: #DC2625;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 10px;
    font-size: 0.9rem;
    line-height: 1.3;
    display: inline;
    /* Or inline-block based on effect */
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.main-headline {
    margin-top: 20px;
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1.2;
    text-transform: none;
    /* Or uppercase based on image? Image is mixed case but bold */
}

/* Looking at image: "Enquanto você tenta ser a certinha..." is mixed case. "PUTA" and "CERTA" are uppercase red. */

.text-red {
    color: #DC2625;
    font-weight: 900;
}

/* Page 9 Specific Styles */
.benefits-check-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.pink-alert-box {
    background-color: #fceceb;
    /* Light pink background */
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    color: #DC2625;
    /* Red text */
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.4;
    width: 100%;
    margin-top: 20px;
    /* Explicit top margin just in case */
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pink-alert-box p {
    font-style: italic;
    color: #ce4040;
    /* Slightly darker red for readability or match image? Image text is red-ish */
    color: #c9302c;
}

.text-ital-red {
    font-weight: 800;
    text-transform: uppercase;
    font-style: normal;
    /* Override italic if needed for specific word, but image shows whole text italic? Actually OUSAR is italic uppercase */
}

/* Page 11 Specific - Left Aligned Checkboxes */
.quiz-option.quiz-option-left {
    justify-content: flex-start;
    /* Align content to the left */
    gap: 15px;
    /* Space between checkbox and text */
}

/* Ensure custom checkbox for left variant has margin or sizing correct */
.quiz-option.quiz-option-left .custom-checkbox {
    /* Styles inherited, just positioned first in HTML now */
}

/* Page 12 - Radio dots on left need dot positioning check */
/* Since we inverted the order in HTML, we need to ensure the dot targeter works */

/* Previous CSS: .quiz-option input:checked + .option-content + .custom-radio::after */
/* New HTML order for Left: input + custom-radio + option-content */

.quiz-option input:checked+.custom-radio::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #DC2625;
    border-radius: 50%;
}

/* FIX: CSS for Left-Aligned Checkboxes (Page 11) - Direct Sibling Selector */
/* Structure: input + .custom-checkbox */

.quiz-option input[type="checkbox"]:checked+.custom-checkbox {
    background-color: transparent;
    border-color: #DC2625;
}

.quiz-option input[type="checkbox"]:checked+.custom-checkbox::after {
    content: '✓';
    color: #DC2625;
    font-size: 16px;
    font-weight: bold;
}

/* Page 13 Specific Styles */
.highlight-bg-block {
    background-color: #DC2625;
    color: white;
    font-weight: 800;
    padding: 5px 10px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    line-height: 1.5;
    display: inline;
}

.content-cards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.info-card {
    background-color: #05060f;
    /* Very dark background */
    border: 1px solid #1e2337;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: capitalize;
    /* Or keep as is */
}

.text-yellow {
    color: #FFC107;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
}

/* Page 14 Specific - Decision Buttons */
.decision-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.decision-btn {
    flex: 1;
    background-color: transparent;
    border: 1px solid #1e2337;
    /* Dark border default */
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    background-color: #05060f;
}

.decision-btn:hover {
    transform: translateY(-2px);
    border-color: #DC2625;
}

.decision-btn .btn-icon {
    font-size: 1.5rem;
}

.decision-btn .btn-text {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

/* Specific styles if we want different colors per button */
/* Screenshot shows dark buttons with white text, essentially same style */

/* Page 15 Specific - Loading Animation */
.loading-section {
    width: 100%;
    margin-bottom: 20px;
}

.loading-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
}

.loading-bar-bg {
    width: 100%;
    height: 12px;
    background-color: #1e2337;
    /* Dark background track */
    border-radius: 6px;
    overflow: hidden;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background-color: #DC2625;
    border-radius: 6px;
    transition: width 0.1s linear;
    /* Smooth fill */
}

/* Sales Page - First Fold Updates */
.benefit-block {
    margin-bottom: 25px;
    /* Increased spacing between blocks */
}

.benefit-title {
    font-size: 1rem;
    font-weight: 700;
    /* Slightly reduced from 800 */
    color: white;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    /* Space between icon and text if icon is separate, but it's in text now */
}

.benefit-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    /* Increased line-height for "lightness" */
    color: #cbd5e1;
    /* Slightly lighter grey for better contrast/readability */
    margin-left: 0;
    /* Align with title */
}

/* Sales Page - Image Overlay */
.image-overlay-box {
    position: absolute;
    bottom: -15px;
    /* Moved slightly further down */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background-color: #7f1d1d;
    /* Matches the dark red texture better */
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.4;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    /* Stronger shadow */
    background-image: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    border: 2px solid #b91c1c;
    /* Subtle border */
}

/* Sales Page - Bonuses List Updates */
.bonus-item-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Increased gap */
}

.bonus-list-item {
    text-align: left;
}

.bonus-list-title {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.bonus-list-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price-anchor-red {
    color: #ef4444;
    /* Brighter red */
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Sales Page - Price Box Updates */
.price-box {
    background-color: transparent;
    border-radius: 20px;
    margin-bottom: 30px;
    /* Reduced to 30px (half) as requested */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Removed overflow: hidden to allow button glow/shadow to show */
    position: relative;
    /* Ensure z-index works if needed */
}

.price-header-pink {
    background-color: #fceceb;
    /* Updated color match */
    padding: 30px 20px;
    text-align: center;
}

/* ... (intervening styles) ... */

.yellow-highlight-text {
    background-color: #FFC107;
    color: black;
    font-weight: 800;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 40px;
    /* Increased space below highlight text */
    font-size: 0.95rem;
    text-transform: uppercase;
}

/* Badge Red for Warning Box */
.badge-red {
    background-color: #991b1b;
    color: white;
    padding: 2px 6px;
    font-weight: 800;
    border-radius: 2px;
}

.price-title-red {
    color: #dc2626;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-subtitle-red {
    color: #dc2626;
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.old-price {
    color: #dc2626;
    font-weight: 900;
    font-size: 1.8rem;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    opacity: 0.8;
}

.price-body-dark {
    background-color: transparent;
    padding: 20px 0;
    text-align: center;
}

.condition-title {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 15px;
    padding: 0 10px;
}

.condition-subtitle {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 0 15px;
}

.price-green-tag {
    background-color: #16a34a;
    /* Green 600 */
    color: white;
    font-weight: 900;
    font-size: 2.2rem;
    padding: 10px 25px;
    display: inline-block;
    margin-bottom: 25px;
    transform: rotate(-1deg);
    /* Slight organic tilt */
}

.discount-text {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 20px;
}

.yellow-highlight-text {
    background-color: #facc15;
    /* Yellow 400 */
    color: black;
    font-weight: 800;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Badge Red for Warning Box */
.badge-red {
    background-color: #991b1b;
    color: white;
    padding: 2px 6px;
    font-weight: 800;
    border-radius: 2px;
}

/* Sales Page - Final Section */
.highlight-red-text {
    background-color: #dc2626;
    color: white;
    font-weight: 800;
    padding: 4px 8px;
    display: inline;
    line-height: 1.8;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.fire-bullets p {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.5;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Sales Page - Book Cover Spacing */
.book-cover-container {
    padding: 0 25px;
    /* Added breathing room as requested */
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Added spacing for Bonuses Section */
.bonuses-section {
    margin-bottom: 60px;
}

/* Pulse Animation Keyframes with Neon Glow */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 0 #9f1212;
    }

    50% {
        transform: scale(1.05);
        /* Increased scale slightly */
        box-shadow: 0 6px 0 #9f1212, 0 0 20px 5px rgba(220, 38, 37, 0.8);
        /* Neon Red Glow */
    }

    100% {
        transform: scale(1);
        box-shadow: 0 6px 0 #9f1212;
    }
}