:root {
    --color-bg-main: rgb(255, 240, 235);
    --color-bg-white: rgb(255, 255, 255);
    --color-text-title: rgb(30, 30, 30);
    --color-text-body: rgb(75, 85, 99);
    --color-primary: rgb(239, 68, 68);
    --color-primary-hover: rgb(220, 38, 38);
    --color-secondary: rgb(124, 58, 237); /* Purple secondary */
    --color-secondary-border: rgb(229, 231, 235);
    
    /* Card pastel colors */
    --color-card-orange: rgb(249, 213, 196);
    --color-card-purple: rgb(222, 210, 239);
    --color-card-yellow: rgb(243, 226, 175);
    --color-card-mint: rgb(199, 233, 226);
    --color-card-green: #f0fdf4;

    --color-icon-yellow: rgb(255, 204, 0);
    --color-icon-purple: rgb(124, 58, 237);
    --color-icon-red: rgb(239, 68, 68);
    --color-icon-green: rgb(34, 197, 94);

    --font-main: 'Outfit', sans-serif;
    
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --radius-md: 12px;
    --radius-lg: 24px; /* Updated for cards */
    --radius-full: 9999px; /* Buttons */
    
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
}

/* Reset & Globals */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background-color: var(--color-bg-main);
    color: var(--color-text-body);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    overflow-x: hidden;
}

/* Background Pattern */
.bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(30, 30, 30, 0.05) 2px, transparent 2px);
    background-size: 30px 30px; z-index: -1;
}
.bg-white { background-color: var(--color-bg-white); }

/* Typography */
h1, h2, h3, h4, h5, h6 { color: var(--color-text-title); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: var(--spacing-md); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; margin-bottom: var(--spacing-sm); }
h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: var(--spacing-sm); }
.highlight { color: var(--color-primary); }
p { margin-bottom: var(--spacing-md); }
.text-center { text-align: center; }
.mt-xl { margin-top: var(--spacing-xl); }

/* Layout & Containers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.grid { display: grid; gap: 2rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700; text-decoration: none;
    transition: all 0.2s ease; cursor: pointer; border: none; font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-large { padding: 1.25rem 2.5rem; font-size: 1.125rem; }

.btn-primary {
    background-color: var(--color-primary); color: white;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3);
}
.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.05); filter: brightness(1.1);
    box-shadow: 0 10px 25px -3px rgba(239, 68, 68, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
    transform: scale(1.05);
    background-color: #fef2f2;
}

/* Hero Section */
.hero { 
    padding: 6rem 0 4rem; 
    position: relative; 
    overflow: hidden; /* For floating icons */
}

