<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Module Pédagogique - Les 4 Niveaux Énergétiques et le BNS</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(180deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
padding: 20px;
color: #2c3e50;
}
.container {
max-width: 1400px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
padding: 40px;
}
/* Header */
.header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 30px;
border-bottom: 3px solid #e0e6ed;
}
.main-title {
font-size: 2.5em;
color: #2c3e50;
margin-bottom: 10px;
font-weight: bold;
}
.subtitle {
font-size: 1.2em;
color: #7f8c8d;
margin-bottom: 20px;
}
.author {
font-size: 1em;
color: #3498db;
font-style: italic;
}
/* Layout principal */
.content-grid {
display: grid;
grid-template-columns: 1fr 500px 1fr;
gap: 30px;
margin-bottom: 40px;
}
/* Panneau gauche - Théorie */
.left-panel {
background: #f8f9fa;
border-radius: 15px;
padding: 25px;
}
.section-title {
font-size: 1.3em;
color: #2980b9;
margin-bottom: 20px;
font-weight: bold;
border-bottom: 2px solid #3498db;
padding-bottom: 10px;
}
.theory-item {
margin-bottom: 20px;
padding: 15px;
background: white;
border-radius: 10px;
border-left: 4px solid #3498db;
}
.theory-title {
font-weight: bold;
color: #2c3e50;
margin-bottom: 8px;
font-size: 1.1em;
}
.theory-content {
color: #555;
line-height: 1.6;
font-size: 0.95em;
}
/* Centre - Sandwich */
.center-panel {
display: flex;
flex-direction: column;
align-items: center;
}
.sandwich-title {
font-size: 1.8em;
font-weight: bold;
color: #2c3e50;
margin-bottom: 20px;
text-align: center;
}
.sandwich {
width: 100%;
max-width: 450px;
position: relative;
}
.layer {
width: 100%;
height: 90px;
margin-bottom: -20px;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 25px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
position: relative;
z-index: 1;
}
.layer:last-child {
margin-bottom: 0;
}
.layer:hover {
transform: translateY(-5px) scale(1.02);
z-index: 10;
margin-bottom: -10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* Couleurs des couches */
.layer.yang {
background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}
.layer.qi {
background: linear-gradient(135deg, #7f8c8d 0%, #95a5a6 100%);
}
.layer.xue {
background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}
.layer.yin {
background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}
.layer-left {
display: flex;
flex-direction: column;
color: white;
}
.layer-name {
font-size: 1.5em;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.layer-function {
font-size: 0.9em;
opacity: 0.9;
}
.layer-markers {
display: flex;
gap: 8px;
}
.marker {
background: rgba(255, 255, 255, 0.3);
padding: 5px 10px;
border-radius: 12px;
font-size: 0.85em;
font-weight: bold;
color: white;
}
/* Panneau droit - BNS */
.right-panel {
background: #f8f9fa;
border-radius: 15px;
padding: 25px;
}
.bns-item {
margin-bottom: 20px;
padding: 15px;
background: white;
border-radius: 10px;
}
.bns-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
}
.bns-protein {
font-weight: bold;
font-size: 1.1em;
color: #2c3e50;
}
.bns-value {
background: #3498db;
color: white;
padding: 3px 10px;
border-radius: 10px;
font-size: 0.9em;
}
.bns-description {
color: #555;
font-size: 0.9em;
line-height: 1.5;
}
/* Section détaillée en bas */
.detailed-section {
margin-top: 40px;
padding-top: 40px;
border-top: 3px solid #e0e6ed;
}
.tabs {
display: flex;
gap: 10px;
margin-bottom: 30px;
border-bottom: 2px solid #e0e6ed;
}
.tab {
padding: 12px 25px;
background: none;
border: none;
color: #7f8c8d;
cursor: pointer;
font-size: 1em;
font-weight: 600;
transition: all 0.3s ease;
border-bottom: 3px solid transparent;
margin-bottom: -2px;
}
.tab:hover {
color: #3498db;
}
.tab.active {
color: #2980b9;
border-bottom-color: #3498db;
}
.tab-content {
display: none;
animation: fadeIn 0.5s ease;
}
.tab-content.active {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.content-card {
background: #f8f9fa;
border-radius: 15px;
padding: 30px;
margin-bottom: 20px;
}
.content-card h3 {
color: #2980b9;
margin-bottom: 20px;
font-size: 1.3em;
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.info-box {
background: white;
padding: 20px;
border-radius: 10px;
border-left: 4px solid #3498db;
}
.info-box h4 {
color: #2c3e50;
margin-bottom: 10px;
font-size: 1.1em;
}
.info-box ul {
list-style: none;
padding: 0;
}
.info-box li {
padding: 5px 0;
color: #555;
position: relative;
padding-left: 20px;
}
.info-box li:before {
content: '→';
position: absolute;
left: 0;
color: #3498db;
}
/* Tableau de correspondances */
.correspondence-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
.correspondence-table th {
background: #3498db;
color: white;
padding: 12px;
text-align: left;
}
.correspondence-table td {
padding: 12px;
border-bottom: 1px solid #e0e6ed;
}
.correspondence-table tr:hover {
background: #f8f9fa;
}
/* Points importants */
.important-note {
background: #fff9c4;
border-left: 4px solid #f39c12;
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}
.important-note h4 {
color: #f39c12;
margin-bottom: 10px;
font-size: 1.1em;
}
.formula {
background: #e8f4f8;
padding: 15px;
border-radius: 10px;
font-family: 'Courier New', monospace;
margin: 15px 0;
text-align: center;
font-size: 1.1em;
color: #2c3e50;
}
/* Hover info */
.layer-hover-info {
position: absolute;
left: 105%;
top: 50%;
transform: translateY(-50%);
width: 250px;
background: white;
border: 2px solid #3498db;
border-radius: 10px;
padding: 15px;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 100;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.layer:hover .layer-hover-info {
opacity: 1;
visibility: visible;
}
.hover-title {
font-weight: bold;
color: #2c3e50;
margin-bottom: 10px;
font-size: 1.1em;
}
.hover-content {
color: #555;
font-size: 0.9em;
line-height: 1.5;
}
</style>
<div class="container">
<!-- Header -->
<div class="header">
<h1 class="main-title">Les Quatre Niveaux Énergétiques et le BNS</h1>
<p class="subtitle">Correspondances entre Yang-Qi-Xue-Yin et les Marqueurs Biologiques</p>
<p class="author">Selon l'enseignement du Dr Jean-Yves Henry - Médecine Intégrée</p>
</div>
<!-- Contenu principal -->
<div class="content-grid">
<!-- Panneau gauche - Théorie -->
<div class="left-panel">
<h2 class="section-title">📖 Principes Fondamentaux</h2>
<div class="theory-item">
<div class="theory-title">Hiérarchie des 4 Niveaux</div>
<div class="theory-content">
<strong>YANG → QI → XUE → YIN</strong><br>
De la fonction pure à la structure matérielle, chaque niveau représente un degré de densification de l'énergie. Le Yang mobilise le Qi, le Qi mobilise le Xue, le Xue nourrit le Yin.
</div>
</div>
<div class="theory-item">
<div class="theory-title">Règle de l'Inversion</div>
<div class="theory-content">
"La cause d'un trouble est de nature inverse à sa manifestation"<br>
• Problème de sang → cause énergétique<br>
• Sécheresse → cause inflammatoire<br>
• Symptôme Yang → organe Yin en déficit
</div>
</div>
<div class="theory-item">
<div class="theory-title">Le BNS : Biologie Fonctionnelle</div>
<div class="theory-content">
Le Bilan Nutrition-Santé explore les régulations via l'analyse des protéines sériques. Il évalue à la fois les structures (protidogramme) et les fonctions (tests de réactivité).
</div>
</div>
<div class="theory-item">
<div class="theory-title">Coefficient d'Homéostasie</div>
<div class="theory-content">
<strong>△ > 0.8</strong> : Équilibre optimal<br>
<strong>△ 0.5-0.8</strong> : Phase d'adaptation<br>
<strong>△ < 0.5</strong> : Dissociation (risque lésionnel)
</div>
</div>
</div>
<!-- Centre - Sandwich -->
<div class="center-panel">
<h2 class="sandwich-title">Architecture des 4 Couches</h2>
<div class="sandwich">
<!-- YANG -->
<div class="layer yang">
<div class="layer-left">
<div class="layer-name">YANG</div>
<div class="layer-function">Fonction</div>
</div>
<div class="layer-markers">
<span class="marker">β↑</span>
<span class="marker">Mn</span>
<span class="marker">Mg</span>
</div>
<div class="layer-hover-info">
<div class="hover-title">YANG - Fonction Pure</div>
<div class="hover-content">
<strong>Protège, réchauffe, mobilise</strong><br>
Plénitude : Hyperfonction hépatique<br>
Vide : Frilosité, hypothyroïdie<br>
Points : 4DM, 23V, 4RM
</div>
</div>
</div>
<!-- QI -->
<div class="layer qi">
<div class="layer-left">
<div class="layer-name">QI</div>
<div class="layer-function">Énergie</div>
</div>
<div class="layer-markers">
<span class="marker">α2</span>
<span class="marker">K</span>
<span class="marker">NH4</span>
</div>
<div class="layer-hover-info">
<div class="hover-title">QI - Énergie Vitale</div>
<div class="hover-content">
<strong>Source du mouvement</strong><br>
Stagnation : Douleurs, oppression<br>
Insuffisance : Fatigue intense<br>
Points : 36E, 6RM, 12RM
</div>
</div>
</div>
<!-- XUE -->
<div class="layer xue">
<div class="layer-left">
<div class="layer-name">XUE</div>
<div class="layer-function">Sang & Liquides</div>
</div>
<div class="layer-markers">
<span class="marker">α1</span>
<span class="marker">Fe</span>
<span class="marker">Cu</span>
</div>
<div class="layer-hover-info">
<div class="hover-title">XUE - Sang et Liquides</div>
<div class="hover-content">
<strong>Nourrit et humidifie</strong><br>
Chaleur : Inflammation aiguë<br>
Vide : Anémie, ferritine basse<br>
Points : 10Rt, 6Rt, 17V
</div>
</div>
</div>
<!-- YIN -->
<div class="layer yin">
<div class="layer-left">
<div class="layer-name">YIN</div>
<div class="layer-function">Structure</div>
</div>
<div class="layer-markers">
<span class="marker">Alb</span>
<span class="marker">Au</span>
<span class="marker">Ag</span>
</div>
<div class="layer-hover-info">
<div class="hover-title">YIN - Structure Matérielle</div>
<div class="hover-content">
<strong>Base matérielle du Yang</strong><br>
Glaires : Humidité, œdèmes<br>
Vide : Sécheresse tissulaire<br>
Points : 3Rn, 6Rt, 7P
</div>
</div>
</div>
</div>
</div>
<!-- Panneau droit - BNS -->
<div class="right-panel">
<h2 class="section-title">🔬 Protidogramme BNS</h2>
<div class="bns-item">
<div class="bns-header">
<span class="bns-protein">ALBUMINES</span>
<span class="bns-value">YIN</span>
</div>
<div class="bns-description">
Pool d'acides aminés. Base structurelle.<br>
↑ Dysneurotonie | ↓ Lésions tissulaires
</div>
</div>
<div class="bns-item">
<div class="bns-header">
<span class="bns-protein">ALPHA 1 (α1)</span>
<span class="bns-value" style="background: #e74c3c;">XUE</span>
</div>
<div class="bns-description">
Sang disponible. Marqueur inflammatoire.<br>
↑ Inflammation aiguë | ↓ Anémie, hypotension
</div>
</div>
<div class="bns-item">
<div class="bns-header">
<span class="bns-protein">ALPHA 2 (α2)</span>
<span class="bns-value" style="background: #95a5a6;">QI</span>
</div>
<div class="bns-description">
Énergie disponible. Orosomucoïde.<br>
↑ Inflammation sub-aiguë | ↓ Fatigue intense
</div>
</div>
<div class="bns-item">
<div class="bns-header">
<span class="bns-protein">BÊTA (β)</span>
<span class="bns-value" style="background: #27ae60;">YANG</span>
</div>
<div class="bns-description">
Fonctions hépatiques (60% biosynthèse).<br>
↑ Engorgement hépatique | ↓ Dépression
</div>
</div>
<div class="bns-item">
<div class="bns-header">
<span class="bns-protein">GAMMA (γ)</span>
<span class="bns-value" style="background: #9b59b6;">Immunité</span>
</div>
<div class="bns-description">
Anticorps. Système lymphoïde.<br>
↑ Infections chroniques | ↓ Déficit immunitaire
</div>
</div>
</div>
</div>
<!-- Section détaillée -->
<div class="detailed-section">
<div class="tabs">
<button class="tab active" onclick="showTab('clinical')">Applications Cliniques</button>
<button class="tab" onclick="showTab('markers')">Marqueurs BNS Détaillés</button>
<button class="tab" onclick="showTab('pathology')">États Pathologiques</button>
<button class="tab" onclick="showTab('therapy')">Stratégies Thérapeutiques</button>
<button class="tab" onclick="showTab('euglobulins')">Euglobulines & Stress</button>
</div>
<!-- Tab 1: Applications Cliniques -->
<div class="tab-content active" id="clinical">
<div class="content-card">
<h3>Diagnostic Différentiel par Niveau</h3>
<div class="info-grid">
<div class="info-box">
<h4>YANG - Problèmes Fonctionnels</h4>
<ul>
<li>Frilosité améliorée par l'exercice</li>
<li>Dérouillage matinal nécessaire</li>
<li>Insuffisance de Yang du Foie</li>
<li>Bêta globulines perturbées</li>
<li>TSH, T3, T4 anormales</li>
</ul>
</div>
<div class="info-box">
<h4>QI - Problèmes Énergétiques</h4>
<ul>
<li>Fatigue généralisée</li>
<li>Essoufflement à l'effort</li>
<li>Pieds et mains froids</li>
<li>Alpha2 globulines basses</li>
<li>Déficit en vitamines B</li>
</ul>
</div>
<div class="info-box">
<h4>XUE - Problèmes Sanguins</h4>
<ul>
<li>Anémie (ferritine < 30)</li>
<li>Sécheresse des muqueuses</li>
<li>Irritabilité émotionnelle</li>
<li>Alpha1 globulines élevées</li>
<li>Inflammation chronique</li>
</ul>
</div>
<div class="info-box">
<h4>YIN - Problèmes Structurels</h4>
<ul>
<li>Lésions organiques</li>
<li>Ostéoporose</li>
<li>Vieillissement prématuré</li>
<li>Albumines basses</li>
<li>Densité osseuse réduite</li>
</ul>
</div>
</div>
</div>
<div class="important-note">
<h4>💡 Point Clé du Dr Henry</h4>
<p>Les distinctions énergétiques selon les remèdes homéopathiques :<br>
• <strong>SEPIA</strong> : s'agite par vide de SANG (Xue)<br>
• <strong>ARSENICUM</strong> : s'agite par vide de QI (énergie)<br>
• <strong>PHOSPHORUS</strong> : s'épuise par vide de WEI QI (Qi défensif)<br>
• <strong>NATRUM MUR</strong> : se dessèche par vide de JOIE<br>
• <strong>CALCAREA</strong> : se ralentit par vide de YANG</p>
</div>
</div>
<!-- Tab 2: Marqueurs BNS -->
<div class="tab-content" id="markers">
<div class="content-card">
<h3>Correspondances Biologiques Précises</h3>
<table class="correspondence-table">
<thead>
<tr>
<th>Niveau</th>
<th>Protéines BNS</th>
<th>Tests Réactivité</th>
<th>Signification Clinique</th>
</tr>
</thead>
<tbody>
<tr style="background: rgba(46, 204, 113, 0.1);">
<td><strong>YANG</strong></td>
<td>Bêta globulines</td>
<td>Mn (Manganèse)<br>Mg (Magnésium)<br>Ca (Calcium)</td>
<td>Fonctions hépatiques<br>Métabolisme des graisses<br>Cholestérol total</td>
</tr>
<tr style="background: rgba(149, 165, 166, 0.1);">
<td><strong>QI</strong></td>
<td>Alpha2 globulines</td>
<td>K (Potassium)<br>NH4 (Ammonium)<br>I (Iode)</td>
<td>Énergie disponible<br>Équilibre acido-basique<br>Fonction thyroïdienne</td>
</tr>
<tr style="background: rgba(231, 76, 60, 0.1);">
<td><strong>XUE</strong></td>
<td>Alpha1 globulines</td>
<td>Fe (Fer)<br>Cu (Cuivre)<br>Zn (Zinc)</td>
<td>Sang disponible<br>Transport oxygène<br>Inflammation aiguë</td>
</tr>
<tr style="background: rgba(52, 152, 219, 0.1);">
<td><strong>YIN</strong></td>
<td>Albumines</td>
<td>Au (Or)<br>Ag (Argent)<br>C (Charbon)</td>
<td>Pool acides aminés<br>Structure tissulaire<br>Base métabolique</td>
</tr>
</tbody>
</table>
<div class="formula">
Coefficient d'Homéostasie = (Albumines + Gamma) / (Alpha1 + Alpha2 + Bêta)
</div>
</div>
</div>
<!-- Tab 3: États Pathologiques -->
<div class="tab-content" id="pathology">
<div class="content-card">
<h3>Identification des Déséquilibres</h3>
<div class="info-grid">
<div class="info-box">
<h4>Profil Hyperfloculant</h4>
<ul>
<li><strong>Hyper-lipidique :</strong> Mn↑ + S↑ + Mg↑</li>
<li>Syndrome métabolique</li>
<li>Cholestérol élevé</li>
<li>Engorgement hépatique</li>
<li>Solution : Drainage hépatique</li>
</ul>
</div>
<div class="info-box">
<h4>Profil Hypofloculant</h4>
<ul>
<li><strong>Catabolisme dominant</strong></li>
<li>Dénutrition</li>
<li>Tuberculinisme</li>
<li>Post-chimiothérapie</li>
<li>Solution : Reconstruction tissulaire</li>
</ul>
</div>
<div class="info-box">
<h4>Marqueurs de Cancer</h4>
<ul>
<li>Cu↑ + Alpha1↑</li>
<li>Zn↑ + Germanium↑</li>
<li>Fer↑ + Bêta↓</li>
<li>Surveillance rapprochée</li>
<li>Exploration complémentaire</li>
</ul>
</div>
<div class="info-box">
<h4>Auto-immunité</h4>
<ul>
<li>Iode↑ + Zinc↑</li>
<li>Intolérance alimentaire possible</li>
<li>Bêta↓ (complément consommé)</li>
<li>Gamma↑ (anticorps élevés)</li>
<li>Solution : Immunomodulation</li>
</ul>
</div>
</div>
</div>
<div class="important-note">
<h4>⚠️ Attention</h4>
<p>Le BNS ne remplace pas les examens conventionnels. C'est un diagnostic fonctionnel d'adaptation, complémentaire aux analyses classiques (NFS, bilan hépatique, imagerie).</p>
</div>
</div>
<!-- Tab 4: Stratégies Thérapeutiques -->
<div class="tab-content" id="therapy">
<div class="content-card">
<h3>Approches Thérapeutiques par Niveau</h3>
<div class="info-grid">
<div class="info-box" style="border-left-color: #27ae60;">
<h4>YANG - Traitement Fonctionnel</h4>
<ul>
<li><strong>Acupuncture :</strong> 4DM, 23V, 4RM</li>
<li><strong>Moxibustion</strong> sur points Yang</li>
<li><strong>Phyto :</strong> Gingembre, Cannelle</li>
<li><strong>Homéo :</strong> Sulfur (hautes dilutions)</li>
<li><strong>Nutrition :</strong> Aliments chauds</li>
</ul>
</div>
<div class="info-box" style="border-left-color: #95a5a6;">
<h4>QI - Traitement Énergétique</h4>
<ul>
<li><strong>Qi Gong</strong> et Tai Chi</li>
<li><strong>Points :</strong> 36E, 6RM, 12RM</li>
<li><strong>Adaptogènes :</strong> Ginseng, Rhodiola</li>
<li><strong>Homéo :</strong> Arsenicum album</li>
<li><strong>CoQ10</strong> + Vitamines B</li>
</ul>
</div>
<div class="info-box" style="border-left-color: #e74c3c;">
<h4>XUE - Traitement Sanguin</h4>
<ul>
<li><strong>Points :</strong> 10Rt, 6Rt, 17V</li>
<li><strong>Supplémentation :</strong> Fer + B12</li>
<li><strong>Phyto :</strong> Dong Quai, Spiruline</li>
<li><strong>Homéo :</strong> Sepia (moyennes dilutions)</li>
<li><strong>Bouillons d'os</strong>, légumes verts</li>
</ul>
</div>
<div class="info-box" style="border-left-color: #3498db;">
<h4>YIN - Traitement Structurel</h4>
<ul>
<li><strong>Points :</strong> 3Rn, 6Rt, 7P</li>
<li><strong>Minéraux :</strong> Ca, Mg, Zn</li>
<li><strong>Collagène</strong> et oméga-3</li>
<li><strong>Homéo :</strong> Calcarea carb (basses dilutions)</li>
<li><strong>Aliments Yin :</strong> Graines, algues</li>
</ul>
</div>
</div>
</div>
<div class="formula">
Plénitude → Hautes dilutions (>12CH) + Dispersion<br>
Insuffisance → Moyennes dilutions (5-9CH) + Tonification<br>
Vide profond → Nosodes + Merveilleux vaisseaux
</div>
</div>
<!-- Tab 5: Euglobulines -->
<div class="tab-content" id="euglobulins">
<div class="content-card">
<h3>Euglobulines et Contraintes Externes</h3>
<table class="correspondence-table">
<thead>
<tr>
<th>Euglobuline</th>
<th>État Élevé ↑</th>
<th>État Bas ↓</th>
<th>Signification MTC</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Eu-Alpha</strong></td>
<td>FEU<br>Risque vasculaire<br>Irradiation</td>
<td>FROID<br>Post-traumatique<br>Ralentissement</td>
<td>Régulation thermique<br>Protection Yang</td>
</tr>
<tr>
<td><strong>Eu-Bêta</strong></td>
<td>VENT<br>Anxiété, soucis<br>Agitation mentale</td>
<td>CHALEUR-STAGNATION<br>Infections<br>Inflammations</td>
<td>Circulation du Qi<br>État émotionnel</td>
</tr>
<tr>
<td><strong>Eu-Gamma</strong></td>
<td>HUMIDITÉ<br>Œdèmes<br>Glaires (Tan)</td>
<td>SÉCHERESSE<br>Douleurs tissulaires<br>Arthralgies</td>
<td>Gestion des liquides<br>Lubrification tissulaire</td>
</tr>
</tbody>
</table>
<div class="important-note">
<h4>🔍 Stress Oxydatif</h4>
<p>Les Euglobulines reflètent le niveau de stress oxydatif :<br>
• <strong>Hyperfloculant</strong> = Humidité (intoxication)<br>
• <strong>Hypofloculant</strong> = Sécheresse (risque vasculaire)<br>
• <strong>Solution :</strong> Antioxydants + Oméga-3 + Spiruline</p>
</div>
</div>
</div>
</div>
</div>
<script>
// Fonction pour changer d'onglet
function showTab(tabName) {
// Masquer tous les contenus
const contents = document.querySelectorAll('.tab-content');
contents.forEach(content => {
content.classList.remove('active');
});
// Désactiver tous les onglets
const tabs = document.querySelectorAll('.tab');
tabs.forEach(tab => {
tab.classList.remove('active');
});
// Afficher le contenu sélectionné
document.getElementById(tabName).classList.add('active');
// Activer l'onglet cliqué
event.target.classList.add('active');
}
// Animation au survol des couches
const layers = document.querySelectorAll('.layer');
layers.forEach(layer => {
layer.addEventListener('mouseenter', function() {
// Réduire l'opacité des autres couches
layers.forEach(l => {
if (l !== layer) {
l.style.opacity = '0.7';
}
});
});
layer.addEventListener('mouseleave', function() {
// Restaurer l'opacité
layers.forEach(l => {
l.style.opacity = '1';
});
});
});
// Animation d'entrée au chargement
window.addEventListener('load', function() {
layers.forEach((layer, index) => {
layer.style.opacity = '0';
layer.style.transform = 'translateX(-50px)';
setTimeout(() => {
layer.style.transition = 'all 0.8s ease';
layer.style.opacity = '1';
layer.style.transform = 'translateX(0)';
}, index * 150);
});
});
</script>