
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-radius: 20px;
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            text-align: center;
            padding: 40px 20px;
            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="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }
        
        .header h1 {
            font-size: clamp(24px, 5vw, 36px);
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }
        
        .header .subtitle {
            font-size: clamp(16px, 3vw, 20px);
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .main-stat {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .main-stat h2 {
            font-size: clamp(32px, 6vw, 48px);
            font-weight: 800;
            margin-bottom: 10px;
            color: #e74c3c;
        }
        
        .main-stat p {
            font-size: clamp(16px, 3vw, 20px);
            opacity: 0.9;
        }
        
        .content {
            padding: 40px 20px;
        }
        
        .section {
            margin-bottom: 40px;
        }
        
        .section h3 {
            font-size: clamp(20px, 4vw, 28px);
            color: #2c3e50;
            margin-bottom: 20px;
            border-left: 4px solid #e74c3c;
            padding-left: 15px;
            font-weight: 600;
        }
        
        .chart-container {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .chart-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .chart-title {
            font-size: 16px;
            color: #555;
            margin-top: 15px;
            font-style: italic;
        }
        
        .facts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .fact-card {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(116, 185, 255, 0.3);
            transform: translateY(0);
            transition: transform 0.3s ease;
        }
        
        .fact-card:hover {
            transform: translateY(-5px);
        }
        
        .fact-card .number {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .fact-card .text {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .risk-factors {
            background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
            color: white;
            padding: 30px 20px;
            border-radius: 15px;
            margin: 30px 0;
        }
        
        .risk-factors h4 {
            font-size: 24px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .risk-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .risk-item {
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            backdrop-filter: blur(10px);
        }
        
        .risk-item .percentage {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .prevention-section {
            background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
            color: white;
            padding: 30px 20px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }
        
        .prevention-section h4 {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .prevention-tips {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .tip {
            background: rgba(255,255,255,0.1);
            padding: 20px 15px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .tip .icon {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .hipercontroll-section {
            background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
            color: white;
            padding: 30px 20px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }
        
        .hipercontroll-section h4 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .hipercontroll-section p {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .cta-button {
            background: #00b894;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
        }
        
        .cta-button:hover {
            background: #00a085;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
        }
        
        .references {
            background: #f8f9fa;
            padding: 30px 20px;
            border-top: 1px solid #e9ecef;
        }
        
        .references h4 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .references-list {
            font-size: 14px;
            line-height: 1.6;
            color: #555;
        }
        
        .references-list ol {
            padding-left: 20px;
        }
        
        .references-list li {
            margin-bottom: 8px;
        }
        
        .references-list a {
            color: #0984e3;
            text-decoration: none;
        }
        
        .references-list a:hover {
            text-decoration: underline;
        }
        
        .share-section {
            background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
            color: white;
            padding: 30px 20px;
            text-align: center;
        }
        
        .share-section h4 {
            margin-bottom: 20px;
            font-size: 22px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .social-link {
            background: rgba(255,255,255,0.1);
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .social-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        
        .grupo-vip {
            background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            text-decoration: none;
            display: block;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .grupo-vip:hover {
            transform: scale(1.02);
        }
        
        .footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 14px;
            opacity: 0.8;
        }
        
        @media (max-width: 768px) {
            .container {
                margin: 10px;
                border-radius: 15px;
            }
            
            .content {
                padding: 20px 15px;
            }
            
            .social-links {
                flex-direction: column;
                align-items: center;
            }
            
            .social-link {
                width: 200px;
            }
        }
        
        .source-tag {
            font-size: 12px;
            color: #74b9ff;
            font-weight: 600;
            margin-left: 10px;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 4px solid #e17055;
        }
        
        .highlight-box h5 {
            color: #2d3436;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .highlight-box p {
            color: #2d3436;
            font-size: 16px;
        }
    