/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0620 0%, #1a0f3a 25%, #4a0e6b 50%, #6b2c91 75%, #8e44ad 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b9d, #c44569, #f8b500, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-subtitle strong {
    color: #ff9ff3;
    font-weight: 600;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
    margin: 30px 15px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.cta-button:hover::before {
    animation: shine 1s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.cta-button.large::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b9d, #c44569, #ff6b9d, #c44569);
    border-radius: 50px;
    z-index: -1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 107, 157, 0.8), 0 0 40px rgba(196, 69, 105, 0.6);
    }
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 20px;
}

/* Method Section */
.method-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.method-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #ff9ff3;
    opacity: 0.9;
}

.method-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #f8b500);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
    color: white;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff9ff3;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.step-benefit {
    background: rgba(255, 159, 243, 0.1);
    border: 1px solid rgba(255, 159, 243, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ff9ff3;
    font-style: italic;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.method-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.method-text p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.method-text strong {
    color: #ff9ff3;
    font-weight: 600;
}

.features-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-item i {
    color: #4ade80;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* App Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-header {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 15px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.feature-icons {
    display: flex;
    gap: 20px;
}

.feature-icons i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.problem-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    max-width: 350px;
    width: 100%;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.15);
}

.problem-item i {
    font-size: 2.5rem;
    color: #ff9ff3;
    margin-bottom: 20px;
    display: block;
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Centralizar o quinto item na segunda linha (colunas 2-3) */


.problems-conclusion {
    text-align: center;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
}

.problems-conclusion p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.problems-conclusion strong {
    color: #ff9ff3;
    font-weight: 600;
}

/* Responsivo para layouts 2x2 */
@media (max-width: 768px) {
    .problems-grid,
    .bonus-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin: 40px auto 0 !important;
        gap: 20px;
    }
    
    .problem-item:nth-child(4),
    .problem-item:nth-child(5),
    .bonus-item:nth-child(4),
    .bonus-item:nth-child(5) {
        grid-column: 1 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .method-steps {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 10px;
        max-width: 400px !important;
        margin: 40px auto 0 !important;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-text {
        padding-right: 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.solution-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #ff9ff3;
    opacity: 0.9;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.solution-text {
    padding-right: 20px;
}

.solution-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.15);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #ff9ff3;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ff9ff3;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.solution-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    max-width: 350px;
    width: 100%;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.status {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.app-body .feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
}

.progress {
    background: rgba(255, 159, 243, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #ff9ff3;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.stat .label {
    font-size: 0.8rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 5px;
}

.stat .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ade80;
}

/* Results Paths Section */
.results-paths-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.results-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.path-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.path-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #f8b500);
}

.path-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.path-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.path-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff9ff3;
}

.path-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.path-example {
    background: rgba(255, 159, 243, 0.1);
    border: 1px solid rgba(255, 159, 243, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.path-example strong {
    color: #ff9ff3;
    font-weight: 600;
}

.path-income {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.income-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.income-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4ade80;
}

.paths-conclusion {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.paths-conclusion h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff9ff3;
}

.paths-conclusion p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.paths-conclusion strong {
    color: #ff9ff3;
    font-weight: 600;
}

/* System Section */
.system-section {
    padding: 60px 0 80px 0;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.system-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #f8b500);
}

.system-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.card-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    color: white;
    flex-shrink: 0;
}

.system-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff9ff3;
}

.system-card p {
    line-height: 1.6;
    opacity: 0.9;
    flex-grow: 1;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.result-item {
    text-align: center;
    padding: 40px 20px;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.result-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff9ff3;
}

.result-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse-badge 2s infinite;
    margin: 0 auto 30px auto;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CSS removido - usando a versão atualizada mais abaixo */

.offer-visual {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    background: radial-gradient(80% 80% at 20% 20%, rgba(255,255,255,0.15), rgba(255,255,255,0.02) 60%), linear-gradient(135deg, rgba(255,107,157,0.35), rgba(72,149,239,0.25));
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    margin: 0 auto 20px auto;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.offer-visual svg {
    width: 85%;
    height: auto;
    opacity: 0.9;
}

/* Fix broken block and center left content */
.offer-left {
    text-align: center;
    padding: 20px;
    line-height: 1.5;
}

/* Restored Offer styles (previously removed by mistake) */
.price-section {
    text-align: center;
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 10px;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 10px;
}

.installments {
    font-size: 1.1rem;
    opacity: 0.8;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: #4ade80;
}

.modules-list h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ff9ff3;
}

.module-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.module-item i {
    color: #4ade80;
    margin-right: 15px;
    font-size: 1.1rem;
}

.module-item.bonus {
    background: rgba(255, 107, 157, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
}

.module-item.bonus i {
    color: #ff6b9d;
}

.cta-section { text-align: center; }

.urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #f59e0b;
    font-weight: 600;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.module-content ul {
    list-style: none;
    padding: 0;
}

.module-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.module-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.bonus-subtitle {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.bonus-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #cccccc;
}

.bonus-value {
    text-align: center;
    margin: 40px 0;
}

.bonus-total {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    justify-items: center;
}



.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    max-width: 350px;
    width: 100%;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
}

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

.bonus-label {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.bonus-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bonus-old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.bonus-new-price {
    color: #00ff00;
    font-weight: 700;
    font-size: 1.2rem;
}

.bonus-item h4 {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.bonus-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonus-features {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.bonus-feature {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bonus-conclusion {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
}

.bonus-conclusion p {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* CSS responsivo removido - usando a versão atualizada mais abaixo */




/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #00ffff;
}

.faq-question i {
    font-size: 1rem;
    color: #00ffff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 300px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chat-toggle {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: pulse-chat 2s infinite;
}

.chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.chat-toggle i {
    font-size: 1.2rem;
}

.chat-notification {
    background: #ff4757;
    color: white;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 10px;
    position: absolute;
    top: -8px;
    right: -8px;
    animation: bounce 1s infinite;
}

@keyframes pulse-chat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.chat-container {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #1a1a2e;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #1a1a2e;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(26, 26, 46, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar i {
    font-size: 1.2rem;
    color: #1a1a2e;
}

.chat-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.new-conversation-btn {
    background: none;
    border: none;
    color: #1a1a2e;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
    margin-left: auto;
    display: none; /* Hidden by default */
}

.new-conversation-btn.show {
    display: block;
}

.new-conversation-btn:hover {
    background: rgba(26, 26, 46, 0.1);
}

.exit-conversation-btn {
    background: none;
    border: none;
    color: #1a1a2e;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
    margin-left: 5px;
    display: none; /* Hidden by default */
}

.exit-conversation-btn.show {
    display: block;
}

.exit-conversation-btn:hover {
    background: rgba(26, 26, 46, 0.1);
}

.chat-close {
    background: none;
    border: none;
    color: #1a1a2e;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(26, 26, 46, 0.1);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #1a1a2e;
}

.message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.bot-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.user-message .message-content {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #1a1a2e;
    border-bottom-right-radius: 4px;
}

.bot-message .message-content {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-bottom-left-radius: 4px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.chat-input-container {
    padding: 20px;
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
}

.chat-input-container input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input-container input:focus {
    border-color: #00ffff;
    background: rgba(255, 255, 255, 0.15);
}

.chat-input-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chat-input-container button {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-input-container button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.chat-input-container button i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .chat-container {
        width: 300px;
        height: 450px;
        bottom: 60px;
    }
    
    .chat-toggle {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .chat-notification {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card.featured {
    border: 2px solid #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.story-card.featured::before {
    content: "⭐ DESTAQUE";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00d4ff;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
}

.story-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.story-avatar {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.story-info {
    flex: 1;
    min-width: 150px;
}

.story-info h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.story-role {
    color: #00d4ff;
    font-size: 14px;
    font-weight: 500;
}

.story-earnings {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.story-status {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    min-width: 100px;
}

.story-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.story-highlight {
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid #00d4ff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0 40px 0;
    padding: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.4;
}

.join-success {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.join-success h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-success p {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .story-earnings {
        align-self: flex-start;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .join-success {
        padding: 25px;
    }
    
    .join-success h3 {
        font-size: 24px;
    }
}

/* Offer Recap Section */
.offer-recap-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.recap-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #cccccc;
}

.recap-table {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.recap-item {
    display: grid;
    grid-template-columns: 2fr auto auto;
    gap: 20px;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.recap-item:last-child {
    border-bottom: none;
}

.recap-name {
    color: #ffffff;
    font-weight: 500;
}

.recap-price {
    color: #888;
    text-decoration: line-through;
    font-weight: 600;
}

.recap-status {
    color: #00ff00;
    font-weight: 700;
    font-size: 1.1rem;
}

.recap-total {
    background: rgba(0, 255, 255, 0.1);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    border-top: 2px solid rgba(0, 255, 255, 0.5);
}

.recap-total-price {
    color: #00ffff;
}

.recap-final {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
}

.recap-final p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Substituir TODAS as regras do .final-price por esta solução simples: */

.final-price {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 50px !important;
    max-width: 800px !important;
    margin: 30px auto !important;
    padding: 0 20px !important;
    flex-wrap: wrap !important;
}

.final-price .installments {
    background: linear-gradient(135deg, #00ffff, #0080ff) !important;
    color: #1a1a2e !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3) !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

.final-price .or {
    font-size: 1.2rem !important;
    color: #cccccc !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

.final-price .cash-price {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53) !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3) !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

/* Para mobile */
@media (max-width: 768px) {
    .final-price {
        flex-direction: column !important;
        gap: 15px !important;
    }
}



.final-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button.mega {
    font-size: 1.3rem;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-features span {
    color: #00ffff;
    font-weight: 600;
}

/* Practical Module Styling */
.practical-module-detailed {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    border: 2px solid #00d4ff;
    position: relative;
    overflow: hidden;
}

.practical-module-detailed::before {
    content: "🎯 PROJETO REAL";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00d4ff;
    color: #000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.practical-module-detailed .module-number {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    font-size: 24px;
    border: none;
}

.practical-description {
    background: rgba(0, 212, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #00d4ff;
    margin: 15px 0;
    font-style: italic;
    color: #e0e0e0;
}

.practical-highlight {
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid #00d4ff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    color: #fff;
}

.practical-module-detailed ul li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.practical-module-detailed ul li strong {
    color: #00d4ff;
}

/* Risk Zero Section */
.risk-zero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 197, 94, 0.1));
    border-top: 1px solid rgba(74, 222, 128, 0.2);
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
}

.risk-zero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 2px solid rgba(74, 222, 128, 0.3);
    backdrop-filter: blur(10px);
}

.risk-zero-icon {
    margin-bottom: 30px;
}

.risk-zero-icon i {
    font-size: 4rem;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 30px;
    border-radius: 50%;
    border: 3px solid #22c55e;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.risk-zero-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    transition: transform 0.3s ease;
}

.guarantee-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.guarantee-badge i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .risk-zero-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .risk-zero-icon i {
        font-size: 3rem;
        padding: 20px;
    }
    
    .risk-zero-text {
        font-size: 1.1rem;
    }
    
    .guarantee-badge {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Offer Section Reorganization */
.price-section-centered {
    text-align: center;
    margin: 40px 0 60px 0;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 2px solid rgba(255, 159, 243, 0.3);
    backdrop-filter: blur(10px);
}

.modules-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 40px 0;
    color: #ff9ff3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-content {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: stretch;
}

.offer-left,
.offer-right {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 159, 243, 0.2);
    display: flex;
    flex-direction: column;
}

.offer-left .module-item,
.offer-right .module-item {
    flex-grow: 0;
    flex-shrink: 0;
}

/* Garantir que as colunas tenham a mesma altura */
.offer-left {
    min-height: 100%;
}

.offer-right {
    min-height: 100%;
}

@media (max-width: 768px) {
    .offer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .offer-left,
    .offer-right {
        flex: none;
    }
    
    .price-section-centered {
        margin: 30px 0 40px 0;
        padding: 30px 20px;
    }
    
    .modules-title {
        font-size: 1.5rem;
        margin: 30px 0;
    }
    
    .offer-left,
    .offer-right {
        padding: 20px;
    }
}

/* Modal customizado */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.custom-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a0f3a 0%, #4a0e6b 100%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    padding: 25px 25px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-icon {
    font-size: 2.5rem;
    color: #8e44ad;
    margin-bottom: 10px;
    display: block;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.modal-body {
    padding: 30px 35px;
    text-align: center;
}

.modal-body p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

.modal-footer {
    padding: 15px 25px 25px;
    text-align: center;
}

.modal-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
}

.modal-btn-primary:active {
    transform: translateY(0);
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade do modal e dispositivos pequenos */
@media (max-width: 480px) {
    .modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
        width: 90%;
        max-width: 300px;
    }
    
    .cta-button.large {
        padding: 18px 35px;
        font-size: 18px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .step-item,
    .problem-item,
    .bonus-item {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .story-card {
        padding: 20px 15px;
    }
    
    .chat-container {
        width: calc(100vw - 20px);
        height: 400px;
        bottom: 70px;
        right: 10px;
        left: 10px;
    }
    
    .chat-toggle {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* Solução final: 3 cards centralizados em cima, 2 cards centralizados no meio embaixo */
@media (min-width: 1025px) {
    .problems-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 40px;
    }
    
    .problems-grid {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 30px !important;
        max-width: 1000px !important;
        margin: 30px auto 0 !important;
        justify-items: center !important;
    }
    
    /* Os 3 primeiros cards ocupam 2 colunas cada (2+2+2 = 6 colunas) */
    .problem-item:nth-child(1) {
        grid-column: 1 / 3 !important;
    }
    
    .problem-item:nth-child(2) {
        grid-column: 3 / 5 !important;
    }
    
    .problem-item:nth-child(3) {
        grid-column: 5 / 7 !important;
    }
    
    /* Os 2 cards de baixo ficam centralizados (colunas 2-3 e 4-5) */
    .problem-item:nth-child(4) {
        grid-column: 2 / 4 !important;
        grid-row: 2 !important;
        max-width: 350px !important;
        margin: 0 !important;
        justify-self: center !important;
    }
    
    .problem-item:nth-child(5) {
        grid-column: 4 / 6 !important;
        grid-row: 2 !important;
        max-width: 350px !important;
        margin: 0 !important;
        justify-self: center !important;
    }
}