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


        :root {
            --primary-color: #e67e22;
            --secondary-color: #e67e22;
            --accent-color: #e67e22;
            --text-primary: #1f2937;
            --text-secondary: #6b7280;
            --text-light: #9ca3af;
            --bg-primary: #ffffff;
            --bg-secondary: #f9fafb;
            --bg-accent: #f3f4f6;
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 2px 4px 0 rgb(0 0 0 / 0.08);
            --shadow-lg: 0 4px 8px 0 rgb(0 0 0 / 0.12);
            --shadow-xl: 0 8px 16px 0 rgb(0 0 0 / 0.15);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-primary);
            min-height: 100vh;
            position: relative;
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* TELA DE LOGIN */
        .login-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            padding: 20px;
            background: #e67e22;
            overflow: hidden;
        }

        .login-box {
            background: var(--bg-primary);
            padding: 32px 28px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            text-align: center;
            max-width: 380px;
            width: 100%;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .login-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #e67e22;
        }

        .logo-section {
            margin-bottom: 32px;
        }

        .logo-container {
            width: 120px;
            height: auto;
            margin: 0 auto 24px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-circle {
            width: 120px;
            height: auto;
            background: none;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: none;
            transition: transform 0.3s ease;
        }

        .logo-circle:hover {
            transform: scale(1.05);
        }

        .head-profile {
            width: 120px;
            height: auto;
            background-image: url('logo.webp');
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
            border-radius: 0;
            position: relative;
        }

        .brand-text {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .digital {
            color: var(--primary-color);
        }

        .labs {
            color: var(--secondary-color);
        }

        .title {
            color: var(--text-primary);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .subtitle {
            color: var(--text-secondary);
            font-size: 18px;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .input-group {
            margin-bottom: 24px;
            text-align: left;
        }

        label {
            display: block;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        input[type="text"], input[type="password"] {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--bg-primary);
            color: var(--text-primary);
            font-family: inherit;
        }

        input[type="text"]:focus, input[type="password"]:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
        }

        .login-btn {
            width: 100%;
            padding: 16px 24px;
            background: #e67e22;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
            font-family: inherit;
            box-shadow: var(--shadow-md);
        }

        .login-btn:hover {
            background: #e67e22;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

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

        .error-message {
            color: #dc2626;
            font-size: 14px;
            margin-top: 20px;
            display: none;
            background: #fef2f2;
            padding: 16px;
            border-radius: 12px;
            border: 1px solid #fecaca;
        }

        /* ÁREA DE MEMBROS - LAYOUT MODERNO */
        .member-area {
            display: none;
            background: var(--bg-primary);
            min-height: 100vh;
            position: relative;
        }

        /* HEADER MODERNO */
        .modern-header {
            background: var(--primary-color);
            color: white;
            padding: 24px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .modern-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .header-logo {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .header-logo img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }

        .header-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .header-subtitle {
            font-size: 16px;
            opacity: 0.9;
            font-weight: 400;
        }

        /* SEÇÃO PRINCIPAL COM EBOOK GRATUITO */
        .main-content {
            padding: 32px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-section {
            text-align: center;
            margin-bottom: 48px;
        }

        .hero-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* EBOOK GRATUITO EM DESTAQUE */
        .free-ebook-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 24px;
            padding: 32px;
            margin-bottom: 48px;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .free-ebook-section::before {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-color);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .free-ebook-content {
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .free-ebook-image {
            flex: 0 0 200px;
            height: 280px;
            background-image: url('assets/principal.webp');
            background-size: cover;
            background-position: center;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            transition: transform 0.3s ease;
        }

        .free-ebook-image:hover {
            transform: scale(1.02);
        }

        .free-ebook-info {
            flex: 1;
            min-width: 300px;
        }

        .free-ebook-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .free-ebook-description {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .free-ebook-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .free-ebook-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .free-ebook-features li::before {
            content: '✓';
            background: var(--accent-color);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
        }

        .download-btn {
            background: var(--primary-color);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: var(--shadow-md);
            font-family: inherit;
        }

        .download-btn:hover {
            background: #d35400;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* SEÇÃO DE EBOOKS BLOQUEADOS */
        .locked-ebooks-section {
            margin-bottom: 48px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* GRID DE EBOOKS BLOQUEADOS */
        .ebooks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .ebook-card {
            background: var(--bg-primary);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .ebook-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .ebook-image {
            height: 300px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .ebook-lock-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 12px;
        }

        .lock-icon {
            width: 48px;
            height: 48px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .lock-text {
            color: white;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ebook-content {
            padding: 20px;
        }

        .ebook-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .ebook-description {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .ebook-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .price {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .unlock-btn {
            background: var(--primary-color);
            color: white;
            padding: 20px 24px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: inherit;
        }

        .unlock-btn:hover {
            background: #d35400;
            transform: translateY(-1px);
        }

        /* FOOTER MODERNO */
        .modern-footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 48px 20px 32px;
            margin-top: 64px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .footer-section p,
        .footer-section a {
            font-size: 14px;
            color: var(--text-secondary);
            text-decoration: none;
            line-height: 1.6;
            display: block;
            margin-bottom: 8px;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 24px;
    text-align: center;
}

        .footer-bottom p {
    font-size: 14px;
            color: var(--text-light);
        }


        /* RESPONSIVIDADE */
        @media (max-width: 768px) {
            .free-ebook-content {
                flex-direction: column;
                text-align: center;
            }

            .free-ebook-image {
                flex: none;
                width: 200px;
                margin: 0 auto;
            }

            .ebooks-grid {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 24px;
            }

            .section-title {
                font-size: 24px;
            }

            .main-content {
                padding: 20px 16px;
            }
        }

        @media (max-width: 480px) {
            .login-box {
                padding: 24px 20px;
                margin: 16px;
                max-width: calc(100vw - 32px);
            }
            
            .title {
                font-size: 24px;
            }
            
            .subtitle {
                font-size: 16px;
            }
            
            .brand-text {
                font-size: 24px;
            }
            
            .logo-circle {
                width: 60px;
                height: 60px;
            }
            
            .head-profile {
                width: 45px;
                height: 45px;
            }

            .free-ebook-section {
                padding: 24px 20px;
            }

            .ebook-card {
                margin: 0 8px;
            }

            /* RESPONSIVIDADE PARA POPUP COMPACTO */
            .locked-header {
                padding: 12px 16px;
            }

            .locked-main-content {
                padding: 12px 16px;
                gap: 12px;
            }

            .locked-title {
                font-size: 16px;
            }

            .lock-icon-large {
                font-size: 32px;
            }

            .main-cta-btn-compact {
                padding: 14px 20px;
                font-size: 15px;
                margin-bottom: 8px;
            }

            .benefit-item-simple {
                padding: 4px 6px;
                font-size: 11px;
            }
            
            .benefit-item-simple::before {
                font-size: 12px;
            }

            .benefits-list-simple {
                gap: 3px;
            }

            .stats-compact {
                gap: 6px;
            }

            .stat-compact {
                font-size: 10px;
                padding: 4px 6px;
            }
            
            .locked-subtitle {
                font-size: 12px;
                margin-bottom: 12px;
            }
            
            .benefits-title {
                font-size: 14px;
                margin-bottom: 6px;
            }
            
            .testimonial-compact {
                padding: 12px;
                margin-bottom: 8px;
            }
            
            .testimonial-compact p {
                font-size: 12px;
            }
            
            .testimonial-author-compact {
                font-size: 10px;
            }
            
            .current-price-compact {
                font-size: 20px;
            }
            
            .original-price-compact {
                font-size: 12px;
            }
            
            .discount-badge-compact {
                font-size: 9px;
                padding: 3px 6px;
            }
            
            .guarantee-compact {
                font-size: 10px;
                margin-bottom: 8px;
            }
            
            .back-btn-compact {
                padding: 10px;
                font-size: 12px;
                margin: 15px auto 25px auto;
                width: calc(100% - 40px);
            }
        }



        /* ESTILOS PARA FUNCIONALIDADES EXISTENTES */
        .featured-card {
            background: var(--bg-secondary);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
            display: flex;
            gap: 20px;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .featured-card:hover {
            background: var(--bg-accent);
            transform: translateY(-2px);
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
        }

        .featured-image {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
        }

        .featured-content h3 {
            color: var(--text-primary);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .featured-content p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .featured-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 12px;
        }

        .book-btn {
            background: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            border: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: inherit;
        }

        .book-btn:hover {
            background: #d35400;
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        /* TODAS AS OUTRAS ÁREAS MANTIDAS */
        .about-area {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--bg-primary);
            z-index: 1000;
            overflow: auto;
        }

        .about-header {
            background: var(--primary-color);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: var(--shadow-lg);
            border-bottom: 3px solid var(--accent-color);
        }

        .about-title {
            font-size: 24px;
            font-weight: 600;
            color: white;
        }

        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .about-hero {
            background: var(--bg-secondary);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 40px;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow-lg);
        }

        .about-logo {
            width: 150px;
            height: 150px;
            margin: 0 auto 10px;
            border-radius: 20px;
            overflow: hidden;
        }

        .about-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .company-name {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--primary-color);
        }

        .company-tagline {
            font-size: 20px;
            color: var(--text-secondary);
            font-weight: 400;
            margin-bottom: 30px;
            font-style: italic;
        }

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

        .about-card {
            background: var(--bg-primary);
            padding: 30px;
            border-radius: 16px;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .about-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .about-card h3 {
            color: var(--primary-color);
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .about-card p {
            color: var(--text-primary);
            line-height: 1.6;
            font-size: 16px;
        }

        .about-card ul {
            color: var(--text-primary);
            line-height: 1.6;
            font-size: 16px;
            padding-left: 20px;
        }

        .about-card li {
            margin-bottom: 8px;
        }

        .about-card li::marker {
            color: var(--secondary-color);
        }

        .contact-section {
            background: var(--bg-secondary);
            padding: 30px;
            border-radius: 16px;
            border: 2px solid var(--border-color);
            text-align: center;
        }

        .contact-section h3 {
            color: var(--primary-color);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
            font-size: 16px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
        }

        .social-link {
            background: var(--bg-accent);
            color: var(--text-primary);
            padding: 12px;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            border: 1px solid var(--border-color);
        }

        .social-link:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* ÁREA SOBRE A AUTORA */
        .author-area {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--bg-primary);
            z-index: 1000;
            overflow: auto;
        }

        .author-header {
            background: var(--primary-color);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: var(--shadow-lg);
            border-bottom: 3px solid var(--accent-color);
        }

        .author-title {
            font-size: 24px;
            font-weight: 600;
            color: white;
        }

        .author-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .author-profile {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
            background: var(--bg-secondary);
            padding: 30px;
            border-radius: 16px;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .author-image {
            flex-shrink: 0;
        }

        .author-image img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary-color);
            box-shadow: var(--shadow-lg);
        }

        .author-info {
            flex-grow: 1;
        }

        .author-name {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .author-profession {
            font-size: 18px;
            color: var(--secondary-color);
            font-weight: 500;
        }

        .author-biography {
            display: grid;
            gap: 30px;
        }

        .bio-section {
            background: var(--bg-primary);
            padding: 25px;
            border-radius: 12px;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .bio-section h3 {
            color: var(--primary-color);
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-color);
        }

        .bio-section p {
            color: var(--text-primary);
            line-height: 1.6;
            font-size: 16px;
        }

        .bio-section ul {
            color: var(--text-primary);
            line-height: 1.6;
            font-size: 16px;
            padding-left: 20px;
        }

        .bio-section li {
            margin-bottom: 8px;
        }

        .bio-section li::marker {
            color: var(--secondary-color);
        }

        /* ÁREA DE CONTENIDO BLOQUEADO - DESIGN COMPACTO PARA MOBILE */
        .locked-area {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
            z-index: 2000;
            backdrop-filter: blur(10px);
            overflow-y: auto;
        }

        .locked-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            height: 100vh;
            padding: 5px;
            overflow-y: hidden;
            padding-top: 10px;
        }

        .locked-content {
            background: var(--bg-primary);
            width: 100%;
            max-width: 500px;
            height: 95vh;
            overflow-y: auto;
            position: relative;
            border-radius: 16px;
            margin: 0;
        }

        /* HEADER COMPACTO */
        .locked-header {
            background: transparent;
            padding: 16px 20px;
            text-align: center;
            color: var(--text-primary);
            flex-shrink: 0;
            position: relative;
        }

        .lock-icon-large {
            font-size: 40px;
            margin-bottom: 8px;
            color: var(--secondary-color);
        }

        .locked-title {
            font-size: 18px;
            font-weight: 700;
            margin: 0;
            line-height: 1.3;
        }

        /* CONTEÚDO PRINCIPAL COMPACTO */
        .locked-main-content {
            padding: 20px;
            padding-bottom: 80px;
        }

        .locked-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.4;
        }

        /* LISTA SIMPLES DE BENEFÍCIOS */
        .benefits-section-compact {
            margin-bottom: 16px;
            flex-shrink: 0;
        }

        .benefits-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            text-align: center;
        }

        .unlock-btn-top {
            width: 100%;
            background: var(--primary-color);
            color: white;
            padding: 16px 24px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 12px;
            box-shadow: var(--shadow-md);
            font-family: inherit;
        }

        .unlock-btn-top:hover {
            background: #d35400;
            transform: translateY(-1px);
            box-shadow: var(--shadow-lg);
        }

        .unlock-btn-top .cta-icon {
            font-size: 16px;
        }

        .unlock-btn-top .cta-text {
            flex: 1;
        }

        .unlock-btn-top .cta-price {
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 14px;
        }

        .benefits-list-simple {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .benefit-item-simple {
            font-size: 12px;
            color: var(--text-secondary);
            padding: 6px 8px;
            background: var(--bg-secondary);
            border-radius: 6px;
            border: 1px solid var(--border-color);
            text-align: left;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .benefit-item-simple::before {
            content: '📘';
            flex-shrink: 0;
            font-size: 14px;
        }

        /* PROVA SOCIAL COMPACTA */
        .social-proof-compact {
            margin-bottom: 20px;
            flex-shrink: 0;
        }

        /* ESTILOS PARA O CARROSSEL DE DEPOIMENTOS */
        .testimonial-slider-container {
            overflow: hidden;
            position: relative;
            width: 100%;
            margin-bottom: 12px;
        }

        .testimonial-slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-compact {
            flex: 0 0 100%;
            box-sizing: border-box;
        }

        .testimonial-author-compact {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        .author-photo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary-color);
        }

        .author-details {
            display: flex;
            flex-direction: column;
        }

        .testimonial-compact {
            background: var(--bg-secondary);
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 12px;
            border: 1px solid var(--border-color);
        }

        .testimonial-compact p {
            font-size: 14px;
            color: var(--text-primary);
            font-style: italic;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .testimonial-author-compact {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .stats-compact {
            display: flex;
            justify-content: space-around;
            gap: 8px;
        }

        .stat-compact {
            font-size: 11px;
            color: var(--text-secondary);
            text-align: center;
            padding: 6px 8px;
            background: var(--bg-accent);
            border-radius: 6px;
            flex: 1;
        }

        /* SEÇÃO DE PREÇO COMPACTA */
        .pricing-section-compact {
            text-align: center;
            margin-bottom: 20px;
            flex-shrink: 0;
        }

        .price-display-compact {
            margin-bottom: 16px;
        }

        .original-price-compact {
            font-size: 14px;
            color: var(--text-light);
            text-decoration: line-through;
            margin-bottom: 4px;
        }

        .current-price-compact {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 4px;
        }

        .discount-badge-compact {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .main-cta-btn-compact {
            width: 100%;
            background: var(--primary-color);
            color: white;
            padding: 16px 24px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 12px;
            box-shadow: var(--shadow-md);
            font-family: inherit;
        }

        .main-cta-btn-compact:hover {
            background: #d35400;
            transform: translateY(-1px);
            box-shadow: var(--shadow-lg);
        }

        .cta-icon {
            font-size: 16px;
        }

        .cta-text {
            flex: 1;
        }

        .cta-price {
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 14px;
        }

        .guarantee-compact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .guarantee-icon {
            font-size: 14px;
        }

        .back-btn-compact {
            width: calc(100% - 60px);
            padding: 12px;
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            margin: 20px auto 30px auto;
            position: relative;
            z-index: 10;
            display: block;
        }

        .back-btn-compact:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: rgba(230, 126, 34, 0.05);
        }

        body.locked-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* ÁREA DO PDF */
        .pdf-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: #fff;
            z-index: 1000;
            overflow: auto;
        }

        .pdf-header {
            background: var(--primary-color);
            color: white;
            padding: 2px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: var(--shadow-lg);
            border-bottom: 3px solid var(--accent-color);
        }

        .pdf-title {
            font-size: 18px;
            font-weight: 600;
            color: white;
        }

        .close-btn {
            background: var(--accent-color);
            border: none;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .close-btn:hover {
            background: var(--primary-color);
            transform: scale(1.05);
        }

        .pdf-embed {
            width: 100%;
            min-height: calc(100vh - 80px);
            border: none;
            display: block;
        }

        /* Quando o header está escondido, iframe ocupa tela toda */
        .pdf-container.header-hidden .pdf-embed {
            min-height: 100vh;
        }

        /* ANIMAÇÕES */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .login-box {
            animation: fadeIn 0.8s ease-out;
        }

        /* ESTILOS PARA MODAIS DE POLÍTICAS */
        .policy-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            z-index: 3000;
            backdrop-filter: blur(5px);
            overflow-y: auto;
        }

        .policy-container {
            background: var(--bg-primary);
            max-width: 800px;
            margin: 20px auto;
            border-radius: 16px;
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            position: relative;
        }

        .policy-header {
            background: var(--primary-color);
            color: white;
            padding: 24px 32px;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 3001;
        }

        .policy-title {
            font-size: 24px;
            font-weight: 700;
            margin: 0;
        }

        .policy-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .policy-close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .policy-content {
            padding: 32px;
            line-height: 1.7;
            color: var(--text-primary);
        }

        .policy-content h2 {
            color: var(--primary-color);
            font-size: 20px;
            font-weight: 600;
            margin: 24px 0 12px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-color);
        }

        .policy-content h3 {
            color: var(--text-primary);
            font-size: 18px;
            font-weight: 600;
            margin: 20px 0 8px 0;
        }

        .policy-content p {
            margin-bottom: 16px;
            font-size: 16px;
        }

        .policy-content ul {
            margin: 16px 0;
            padding-left: 24px;
        }

        .policy-content li {
            margin-bottom: 8px;
            font-size: 16px;
        }

        .policy-content strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        .policy-content .highlight {
            background: var(--bg-secondary);
            padding: 16px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            margin: 20px 0;
        }

        /* RESPONSIVIDADE */
        @media (max-width: 768px) {
            .policy-container {
                margin: 10px;
                border-radius: 12px;
            }

            .policy-header {
                padding: 20px 24px;
            }

            .policy-title {
                font-size: 20px;
            }

            .policy-content {
                padding: 24px 20px;
            }

            .policy-content h2 {
                font-size: 18px;
            }

            .policy-content h3 {
                font-size: 16px;
            }

            .policy-content p,
            .policy-content li {
                font-size: 14px;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-hero {
                padding: 30px 20px;
            }

            .company-name {
                font-size: 28px;
            }

            .company-tagline {
                font-size: 16px;
            }

            .about-logo {
                width: 120px;
                height: 120px;
            }

            .contact-info {
                flex-direction: column;
                gap: 15px;
            }

            .social-links {
                gap: 15px;
            }

            .items-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .author-profile {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .author-content {
                padding: 30px 15px;
            }

            .locked-content {
                padding: 40px 30px;
                margin: 5px;
                height: 95vh;
            }

            .locked-title {
                font-size: 24px;
            }
            
            .ebooks-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .featured-card {
                flex-direction: column;
                text-align: center;
            }
            
            .featured-image {
                width: 100%;
                height: 300px;
                margin-bottom: 16px;
            }
            
            .book-btn {
                width: 100%;
                margin-top: 12px;
            }
        }

        @media (max-width: 480px) {
            .login-box {
                padding: 40px 30px;
                margin: 20px;
            }
            
            .title {
                font-size: 24px;
            }
            
            .item-title {
                font-size: 10px;
            }
        }