
        :root {
            --primary-red: #dc3545;
            --dark-red: #b02a37;
            --light-red: #f8d7da;
            --warning-orange: #fd7e14;
            --success-green: #28a745;
            --primary-blue: #007bff;
            --dark-blue: #0056b3;
            --text-dark: #212529;
            --text-muted: #6c757d;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

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

        .infographic {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .header {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            padding: 40px 30px;
            text-align: center;
            position: relative;
        }

        .header::before {
            content: '⚠️';
            font-size: 60px;
            position: absolute;
            top: 20px;
            right: 30px;
            opacity: 0.3;
        }

        .header h1 {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .header .subtitle {
            font-size: clamp(16px, 3vw, 24px);
            font-weight: 300;
            opacity: 0.95;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0;
            background: var(--white);
        }

        .stat-card {
            padding: 30px 20px;
            text-align: center;
            border-right: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
        }

        .stat-number {
            font-size: clamp(36px, 6vw, 56px);
            font-weight: 900;
            color: var(--primary-red);
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: clamp(14px, 2.5vw, 18px);
            color: var(--text-muted);
            font-weight: 600;
            line-height: 1.4;
        }

        .section {
            padding: 40px 30px;
            border-bottom: 1px solid #e9ecef;
        }

        .section:last-child {
            border-bottom: none;
        }

        .section-title {
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 25px;
            text-align: center;
        }

        .danger-box {
            background: linear-gradient(135deg, var(--light-red) 0%, #fdeef0 100%);
            border: 2px solid var(--primary-red);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            text-align: center;
        }

        .danger-box h3 {
            color: var(--primary-red);
            font-size: clamp(20px, 3.5vw, 28px);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .danger-box p {
            font-size: clamp(16px, 2.5vw, 20px);
            color: var(--text-dark);
            font-weight: 600;
        }

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

        .symptom-card {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .symptom-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .symptom-icon {
            font-size: 32px;
            margin-bottom: 10px;
            display: block;
        }

        .symptom-text {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .prevention-section {
            background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
        }

        .prevention-title {
            color: var(--success-green);
            font-size: clamp(22px, 3.5vw, 28px);
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
        }

        .prevention-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            list-style: none;
        }

        .prevention-list li {
            display: flex;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .prevention-list li::before {
            content: '✅';
            margin-right: 10px;
            font-size: 18px;
        }

        .natural-solution {
            background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
            border: 2px solid var(--primary-blue);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }

        .natural-solution h3 {
            color: var(--primary-blue);
            font-size: clamp(22px, 3.5vw, 28px);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .natural-solution p {
            font-size: clamp(16px, 2.5vw, 20px);
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--white);
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--white);
            text-decoration: none;
        }

        .share-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 30px;
            text-align: center;
            border-top: 3px solid var(--primary-blue);
        }

        .share-title {
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .share-subtitle {
            font-size: clamp(16px, 2.5vw, 20px);
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .share-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .share-btn.whatsapp {
            background: #25d366;
            color: white;
        }

        .share-btn.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
        }

        .share-btn.grupo-vip {
            background: linear-gradient(135deg, var(--warning-orange) 0%, #e76500 100%);
            color: white;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
            color: white;
            text-decoration: none;
        }

        .footer-info {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #dee2e6;
        }

        .brand-mention {
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 18px;
        }

        .disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 15px;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .section {
                padding: 30px 20px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-card {
                padding: 20px 15px;
            }

            .share-buttons {
                flex-direction: column;
                align-items: center;
            }

            .share-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

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

            .prevention-list {
                grid-template-columns: 1fr;
            }
        }
    