.hero-content-centered { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.badge-yellow {
    background-color: var(--color-icon-yellow);
    color: var(--color-text-title);
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight-underline {
    color: #ef4444;
    position: relative;
    display: inline-block;
    border-bottom: 8px solid #fbbf24;
    line-height: 0.9;
    padding-bottom: 2px;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 2rem;
}

.video-hero-wrapper {
    max-width: 450px;
}

.video-responsive {
    position: relative;
    padding-bottom: 125%; /* Vertical ratio (634/507) */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background-color: #000;
}
.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-image-wrapper .image-placeholder {
    border-radius: 24px;
    background-color: #fff;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    aspect-ratio: 4/5;
}

.btn-hero {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.hero-guarantee {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-icon.pencil { top: 10%; left: 10%; transform: rotate(-15deg); }
.floating-icon.star { top: 15%; right: 10%; font-size: 2.5rem; opacity: 0.8; animation-delay: 1s; }
.floating-icon.books { bottom: 10%; left: 20%; animation-delay: 2s; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Cards */
.card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}
.cards-grid, .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-icon {
    font-size: 2rem; width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; margin-bottom: 1.5rem; background-color: white;
}

/* Background Colors Utilities */
.bg-orange { background-color: var(--color-card-orange); }
.bg-purple { background-color: var(--color-card-purple); }
.bg-yellow { background-color: var(--color-card-yellow); }
.bg-mint { background-color: var(--color-card-mint); }
.bg-green { background-color: var(--color-card-green); }

/* Problem Section Styles */
.problem-title {
    color: #1e293b;
    font-weight: 900;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.25;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.problem-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.problem-card-new {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    border: none;
    text-align: left;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card-icon-square {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background-color: #ef4444; /* Solid red */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .problem-card-new {
        flex-direction: row;
        padding: 1.25rem 1rem;
        gap: 1rem;
        align-items: flex-start;
    }
    .problem-card-new .card-icon-square {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    .problem-card-new .card-icon-square svg {
        width: 24px;
        height: 24px;
    }
    .card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        line-height: 1.25;
    }
    .card-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Checklist Section */
.checklist-section {
    background-color: transparent;
}
.checklist-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.checklist-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border-left: 6px solid var(--color-primary);
    background-color: var(--color-bg-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.checklist-card p {
    margin: 0;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.125rem;
}
.check-icon {
    color: #10b981; /* Green */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
}

/* Liberdade Section */
.liberdade {
    background-color: var(--color-bg-white);
}
.benefit-icon-teal {
    background-color: #14b8a6; /* Teal */
    box-shadow: none;
}

/* Modulos Section */
.bg-stars {
    background-color: #fffbeb;
    background-image: radial-gradient(rgba(250, 204, 21, 0.25) 2px, transparent 2px);
    background-size: 40px 40px;
}
.bg-pattern-shapes {
    background-color: #eef5f3;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='25' cy='50' r='3' fill='%23cce6e0' /%3E%3Crect x='35' y='35' width='5' height='5' fill='%23e0dcf4' /%3E%3Crect x='50' y='20' width='5' height='5' fill='%23f5eed4' /%3E%3Ccircle cx='75' cy='45' r='4' fill='%23f4dada' /%3E%3Ccircle cx='85' cy='110' r='3' fill='%23cce6e0' /%3E%3Crect x='95' y='95' width='5' height='5' fill='%23e0dcf4' /%3E%3Crect x='110' y='80' width='5' height='5' fill='%23f5eed4' /%3E%3Ccircle cx='15' cy='105' r='4' fill='%23f4dada' /%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
}
.module-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.module-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.module-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: none;
}
.bg-icon-palette, .bg-icon-doc { background: none; width: 48px; height: 48px; font-size: 2.5rem; }

.module-content h3 {
    font-size: 1.125rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}
.module-content p {
    font-size: 1rem;
    color: #475569;
    margin: 0;
}

/* Espiadinha Carousel */
.samples-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 3rem;
    position: relative;
}
.samples-carousel {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}
.samples-carousel:hover {
    animation-play-state: paused;
}
.sample-image {
    width: auto;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 4px solid white;
    object-fit: cover;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}
@media (max-width: 768px) {
    .sample-image {
        height: 320px;
    }
}

/* Passos Section */
.steps-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.step-card-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    border: none;
}
.step-number-large {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 1rem;
}
.step-card-new .card-icon-square {
    margin-bottom: 1.5rem;
    box-shadow: none;
    background-color: var(--color-primary);
}
.step-card-new h3 {
    font-size: 1.5rem;
    color: #1e293b;
}
.step-card-new p {
    color: #475569;
}

/* Placeholders para Imagens */
.image-placeholder {
    background-color: rgba(0, 0, 0, 0.03);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem; text-align: center; color: var(--color-text-body);
    font-size: 0.875rem; overflow: hidden; position: relative;
    transition: transform 0.3s;
}
.image-placeholder:hover { transform: scale(1.05); }
.aspect-portrait { aspect-ratio: 4/5; width: 100%; max-width: 450px; margin: 0 auto; }
.aspect-landscape { aspect-ratio: 16/9; width: 100%; }
.aspect-square { aspect-ratio: 1/1; width: 100%; max-width: 400px; margin: 0 auto; }

/* Samples Section */
.samples-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.bg-peach { background-color: #ffedd5; }
.bg-blue-light { background-color: #dbeafe; }
.step-icon-red {
    background-color: #ef4444;
    border-radius: 12px;
}

/* Bonus Section */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.bonus-card-new {
    padding: 2.5rem 2rem 2rem;
    position: relative;
    border: none;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.bonus-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-red { background-color: #ef4444; }
.badge-purple { background-color: #8b5cf6; }

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.bonus-card-new h3 {
    font-size: 1.125rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.bonus-card-new p {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 1.5rem;
}
.bonus-price {
    color: #ef4444;
    font-weight: 700;
    text-decoration: line-through;
    opacity: 0.8;
}
@media (min-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .bonus-card-new:nth-child(1), .bonus-card-new:nth-child(2), .bonus-card-new:nth-child(3) {
        grid-column: span 2;
    }
    .bonus-card-new:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .bonus-card-new:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* Highlight Quote */
.highlight-quote {
    background-color: #ef4444;
    color: white;
    padding: 4rem 1rem;
}
.quote-icon-white {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}
.highlight-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 1.5rem;
    border: none;
    padding: 0;
}
.quote-author {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Testimonials New */
.testimonials-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card-new {
    padding: 2rem;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.stars-new {
    color: #eab308; /* yellow */
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
.testimonial-card-new p {
    font-size: 1rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.5;
}
.author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
}
.author-info {
    display: flex;
    flex-direction: column;
}
.author-info strong {
    color: #1e293b;
    font-size: 1rem;
}
.author-info span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 800px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}
.pricing-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.basic-card {
    border: 1px solid #e2e8f0;
}
.premium-card {
    border: 3px solid #8b5cf6;
    transform: scale(1.02);
    z-index: 2;
}

.premium-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8b5cf6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}
.premium-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.old-price-small {
    text-align: center;
    text-decoration: line-through;
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.new-price-red {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ef4444;
    line-height: 1;
    margin-bottom: 2rem;
}
.new-price-purple {
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    color: #8b5cf6;
    line-height: 1;
    margin-bottom: 1rem;
}
.savings-pill {
    background-color: #fef08a; /* yellow */
    color: #854d0e; /* dark yellow/brown text */
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    width: max-content;
    margin: 0 auto 2rem;
}

.pricing-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}
.feature-included {
    color: #334155;
    font-weight: 500;
}
.feature-excluded {
    color: #94a3b8;
    text-decoration: line-through;
}

.check-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    min-width: 20px;
    margin-top: 2px;
}
.check-green { background-color: #22c55e; }
.check-purple { background-color: #8b5cf6; }

.lock-icon-grey {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #94a3b8;
    min-width: 20px;
    margin-top: 2px;
}

.btn-teal {
    background-color: #14b8a6;
    color: white;
}
.btn-teal:hover { background-color: #0d9488; }
.btn-purple {
    background-color: #8b5cf6;
    color: white;
}
.btn-purple:hover { background-color: #7c3aed; }
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.25rem;
    font-size: 1.125rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.recommendation-pointer {
    text-align: center;
    background-color: #fefce8;
    border: 1px dashed #fde047;
    color: #a16207;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}
.secure-checkout-text {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}
.premium-mockup-placeholder {
    margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.accordion-header {
    width: 100%; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; font-family: inherit; font-size: 1.125rem; font-weight: 800;
    color: var(--color-text-title); cursor: pointer; text-align: left; transition: background-color 0.2s;
}
.accordion-header:hover { background-color: rgba(0,0,0,0.02); }
.accordion-header .icon { font-size: 1.5rem; font-weight: 400; transition: transform 0.3s ease; }
.accordion-header.active .icon { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.accordion-inner { padding: 0 1.5rem 1.5rem; color: var(--color-text-body); }

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: 4rem 0 2rem; text-align: center;
}
.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.footer p { color: rgba(255,255,255,0.9); }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin: 2rem 0; }
.footer-links a { color: white; text-decoration: none; font-size: 0.875rem; font-weight: 500; }
.footer-links a:hover { text-decoration: underline; }
.copyright { font-size: 0.875rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }

/* Responsividade */
@media (max-width: 768px) {
    .hero { padding: 4rem 0.5rem 3rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-cta-group { justify-content: center; }
    .bonus-container { flex-direction: column; padding: 2rem 1.5rem; }
    .section { padding: 2.25rem 0; }
    
    /* Mobile Hero adjustments */
    .badge-yellow { 
        font-size: 1rem; 
        padding: 0.75rem 1.5rem; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        margin-bottom: 2rem;
    }
    .hero-title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        line-height: 1.2;
        padding: 0;
    }
    .hero-subtitle {
        font-size: 1.15rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    .hero-image-wrapper {
        padding: 0 1rem;
    }
    .hero-image-wrapper .image-placeholder {
        border-width: 6px;
        border-radius: 20px;
    }
    .btn-hero {
        width: calc(100% - 2rem);
        margin: 0 1rem;
        font-size: 1.125rem;
        padding: 1rem;
    }
    
    /* Floating Icons Mobile Positioning */
    .floating-icon.pencil { top: 2%; left: 5%; font-size: 1.5rem; }
    .floating-icon.star { top: 8%; right: 5%; font-size: 2rem; }
    .floating-icon.books { top: 40%; left: 5%; font-size: 1.5rem; }
}

/* --- Otimizacoes Adicionais Mobile (Cards, Espacamentos) --- */
@media (max-width: 600px) {
    /* Checklist */
    .checklist-card {
        padding: 1rem 1.25rem;
        gap: 1rem;
        border-left-width: 4px;
    }
    .checklist-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    .checklist-card .check-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    .checklist-card .check-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Modulos */
    .module-card {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
    .module-card .module-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 2rem;
    }
    .module-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.25rem;
    }
    .module-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Passos */
    .step-card-new {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 0;
        align-items: center;
    }
    .step-number-large {
        display: block;
        font-size: 3.5rem;
        color: #f43f5e;
        line-height: 1;
        margin-bottom: 0.5rem;
    }
    .step-card-new .card-icon-square {
        width: 56px;
        height: 56px;
        min-width: 56px;
        margin: 0 auto 1rem auto;
    }
    .step-card-new h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    .step-card-new p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Bonus */
    .bonus-card-new {
        padding: 3rem 1rem 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .bonus-badge {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
    .bonus-card-new .bonus-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .bonus-card-new h3 {
        font-size: 1.05rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    .bonus-card-new p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    /* Depoimentos */
    .testimonial-card-new {
        padding: 1.5rem 1rem;
    }
    .testimonial-card-new p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* --- Upsell Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
    backdrop-filter: blur(4px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.modal-container {
    background: white;
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.hidden .modal-container {
    transform: translateY(20px);
}

.modal-badge {
    background: #FFC107;
    color: #333;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

@keyframes pulseBlink {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.modal-icon-box {
    font-size: 5.5rem;
    margin: 0.5rem 0;
    line-height: 1;
    animation: pulseBlink 1.5s infinite ease-in-out;
}

.modal-title {
    color: #1a1a2e;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: #7c3aed;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal-comparison {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.compare-card {
    flex: 1;
    min-width: 200px;
    border-radius: 12px;
    padding: 1rem;
    text-align: left;
    border: 2px solid #eee;
}

.essencial-compare {
    background: #fdfdfd;
    border-color: #e5e7eb;
}

.premium-compare {
    background: #f9f5ff;
    border-color: #8b5cf6;
    position: relative;
}

.compare-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a2e;
}

.premium-compare h4 {
    color: #7c3aed;
}

.compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: #444;
}

.compare-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.compare-list li.disabled {
    color: #999;
    text-decoration: line-through;
}

.compare-price {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a2e;
}

.premium-compare .compare-price {
    color: #7c3aed;
}

.compare-price .strike {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.btn-premium-upsell {
    display: block;
    width: 100%;
    background: #FFC107;
    color: #1a1a2e;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 30px;
    text-decoration: none;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-premium-upsell:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.5);
}

.btn-decline-upsell {
    display: inline-block;
    color: #666;
    font-size: 0.9rem;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f1f5f9;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: #64748b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.modal-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

@media (max-width: 600px) {
    .modal-container {
        padding: 1.5rem 1rem;
        max-height: 95vh;
    }
    .modal-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 0.5rem;
        margin-top: 1rem;
    }
    .modal-icon-box {
        font-size: 4rem;
        margin: 0.2rem 0;
    }
    .modal-title {
        font-size: 1.25rem;
    }
    .modal-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .modal-desc {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    .modal-comparison {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    .compare-card {
        min-width: 0;
        padding: 0.6rem 0.4rem;
    }
    .compare-card h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    .compare-list {
        font-size: 0.7rem;
    }
    .compare-list li {
        margin-bottom: 0.3rem;
    }
    .compare-price {
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
    .compare-price .strike {
        font-size: 0.7rem;
    }
    .btn-premium-upsell {
        font-size: 0.95rem;
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    .btn-decline-upsell {
        font-size: 0.75rem;
    }
}
