
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-radius: 20px;
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #7c3aed, #8b5cf6);
            color: white;
            padding: 40px 30px;
            text-align: center;
            position: relative;
        }
        
        .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"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }
        
        .header h1 {
            font-size: 2.2em;
            margin-bottom: 10px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }
        
        .header .subtitle {
            font-size: 1.2em;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        .alert-banner {
            background: linear-gradient(135deg, #059669, #047857);
            color: white;
            padding: 20px;
            text-align: center;
            font-weight: bold;
            font-size: 1.1em;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            padding: 40px 30px;
            text-align: center;
        }
        
        .hero-molecule {
            font-size: 4em;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #7c3aed, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-text {
            font-size: 1.3em;
            color: #374151;
            margin-bottom: 30px;
            line-height: 1.7;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            padding: 40px 30px;
            background: #f8fafc;
        }
        
        .stat-card {
            background: white;
            padding: 25px 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid #7c3aed;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
        }
        
        .stat-number {
            font-size: 2.2em;
            font-weight: 700;
            color: #7c3aed;
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: #666;
            font-size: 0.85em;
            line-height: 1.4;
        }
        
        .content-section {
            padding: 40px 30px;
        }
        
        .section-title {
            font-size: 1.8em;
            color: #1f2937;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #7c3aed, #059669);
            border-radius: 2px;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .benefit-card {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid #059669;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(5, 150, 105, 0.1);
        }
        
        .benefit-icon {
            font-size: 2em;
            margin-bottom: 15px;
        }
        
        .benefit-title {
            color: #1f2937;
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .benefit-description {
            color: #6b7280;
            font-size: 0.9em;
            line-height: 1.5;
        }
        
        .benefit-value {
            color: #059669;
            font-weight: 700;
            font-size: 1.1em;
            margin-top: 8px;
        }
        
        .mechanism-section {
            background: linear-gradient(135deg, #1f2937, #374151);
            color: white;
            padding: 40px 30px;
        }
        
        .mechanism-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .mechanism-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .mechanism-icon {
            font-size: 1.8em;
            margin-bottom: 12px;
        }
        
        .mechanism-title {
            font-size: 1.1em;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .mechanism-text {
            font-size: 0.9em;
            opacity: 0.9;
        }
        
        .dosage-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            margin: 30px 0;
        }
        
        .dosage-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .dosage-table th {
            background: linear-gradient(135deg, #7c3aed, #8b5cf6);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .dosage-table td {
            padding: 15px;
            border-bottom: 1px solid #e5e7eb;
            vertical-align: top;
        }
        
        .dosage-table tr:last-child td {
            border-bottom: none;
        }
        
        .dosage-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        
        .sources-section {
            background: linear-gradient(135deg, #059669, #047857);
            color: white;
            padding: 40px 30px;
            text-align: center;
        }
        
        .sources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .source-card {
            background: rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }
        
        .source-icon {
            font-size: 2em;
            margin-bottom: 10px;
        }
        
        .source-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .source-content {
            font-size: 0.9em;
            opacity: 0.9;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }
        
        .warning-box h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #059669, #047857);
            color: white;
            padding: 40px 30px;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 1.8em;
            margin-bottom: 15px;
        }
        
        .cta-section p {
            font-size: 1.1em;
            margin-bottom: 25px;
            opacity: 0.95;
        }
        
        .whatsapp-btn {
            display: inline-block;
            background: #25d366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-btn:hover {
            background: #128c7e;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }
        
        .footer-section {
            background: #1f2937;
            color: white;
            padding: 40px 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-box h3 {
            margin-bottom: 15px;
            color: #f3f4f6;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            display: inline-block;
            padding: 10px;
            background: #374151;
            color: white;
            text-decoration: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            text-align: center;
            line-height: 25px;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #7c3aed;
            transform: translateY(-2px);
        }
        
        .share-section {
            background: #f8fafc;
            padding: 30px;
            text-align: center;
            border-top: 1px solid #e5e7eb;
        }
        
        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .share-btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        
        .share-whatsapp { background: #25d366; }
        .share-instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
        .share-vip { background: #7b68ee; }
        
        .copy-link {
            margin-top: 20px;
            padding: 15px;
            background: #e5e7eb;
            border-radius: 10px;
            font-family: monospace;
            word-break: break-all;
            font-size: 0.9em;
        }
        
        @media (max-width: 768px) {
            .container {
                margin: 0;
                border-radius: 0;
            }
            
            .header h1 {
                font-size: 1.8em;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                padding: 30px 20px;
            }
            
            .content-section {
                padding: 30px 20px;
            }
            
            .share-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .share-btn {
                width: 80%;
                max-width: 300px;
            }
            
            .mechanism-grid {
                grid-template-columns: 1fr;
            }
            
            .sources-grid {
                grid-template-columns: 1fr;
            }
            
            .dosage-table {
                font-size: 0.9em;
            }
            
            .dosage-table th,
            .dosage-table td {
                padding: 10px;
            }
        }
    