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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #FFD700;
    --text-color: #1a1a1a;
    --bg-color: #ffffff;
    --highlight-color: #000000;
    --border-color: #e0e0e0;
    --accent-color: #FF6B35;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

/* ================= HERO ================= */
.hero-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero-title .highlight-pink {
    color: #E91E63;
}

.hero-title .subtitle-blue {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2196F3;
    display: block;
    margin-top: 10px;
}

.hero-title .subtitle-gradient {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 10px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-title .subtitle-gradient {
        font-size: 1.6rem;
    }
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
    max-width: 546px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 1.6;
}

/* ================= VIDEO ================= */
.video-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.2);
    background: #111;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.play-button-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

.play-text {
    margin-top: 12px;
    color: #fff;
    font-weight: 600;
}

/* ================= SLIDESHOW ================= */
.slideshow-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 3px solid #ff0000;
    border-radius: 12px;
    animation: borderPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

@keyframes borderPulse {
    0%, 100% {
        border-color: #ff0000;
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    }
    50% {
        border-color: #ff6666;
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    }
}

.slide {
    display: none;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
    opacity: 1;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
/* ================= ACCESS SECTION (CARD PREMIUM) ================= */

.access-section {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    background: transparent;
}

/* Card estreito igual ao site original */
.access-card {
    width: calc(100% - 32px);
    max-width: 546px;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    overflow: hidden;
}

/* Barra preta superior */
.access-topbar {
    background: #0b0b0b;
    color: #ffffff;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 16px;
    text-align: center;
}

/* Corpo do card */
.access-body {
    padding: 18px 18px 22px;
    text-align: center;
}

/* Mockup central */
.access-mockup {
    width: 82%;
    max-width: 320px;
    display: block;
    margin: 14px auto;
}

/* Texto em formato de citação */
.access-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: #2d2d2d;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* Perfil */
.access-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.access-profile-text {
    text-align: left;
}

.access-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #111;
}

.access-handle {
    font-size: 0.8rem;
    color: #6b6b6b;
}
/* ================= MODULES ================= */
.modules-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.module-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    border-left: 5px solid var(--highlight-color);
}

.module-card.highlight-card {
    background: linear-gradient(135deg,#1a1a1a,#2d2d2d);
    color: #fff;
    border-left-color: var(--secondary-color);
}

/* ================= BÔNUS ================= */
.bonuses-section {
    padding: 80px 20px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.bonus-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
}

.bonus-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
}

.bonus-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.bonus-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.price-strikethrough {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc3545;
    text-decoration: line-through;
    text-decoration-color: #dc3545;
    text-decoration-thickness: 3px;
}

.price-free {
    font-size: 1.4rem;
    font-weight: 900;
    color: #28a745;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ================= PREÇO ================= */
.price-section {
    padding: 100px 20px;
    text-align: center;
}

.price-section .container {
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    padding: 40px 20px;
    max-width: 546px;
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
}

.price-cta-button {
    display: inline-block;
    background: linear-gradient(135deg,#FFD700,#FFA500);
    padding: 22px 70px;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 50px;
    color: #111;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255,215,0,.45);
    margin-bottom: 20px;
}

.payment-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 80px 20px;
    background: white;
}

.quote-box {
    max-width: 546px;
    margin: 40px auto;
    padding: 40px;
    background: #FFF9E6;
    border-radius: 12px;
    border: 3px dashed #E91E63;
    position: relative;
}

.quote-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quote-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 50%, #2196F3 100%);
}

.quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge-small {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    background: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid #FFF9E6;
}

.quote-profile-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quote-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.quote-handle {
    font-size: 1rem;
    color: #666;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: #1a1a1a;
}

.quote-author {
    margin-top: 30px;
    text-align: left;
    font-size: 1.1rem;
    font-style: italic;
    color: #1a1a1a;
}

.results-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.results-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 546px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.strategy-text {
    color: #E91E63;
    font-weight: 700;
}

.implacavel-text {
    color: #FF6B35;
    font-weight: 700;
}

.highlight-text {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--highlight-color);
    margin-top: 30px;
}

.highlight-text strong {
    color: var(--highlight-color);
}

/* ================= NOTICE SECTION ================= */
.notice-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.notice-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc3545;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-text {
    font-size: 1.2rem;
    color: #333;
    max-width: 546px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.testimonials-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 546px;
    margin: 0 auto;
}

.testimonial-item {
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: scale(1.05);
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: block;
    object-fit: cover;
    cursor: pointer;
    margin-top: 15px;
}

/* Nova seção de depoimentos com cards */
.testimonials-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 546px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

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

.testimonial-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0 0 0;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* Modal para maximizar imagem */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    cursor: pointer;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .testimonials-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}

/* ================= FAQ ================= */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-item {
    max-width: 546px;
    margin: 0 auto 15px;
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    border: none;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 25px;
    cursor: pointer;
    color: white;
    position: relative;
    transition: background 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: #3d3d3d;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 300;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

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

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-answer strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* ================= FOOTER ================= */
.footer {
    padding: 60px 20px;
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
}

/* ================= QUIZ STYLES ================= */
.quiz-screen {
    padding: 40px 20px;
    background: #f8f9fa;
    min-height: 100vh;
}

.quiz-container {
    max-width: 546px;
    margin: 0 auto;
}

/* Banner de Economia */
.savings-banner {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.savings-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.savings-icon {
    font-size: 2.5rem;
}

.savings-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.savings-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
}

.savings-amount.animate {
    animation: pulse 0.5s ease;
}

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

.savings-increment {
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #28a745;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.savings-increment.show {
    opacity: 1;
    animation: slideUp 1.5s ease;
}

@keyframes slideUp {
    0% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-150%) translateX(20px);
        opacity: 0;
    }
}

/* Barra de Progresso */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Seção de Pergunta */
.question-section {
    margin-bottom: 40px;
    text-align: center;
}

.question-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    white-space: pre-line;
}

.question-instruction {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Opções do Quiz */
.options-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-button {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.option-button:hover {
    border-color: #FFD700;
    background: #fffef5;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.option-button.selected {
    border-color: #FFD700;
    background: linear-gradient(135deg, #fffef5, #fff9e6);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.option-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
}

/* ================= RESPONSIVO ================= */
@media (max-width:768px){
    .hero-title { font-size: 2rem; }
    .hero-title .subtitle-blue { font-size: 1.2rem; }
    .section-title { font-size: 1.8rem; }
    .price-value { font-size: 3rem; }
    .video-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .question-text {
        font-size: 1.4rem;
    }
    
    .savings-amount {
        font-size: 1.5rem;
    }
}
