
        /* ===== CAMARGOLOGY: SISTEMA DE DISEÑO OPTIMIZADO ===== */
        :root {
            --primary-dark: #8b0000;
            --primary-bright: #ff4500;
            --bg-dark: #0a0a0a;
            --bg-card: rgba(30, 30, 30, 0.95);
            --text-primary: #e0e0e0;
            --text-secondary: #aaa;
            --border-radius: 8px;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            padding: 20px;
        }

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

        /* ===== HEADER OPTIMIZADO ===== */
        header {
            text-align: center;
            padding: 30px 20px;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        h1 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            background: linear-gradient(to right, var(--primary-dark), var(--primary-bright));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 10px;
            font-weight: 700;
        }

        /* ===== SECCIONES DE CONTENIDO ===== */
        .content-section {
            background: rgba(20, 20, 20, 0.85);
            border-radius: var(--border-radius);
            padding: clamp(25px, 5vw, 40px);
            margin-bottom: 40px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary-dark);
        }

        .content-section.primary {
            border-left-color: var(--primary-bright);
        }

        .section-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--primary-bright);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .section-text {
            color: #ccc;
            font-size: 1.1rem;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        /* ===== BADGE DE CREDIBILIDAD ===== */
        .credibility-badge {
            background: rgba(255,69,0,0.1);
            border: 1px solid var(--primary-bright);
            border-radius: var(--border-radius);
            padding: 20px;
            margin: 20px 0;
        }

        .research-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            text-align: center;
        }

        .stat .number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-bright);
        }

        .stat .label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* ===== SECCIÓN DE ESPERANZA ===== */
        .hope-section {
            background: linear-gradient(135deg, rgba(139,0,0,0.1), rgba(255,69,0,0.1));
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 30px 0;
        }

        .recovery-factors {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .factor {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
        }

        /* ===== CTA ESTRATÉGICOS ===== */
        .early-cta {
            text-align: center;
            padding: 40px;
            background: var(--bg-card);
            border-radius: var(--border-radius);
            margin: 40px 0;
        }

        .resource-cta {
            background: rgba(255,255,255,0.03);
            border-left: 3px solid var(--primary-bright);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        /* ===== CASO DE ESTUDIO ===== */
        .case-study {
            background: var(--bg-card);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 20px 0;
        }

        .results {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 15px;
        }

        .metric {
            text-align: center;
        }

        .metric .value {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-bright);
        }

        /* ===== MAPA INTERACTIVO ===== */
        .map-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .map-wrapper {
            position: relative;
            width: 100%;
            height: clamp(400px, 50vh, 600px);
            background: rgba(20, 20, 20, 0.7);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        #world-map {
            width: 100%;
            height: 100%;
        }

        .country {
            fill: #2a2a2a;
            stroke: #444;
            stroke-width: 0.5;
            transition: var(--transition);
            cursor: pointer;
        }

        .country:hover {
            fill: var(--primary-dark);
            stroke: var(--primary-bright);
            stroke-width: 1;
            filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.7));
        }

        .country.selected {
            fill: var(--primary-dark);
            stroke: var(--primary-bright);
            stroke-width: 2;
            filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.8));
        }

        /* ===== TOOLTIPS Y TARJETAS ===== */
        .map-tooltip {
            position: absolute;
            background: var(--bg-card);
            border: 1px solid var(--primary-bright);
            border-radius: var(--border-radius);
            padding: 15px;
            width: 220px;
            pointer-events: none;
            opacity: 0;
            transition: var(--transition);
            box-shadow: var(--shadow);
            z-index: 100;
        }

        .map-tooltip-flag {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-tooltip-title {
            color: var(--primary-bright);
            font-size: 1.2rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .map-tooltip-cause {
            font-size: 0.9rem;
            margin-bottom: 10px;
            color: var(--text-secondary);
        }

        .map-tooltip-decline {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .decline-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary-bright);
        }

        .selection-card {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-card);
            border: 2px solid var(--primary-bright);
            border-radius: var(--border-radius);
            padding: 15px;
            width: 300px;
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: var(--transition);
        }
        
        .selection-card.visible {
            opacity: 1;
        }
        
        .selection-card-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .selection-card-content h3 {
            color: var(--primary-bright);
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .selection-card-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* ===== PANEL DE DATOS ===== */
        .data-panel {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary-dark);
            scroll-margin-top: 20px;
        }

        .country-title {
            color: var(--primary-bright);
            font-size: 1.8rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .country-flag {
            width: 50px;
            height: 30px;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 3px;
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .data-column {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .data-item {
            margin-bottom: 15px;
        }

        .data-label {
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .data-value {
            font-size: 1.1rem;
        }

        .decline-chart {
            height: 10px;
            background: #333;
            border-radius: 5px;
            margin-top: 5px;
            overflow: hidden;
        }

        .decline-bar {
            height: 100%;
            background: linear-gradient(to right, var(--primary-dark), var(--primary-bright));
            border-radius: 5px;
            transition: width 0.5s ease;
        }

        /* ===== LISTA DE PAÍSES ===== */
        .country-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .country-card {
            background: rgba(40, 40, 40, 0.7);
            border-radius: var(--border-radius);
            padding: 15px;
            cursor: pointer;
            transition: var(--transition);
            border-left: 3px solid transparent;
        }

        .country-card:hover {
            background: rgba(60, 60, 60, 0.7);
            border-left-color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .country-card.selected {
            background: rgba(70, 70, 70, 0.7);
            border-left-color: var(--primary-bright);
        }

        .country-card h3 {
            color: var(--primary-bright);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        /* ===== BOTONES Y LLAMADAS A LA ACCIÓN ===== */
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-dark), var(--primary-bright));
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            text-align: center;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
        }

        .cta-button.small {
            padding: 8px 16px;
            font-size: 0.9rem;
        }

        /* ===== SECCIÓN DE PAÍSES ADICIONALES ===== */
        .additional-countries-section {
            background: rgba(20, 20, 20, 0.85);
            border-radius: var(--border-radius);
            padding: clamp(25px, 5vw, 40px);
            margin: 40px 0;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary-dark);
        }

        .countries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .country-detail-card {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 20px;
            transition: var(--transition);
            border-left: 3px solid transparent;
            cursor: pointer;
        }

        .country-detail-card:hover {
            transform: translateY(-5px);
            border-left-color: var(--primary-bright);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

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

        .country-detail-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .country-detail-name {
            color: var(--primary-bright);
            font-size: 1.3rem;
            font-weight: 600;
        }

        .country-detail-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .stat-item {
            text-align: center;
            padding: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
        }

        .stat-value {
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-bright);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .country-detail-causes {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .causes-title {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .causes-list {
            font-size: 0.9rem;
            color: #ccc;
            line-height: 1.5;
        }

        .recovery-badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-top: 10px;
        }

        .recovery-high {
            background: rgba(0, 255, 0, 0.1);
            color: #4CAF50;
            border: 1px solid #4CAF50;
        }

        .recovery-medium {
            background: rgba(255, 193, 7, 0.1);
            color: #FFC107;
            border: 1px solid #FFC107;
        }

        .recovery-low {
            background: rgba(244, 67, 54, 0.1);
            color: #F44336;
            border: 1px solid #F44336;
        }

        .search-container {
            margin-bottom: 20px;
        }

        .search-container input {
            width: 100%;
            padding: 12px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }

        /* ===== MEJORAS DE ACCESIBILIDAD ===== */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Focus styles for accessibility */
        .country-card:focus,
        .cta-button:focus,
        .country-detail-card:focus {
            outline: 2px solid var(--primary-bright);
            outline-offset: 2px;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .map-wrapper {
                height: 400px;
            }
            
            .country-list {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .map-tooltip {
                width: 180px;
                padding: 10px;
            }
            
            .map-tooltip-flag {
                height: 90px;
            }
            
            .selection-card {
                width: 250px;
                padding: 10px;
            }

            .data-grid {
                grid-template-columns: 1fr;
            }
            
            .country-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .research-stats {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .recovery-factors {
                grid-template-columns: 1fr;
            }
            
            .countries-grid {
                grid-template-columns: 1fr;
            }
            
            .country-detail-stats {
                grid-template-columns: 1fr;
            }
            
            .country-detail-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .data-panel {
                padding: 20px;
            }
            
            .country-list {
                grid-template-columns: 1fr;
            }
            
            .research-stats {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        /* ===== NUEVAS MEJORAS CAMARGOLOGY ===== */
        .urgency-badge {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary-dark), var(--primary-bright));
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }

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

        .problem-solution-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }

        @media (max-width: 768px) {
            .problem-solution-container {
                grid-template-columns: 1fr;
            }
        }

        .problem-box, .solution-box {
            padding: 25px;
            border-radius: var(--border-radius);
        }

        .problem-box {
            background: rgba(139, 0, 0, 0.1);
            border-left: 4px solid var(--primary-dark);
        }

        .solution-box {
            background: rgba(0, 128, 0, 0.1);
            border-left: 4px solid #4CAF50;
        }

        .testimonial {
            background: var(--bg-card);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border-left: 4px solid var(--primary-bright);
            font-style: italic;
            position: relative;
        }

        .testimonial::before {
            content: "";
            font-size: 4rem;
            color: var(--primary-bright);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 15px;
        }

        .testimonial-author {
            margin-top: 15px;
            font-weight: 600;
            color: var(--primary-bright);
            font-style: normal;
        }

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

        .benefit-item {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            background: rgba(255,69,0,0.1);
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .benefit-title {
            color: var(--primary-bright);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .final-cta {
            text-align: center;
            padding: 50px 30px;
            background: linear-gradient(135deg, rgba(139,0,0,0.2), rgba(255,69,0,0.2));
            border-radius: var(--border-radius);
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .final-cta::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" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,69,0,0.05)"/></svg>');
            background-size: cover;
            z-index: -1;
        }

        .final-cta h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--primary-dark), var(--primary-bright));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .final-cta .cta-button {
            font-size: 1.2rem;
            padding: 15px 40px;
            margin-top: 20px;
        }
    