Programmes – MP3 – Bons Cadeaux
:root {
–color-primary: #2c5f4f;
–color-secondary: #8b7355;
–color-accent: #d4a574;
–color-light: #f8f6f3;
–color-dark: #1a1a1a;
–color-gray: #6b6b6b;
–color-white: #ffffff;
–font-display: ‘Cormorant Garamond’, serif;
–font-body: ‘Lato’, sans-serif;
–shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
–shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(–font-body);
color: var(–color-dark);
background: var(–color-light);
line-height: 1.7;
overflow-x: hidden;
}
.hero {
background: linear-gradient(135deg, var(–color-primary) 0%, var(–color-secondary) 100%);
color: var(–color-white);
padding: 100px 30px 80px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: »;
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
animation: rotate 25s linear infinite;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.hero-content {
position: relative;
z-index: 1;
max-width: 900px;
margin: 0 auto;
animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-title {
font-family: var(–font-display);
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 300;
margin-bottom: 20px;
letter-spacing: 1px;
}
.hero-subtitle {
font-size: clamp(1.1rem, 2vw, 1.3rem);
font-weight: 300;
opacity: 0.95;
}
.decorative-line {
width: 80px;
height: 2px;
background: var(–color-white);
margin: 25px auto;
opacity: 0.7;
position: relative;
}
.decorative-line::before,
.decorative-line::after {
content: »;
position: absolute;
width: 6px;
height: 6px;
background: var(–color-white);
border-radius: 50%;
top: -2px;
opacity: 0.7;
}
.decorative-line::before {
left: -12px;
}
.decorative-line::after {
right: -12px;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 30px;
}
.section {
padding: 80px 0;
}
.section-header {
text-align: center;
margin-bottom: 50px;
}
.section-title {
font-family: var(–font-display);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 400;
color: var(–color-primary);
margin-bottom: 15px;
letter-spacing: 0.5px;
}
.section-subtitle {
font-size: 1.1rem;
color: var(–color-gray);
font-weight: 300;
}
.category-tabs {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 50px;
flex-wrap: wrap;
}
.category-tab {
padding: 12px 28px;
border: 2px solid var(–color-primary);
background: transparent;
color: var(–color-primary);
border-radius: 50px;
font-weight: 600;
font-size: 0.95rem;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.category-tab:hover,
.category-tab.active {
background: var(–color-primary);
color: var(–color-white);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(44,95,79,0.3);
}
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 35px;
margin-bottom: 50px;
}
.product-card {
background: var(–color-white);
border-radius: 12px;
overflow: hidden;
box-shadow: var(–shadow-soft);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
position: relative;
}
.product-card:hover {
transform: translateY(-8px);
box-shadow: var(–shadow-medium);
}
.product-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(–color-accent);
color: var(–color-white);
padding: 6px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 700;
z-index: 10;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.product-image {
width: 100%;
height: 280px;
object-fit: contain;
background: #f8f6f3;
padding: 20px;
}
.product-body {
padding: 25px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.product-title {
font-family: var(–font-display);
font-size: 1.5rem;
font-weight: 600;
color: var(–color-primary);
margin-bottom: 15px;
line-height: 1.3;
}
.product-rating {
color: var(–color-accent);
font-size: 1.1rem;
margin-bottom: 15px;
}
.product-price {
font-size: 2rem;
font-weight: 700;
color: var(–color-primary);
margin-top: auto;
margin-bottom: 20px;
}
.product-price-old {
font-size: 1.2rem;
color: var(–color-gray);
text-decoration: line-through;
margin-right: 10px;
font-weight: 400;
}
.btn-add-cart {
background: var(–color-primary);
color: var(–color-white);
padding: 14px 28px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s ease;
display: inline-block;
text-align: center;
border: none;
cursor: pointer;
}
.btn-add-cart:hover {
background: var(–color-secondary);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(44,95,79,0.3);
}
.btn-secondary {
background: transparent;
color: var(–color-primary);
border: 2px solid var(–color-primary);
}
.btn-secondary:hover {
background: var(–color-primary);
color: var(–color-white);
}
.section-white {
background: var(–color-white);
}
.cta-section {
background: linear-gradient(135deg, var(–color-primary) 0%, var(–color-secondary) 100%);
color: var(–color-white);
padding: 80px 30px;
text-align: center;
}
.cta-title {
font-family: var(–font-display);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 400;
margin-bottom: 20px;
letter-spacing: 0.5px;
}
.cta-text {
font-size: 1.15rem;
opacity: 0.95;
margin-bottom: 35px;
line-height: 1.7;
}
.btn-cta {
display: inline-block;
background: var(–color-white);
color: var(–color-primary);
padding: 16px 40px;
border-radius: 6px;
text-decoration: none;
font-weight: 700;
font-size: 1.05rem;
transition: all 0.3s ease;
}
.btn-cta:hover {
background: var(–color-accent);
color: var(–color-white);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
.products-grid {
grid-template-columns: 1fr;
}
.category-tabs {
flex-direction: column;
align-items: center;
}
.category-tab {
width: 100%;
max-width: 300px;
text-align: center;
}
}
.category-section {
margin-bottom: 80px;
}
.divider-line {
width: 100px;
height: 3px;
background: var(–color-accent);
margin: 25px auto;
}
Programmes – MP3 – Bons Cadeaux
Découvrez tous mes accompagnements et ressources pour votre bien-être mental
Programmes Sportifs
Des accompagnements sur-mesure pour votre performance mentale

Programme DÉCOUVERTE
170,00 €
Voir les détails
⭐ POPULAIRE

Programme COMPÉTITEUR
350,00 €
Voir les détails

Programme EXCELLENCE SPORTIVE
720,00 €
Voir les détails

Programme PERFORMANCE ÉLITE
1 200,00 €
Voir les détails

Programme DIAGNOSTIC & ACTION RAPIDE
340,00 €
Voir les détails

Programme CONFIANCE POST-BLESSURE
350,00 €
Voir les détails

Programme PERFORMANCE J-7
170,00 €
Voir les détails
Programmes Bien-être & Hypnose
Pour retrouver sérénité et équilibre

Programme SOMMEIL & SÉRÉNITÉ DURABLE
350,00 €
Voir les détails

Programme GESTION DU STRESS & ANXIÉTÉ
350,00 €
Voir les détails

Programme RÉCUPÉRATION OPTIMALE
285,00 €
Voir les détails
MP3 & Ressources Téléchargeables
Des outils audio pour pratiquer à votre rythme
PROMO

SOMMEIL PROFOND : HYPNOSE & PRÉPARATION MENTALE
Le programme clé en main pour retrouver un sommeil naturel et réparateur
79,00 €
59,00 €
Voir les détails
PROMO

Voyage vers le Sommeil Profond
15,90 €
9,90 €
Voir les détails

Transformez le stress en compétition en énergie positive grâce à l’ancrage
⭐⭐⭐⭐⭐ 5.00
15,90 €
Voir les détails
PROMO

L’île des rêves calmes
⭐⭐⭐⭐⭐ 5.00
9,90 €
8,90 €
Voir les détails
PROMO

Plongée dans la Sérénité : Séance d’Hypno-Relaxation Profonde
⭐⭐⭐⭐⭐ 5.00
11,90 €
9,90 €
Voir les détails
GRATUIT

Relaxation pour Enfant offerte à télécharger
⭐⭐⭐⭐⭐ 5.00
GRATUIT
Télécharger
Besoin de Conseils pour Choisir ?
Je suis là pour vous guider vers l’accompagnement le plus adapté à vos besoins.
📞 06.15.36.04.05 • ✉️ <a href="/cdn-cgi/l/email-protection" data-cfemail="7e1d11100a1f1d0a3e
Affichage de 1–16 sur 17 résultatsTrié du plus récent au plus ancien
-

Programme complet d’Hypnose et de Préparation Mentale pour un Sommeil Profond et Réparateur
Lire la suite -

Programme COMPÉTITEUR
350,00 € Ajouter au panier -

Programme EXCELLENCE SPORTIVE
720,00 € Ajouter au panier -

Programme PERFORMANCE ÉLITE
1200,00 € Ajouter au panier -

Programme DIAGNOSTIC & ACTION RAPIDE
340,00 € Ajouter au panier -

Programme CONFIANCE POST-BLESSURE
350,00 € Ajouter au panier -

Programme PERFORMANCE J-7
170,00 € Ajouter au panier -

Programme SOMMEIL & SÉRÉNITÉ DURABLE
350,00 € Ajouter au panier -

Programme GESTION DU STRESS & ANXIÉTÉ
350,00 € Ajouter au panier -

Programme RÉCUPÉRATION OPTIMALE
285,00 € Ajouter au panier -

Programme DÉCOUVERTE
170,00 € Ajouter au panier -

SOMMEIL PROFOND : HYPNOSE & PREPARATION MENTALE Le programme clé en main pour retrouver un sommeil naturel et réparateur
79,00 € Ajouter au panier -
Promo !

Voyage vers le Sommeil Profond
Le prix initial était : 15,90 €.9,90 €Le prix actuel est : 9,90 €. Ajouter au panier -

Transformez le stress en compétition en énergie positive grâce à l’ancrage
15,90 € Ajouter au panier -
Promo !

l’ile des rêves calmes
Le prix initial était : 9,90 €.8,90 €Le prix actuel est : 8,90 €. Ajouter au panier -
Promo !

Plongée dans la Sérénité : Séance d’Hypno-Relaxation Profonde à télécharger
Le prix initial était : 11,90 €.9,90 €Le prix actuel est : 9,90 €. Ajouter au panier