/* ============================================
   VARIABLES — change ici pour tout ajuster
   ============================================ */
:root {
  --couleur-texte-fonce: #333;
  --couleur-marron: #4a3428;
  --couleur-marron-clair: #6b4a35;
  --couleur-beige: #ddc0b0;
  --couleur-beige-clair: #ecd3c4;
  --couleur-bouton: #c98f72;
  --couleur-bouton-hover: #b57a5e;
  --couleur-noir-logo: black;

  --police-titre: 'Cormorant Garamond light', cursive;
  --police-texte: 'Cormorant Garamond semi-bold', cursive;
  --police-acceuille: 'Mrs Saint Delafield', cursive;
}

/* ============================================
   RESET DE BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--police-texte);
  color: #222;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  background-color: transparent;
  /* La zone à droite est réservée aux boutons Bon cadeau et Réservations. */
  padding: 1.5rem 180px 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;      /* ça suffit pour centrer, peu importe la taille d'écran */
  justify-content: flex-start;
  width: 100%;               /* s'assure que le header prend toute la largeur disponible */
  min-height: 110px;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* Boutons texte du menu (tous identiques) */
.btn-accueil,
.btn-qui-suis-je,
.btn-renata-franca,
.btn-soins-corps,
.btn-soins-visage,
.btn-tarifs,
.btn-blog {
  border: none;
  background-color: transparent;
  font-family: var(--police-titre);
  font-size: 2rem;
  color: var(--couleur-noir-logo);
  text-decoration: none;
  cursor: pointer;
}

/* ============================================
   MENUS DEROULANTS (Soins Corps / Soins Visage)
   ============================================ */
.dropdown {
  position: relative;
  display: inline-block;
}

.menu-soins-corps,
.menu-soins-visage {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 8px;
  min-width: 260px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown:hover .menu-soins-corps,
.dropdown:hover .menu-soins-visage {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Liens à l'intérieur des menus déroulants */
.lien-soin-corps {
  display: block;
  padding: 12px 16px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
}

.lien-soin-corps:hover {
  background-color: #f4f4f4;
}

/* ============================================
   BOUTONS "Bon cadeau" / "Réservations"
   ============================================ */
.btn-bon-cadeau,
.btn-reservations {
  display: inline-block;
  background-color: var(--couleur-bouton);
  color: white;
  font-family: var(--police-texte);
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
}

.btn-bon-cadeau:hover,
.btn-reservations:hover {
  background-color: var(--couleur-bouton-hover);
}

.btn-bon-cadeau {
  position: absolute;
  top: 20px;
  right: 20px;
}

.btn-reservations {
  position: absolute;
  top: 60px;
  right: 15px;
}

.mobile-menu-toggle,
.mobile-brand {
  display: none;
}

@media (max-width: 700px) {
  .header {
    min-height: 275px;
    padding: 1rem;
    position: relative;
  }

  .nav {
    background: #fffdfb;
    box-shadow: 0 8px 24px rgba(55, 35, 27, .18);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 1rem;
    margin: 0;
    padding: .75rem 0;
    position: absolute;
    right: 1rem;
    top: 5.5rem;
    z-index: 30;
  }

  .header.navigation-ouverte .nav { display: flex; }

  .btn-accueil,
  .btn-qui-suis-je,
  .btn-renata-franca,
  .btn-soins-corps,
  .btn-soins-visage,
  .btn-tarifs,
  .btn-blog {
    font-size: 1.45rem;
    padding: .55rem 1.25rem;
    width: 100%;
  }

  .mobile-menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: grid;
    gap: 6px;
    left: 1.2rem;
    padding: .5rem;
    position: absolute;
    top: 1.75rem;
    z-index: 35;
  }

  .mobile-menu-toggle span {
    background: #222;
    border-radius: 4px;
    display: block;
    height: 4px;
    width: 42px;
  }

  .mobile-brand {
    color: #654036;
    display: block;
    font-family: var(--police-acceuille);
    font-size: 2.2rem;
    left: 50%;
    line-height: .9;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: 1.55rem;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .mobile-brand small {
    display: block;
    font-family: var(--police-texte);
    font-size: .55rem;
    margin-top: .45rem;
  }

  .dropdown { width: 100%; }

  .dropdown > button { text-align: left; }

  .menu-soins-corps,
  .menu-soins-visage {
    box-shadow: none;
    display: none;
    opacity: 1;
    position: static;
    transform: none;
    visibility: visible;
    width: 100%;
  }

  .dropdown.menu-ouvert .menu-soins-corps,
  .dropdown.menu-ouvert .menu-soins-visage { display: block; }

  .lien-soin-corps,
  .lien-soin-visage { padding-left: 2.2rem; }

  .btn-bon-cadeau,
  .btn-reservations {
    font-size: 1.45rem;
    padding: .75rem .5rem;
    position: absolute;
    text-align: center;
    top: 11.8rem;
    width: calc(50% - 1.8rem);
  }

  .btn-bon-cadeau { left: 1.2rem; right: auto; }
  .btn-reservations { left: auto; right: 1.2rem; }
}

/* ============================================
   SECTION HERO (image de fond)
   ============================================ */
.hero {
  position: relative;
  height: 90vh;
  background-image: url("acceuille.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-contenu {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 3rem 4rem;
  text-align: center;
}

.hero-titre {
  font-family: var(--police-acceuille);
  font-size: 4rem;
  color: var(--couleur-marron-clair);
  margin-bottom: 1.5rem;
}

.hero-tel {
  font-family: var(--police-acceuille);
  font-size: 2.5rem;
  color: var(--couleur-texte-fonce);
  margin-bottom: 1rem;
}

.hero-adresse {
  font-family: var(--police-acceuille);
  font-size: 2rem;
  color: #555;
}

/* ============================================
   CITATION / TEXTES D'ACCUEIL
   ============================================ */
.citation {
  background-color: var(--couleur-beige);
  padding: 3rem 2rem;
  text-align: center;
}

.citation p {
  font-family: var(--police-texte);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--couleur-texte-fonce);
  max-width: 800px;
  margin: 0 auto;
}

.texte-accueil {
  padding: 2rem;
  text-align: center;
}

.texte-accueil p {
  font-family: var(--police-texte);
  font-size: 1.2rem;
  color: var(--couleur-texte-fonce);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   SECTION LES SOINS
   ============================================ */
.section-soins {
  background-color: var(--couleur-beige);
  padding: 4rem 2rem;
  text-align: center;
}

.titre-soins {
  font-family: var(--police-texte);
  font-size: 2.5rem;
  color: var(--couleur-marron-clair);
  margin-bottom: 3rem;
}

.grid-soins {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.soin {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  transition: transform 0.3s ease;
}

.soin:hover {
  transform: scale(1.1);
}

.soin-icone {
  width: 90px;
  height: 90px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.soin-icone img {
  width: 40px;
  height: 40px;
}

.soin-texte {
  font-family: var(--police-texte);
  font-weight: bold;
  color: var(--couleur-marron-clair);
  font-size: 1.1rem;
  text-align: center;
}

/* ============================================
   HORAIRES
   ============================================ */
.horaires {
  font-family: var(--police-texte);
  font-size: 1.5rem;
  color: var(--couleur-texte-fonce);
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

/* ============================================
   BOUTON RESERVER (centré, section basse)
   ============================================ */
.btn-reserver2 {
  display: block;
  width: fit-content;
  margin: 40px auto;
  background-color: #b98f76;
  color: white;
  font-family: var(--police-texte);
  font-size: 1.1rem;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
}

.btn-reserver2:hover {
  background-color: var(--couleur-bouton-hover);
}

/* ============================================
   SECTION CONTACT / FORMULAIRE
   ============================================ */
.section-contact {
  background-color: var(--couleur-beige-clair);
  padding: 4rem 2rem;
  text-align: center;
}

.titre-contact {
  font-family: var(--police-texte);
  font-size: 2.5rem;
  color: var(--couleur-marron);
  margin-bottom: 0.5rem;
}

.sous-titre-contact {
  font-family: var(--police-texte);
  font-size: 1.3rem;
  color: var(--couleur-marron-clair);
  margin-bottom: 2rem;
}

.formulaire {
  background-color: var(--couleur-beige);
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: left;
}

.ligne-formulaire {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.champ {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.champ-pleine-largeur {
  margin-bottom: 1.5rem;
}

.champ label {
  font-family: var(--police-texte);
  color: var(--couleur-marron);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.champ input,
.champ textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--couleur-marron);
  padding: 0.5rem 0;
  font-family: var(--police-texte);
  font-size: 1rem;
  color: var(--couleur-texte-fonce);
  outline: none;
  resize: none;
}

.btn-envoyer {
  display: block;
  width: fit-content;
  margin: 2rem auto 0 auto;
  background-color: white;
  color: var(--couleur-marron);
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: var(--police-texte);
  font-size: 1rem;
  cursor: pointer;
}

.btn-envoyer:hover {
  background-color: #f4f4f4;
}

/* ============================================
   CARTE (Google Maps)
   ============================================ */
.section-carte {
  width: 100%;
}

.section-carte iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--couleur-beige);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-qr {
  text-align: center;
  max-width: 150px;
}

.qr-image {
  width: 130px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.footer-qr p {
  font-family: var(--police-texte);
  color: var(--couleur-marron);
  font-size: 0.9rem;
}

.footer-contact {
  text-align: center;
  font-family: var(--police-texte);
  color: var(--couleur-marron);
}

.footer-titre {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-nom {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-adresse,
.footer-tel,
.footer-email {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-reseaux {
  text-align: center;
}

.icones-sociaux {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icones-sociaux img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.lien-mentions {
  font-family: var(--police-texte);
  color: var(--couleur-marron);
  text-decoration: underline;
  font-size: 0.95rem;
}

/* ============================================
   SECTION AVIS CLIENTS
   ============================================ */
.section-avis {
  padding: 4rem 2rem;
  text-align: center;
}

.titre-avis {
  font-family: var(--police-texte);
  font-size: 2.2rem;
  color: var(--couleur-texte-fonce);
  margin-bottom: 0.8rem;
}

.separateur {
  width: 40px;
  height: 2px;
  background-color: #999;
  margin: 0 auto 2rem auto;
}

.carousel-avis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.fleche {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--couleur-beige);
  cursor: pointer;
  transition: color 0.3s ease;
}

.fleche:hover {
  color: #888;
}

.avis-contenu {
  flex: 1;
}

.avis-texte {
  font-family: var(--police-texte);
  font-style: italic;
  font-size: 1.1rem;
  color: #7a6a5a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.avis-auteur {
  font-family: var(--police-texte);
  font-size: 1rem;
  color: #555;
}

.points-avis {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.point {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d9c3b5;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.point.actif {
  background-color: transparent;
  border: 1px solid #7a6a5a;
}

.bande-couleur {
  width: 100%;
  height: 80px;              /* ajuste la hauteur de la bande */
  background-color: #ecd3c4;  /* la couleur de la bande */
}
.texte-renata-franca {
  font-family: var(--police-texte);
  font-size: 1.2rem;
  color: var(--couleur-texte-fonce);
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-renata-franca {
  max-width: 300px;
  height: auto;
  margin-right: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
.image-renata-franca {
  display: block;       /* nécessaire pour que margin: auto fonctionne */
  margin: 0 auto;        /* centre horizontalement */
  width: 300px;          /* ajuste la taille souhaitée */
  height: auto;
}
.lien-soin-visage {
  display: block;
  padding: 12px 16px;
  color: #222;
  font-family: var(--police-texte);
  text-decoration: none;
  white-space: nowrap;
}

.lien-soin-visage:hover {
  background-color: #f4f4f4;
}
.btn-reservations,
.btn-reserve-le-soin {
  background-color: var(--couleur-bouton);
  color: white;
  font-family: var(--police-texte);
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
}

.btn-reserve-le-soin {
  display: block;
  width: fit-content;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 600;
  margin: 2.5rem auto 3.5rem;
  padding: .7rem 3.5rem;
}

.btn-reserve-le-soin:hover {
  background-color: var(--couleur-bouton-hover);
}
.btn-reserver-soin {
  display: block;
  width: fit-content;
  margin: 30px auto;
  background-color: #ecd3c4;
  color: #4a3428;
  font-family: var(--police-texte);
  font-size: 1rem;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
}

.btn-reserver-soin:hover {
  background-color: #ddc0b0;
}
.photo-relaxant-contre {
  width: 100%;
  height: auto;   /* garde les proportions, évite que l'image soit déformée */
  display: block;
}
.miracle-touch-fond {
  width: 100%;
  height: 400px;
  background-image: url("fond-miracle-touch.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;   /* centre horizontalement */
  align-items: center;       /* centre verticalement */
  text-align: center;
  image-rendering: auto;      /* améliore la qualité de l'image */
  taille-image: cover;          /* assure que l'image couvre toute la section */
  font-size: 1.5rem;            /* ajuste la taille du texte */
}
.texte-description {
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.texte-description p {
  font-family: var(--police-texte);
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.titre-bienfaits {
  font-family: var(--police-texte);
  font-size: 1.6rem;
  color: var(--couleur-marron-clair);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.liste-bienfaits {
  list-style: none;
  padding: 0;
}

.liste-bienfaits li {
  font-family: var(--police-texte);
  font-size: 1.05rem;
  color: #333;
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.5;
}

.liste-bienfaits li::before {
  content: "•";
  color: var(--couleur-bouton);
  font-size: 1.3rem;
  position: absolute;
  left: 0;
}

/* ============================================
   PAGE RELAXANT ENFANT
   ============================================ */
.page-relaxant-enfant {
  background: #faf7f3;
  color: #654036;
  font-family: var(--police-texte);
}

.enfant-hero {
  min-height: min(620px, 70vh);
  overflow: hidden;
  position: relative;
}

.enfant-hero::after {
  background: rgba(255, 250, 247, .42);
  content: '';
  inset: 0;
  position: absolute;
}

.enfant-hero > img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.enfant-hero-overlay {
  align-items: center;
  color: #633b31;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 2rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.enfant-hero h1 {
  font-size: clamp(3rem, 5.3vw, 5.8rem);
  font-weight: 500;
  letter-spacing: .015em;
  line-height: .92;
}

.enfant-age {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  margin-top: 1.3rem;
}

.enfant-duree {
  border-top: 1px solid rgba(99, 59, 49, .55);
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin-top: 1.8rem;
  padding-top: .75rem;
  width: min(420px, 85vw);
}

.enfant-contenu {
  margin: 0 auto;
  max-width: 1100px;
  padding: clamp(3.5rem, 8vw, 7rem) 2rem;
}

.enfant-introduction {
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.enfant-details {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(4rem, 9vw, 7rem);
}

.enfant-details h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.enfant-details ul {
  list-style: none;
  padding: 0;
}

.enfant-details li {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.32;
  margin-bottom: .75rem;
  padding-left: 1.25rem;
  position: relative;
}

.enfant-details li::before {
  color: #9c6b5d;
  content: '•';
  left: 0;
  position: absolute;
}

.enfant-contre-indications {
  border-left: 1px solid #d8b8b0;
  padding-left: 2.5rem;
}

.enfant-contre-indications h2 { text-transform: uppercase; }

.enfant-reserver {
  background: #dfc1c2;
  border-radius: 999px;
  color: #633b31;
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 600;
  margin: clamp(4rem, 8vw, 6rem) auto 0;
  padding: .7rem 3.2rem;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
  width: fit-content;
}

.enfant-reserver:hover,
.enfant-reserver:focus-visible {
  background: #cfa7a7;
  transform: translateY(-2px);
}

.enfant-footer {
  background: #ead9d4;
  color: #654036;
  font-size: 1.2rem;
  padding: 1.5rem;
  text-align: center;
}

/* Page Relaxant */
.page-relaxant {
  background: #faf9f7;
  color: #654036;
}

.relaxant-hero {
  height: min(620px, 68vh);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.relaxant-hero::after {
  background: rgba(255, 252, 248, .5);
  content: '';
  inset: 0;
  position: absolute;
}

.relaxant-hero img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  width: 100%;
}

.relaxant-hero-contenu {
  align-items: center;
  color: #633b31;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 2rem;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.relaxant-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
}

.relaxant-duree {
  border-top: 1px solid rgba(99, 59, 49, .55);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  margin-top: 1.6rem;
  padding-top: .7rem;
  width: min(370px, 82vw);
}

.relaxant-contenu {
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(3.8rem, 9vw, 7.5rem) 2rem;
}

.relaxant-introduction {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.48;
  margin: 0 auto;
  max-width: 850px;
  text-align: center;
}

.relaxant-bienfaits {
  margin: clamp(4rem, 9vw, 7rem) auto 0;
  max-width: 660px;
}

.relaxant-bienfaits h2,
.relaxant-contre-indications h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}

.relaxant-bienfaits ul,
.relaxant-contre-indications ul {
  list-style: none;
  padding: 0;
}

.relaxant-bienfaits li,
.relaxant-contre-indications li {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.35;
  margin-bottom: .75rem;
  padding-left: 1.3rem;
  position: relative;
}

.relaxant-bienfaits li::before,
.relaxant-contre-indications li::before {
  color: #765044;
  content: '•';
  left: 0;
  position: absolute;
}

.relaxant-contre-indications {
  border-top: 1px solid #e5d3cc;
  margin-top: clamp(4rem, 8vw, 6.5rem);
  padding-top: clamp(3rem, 6vw, 4rem);
}

.relaxant-contre-indications h2 {
  text-align: left;
  text-transform: uppercase;
}

.page-relaxant .btn-reserver-soin {
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 600;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding: .7rem 3.5rem;
}

/* Bannière de la page Tarifs */
.tarifs-banniere {
  height: min(560px, 64vh);
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.tarifs-banniere::after {
  background: rgba(255, 250, 247, .45);
  content: '';
  inset: 0;
  position: absolute;
}

.tarifs-banniere img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.tarifs-banniere-contenu {
  align-items: center;
  color: #633b31;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 2rem;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.tarifs-banniere h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.8rem);
  font-weight: 500;
  line-height: 1.05;
  max-width: 950px;
}

.tarifs-contenu {
  color: #654036;
  margin: 0 auto;
  max-width: 1100px;
  padding: clamp(3.5rem, 7vw, 6rem) 2rem;
}

.tarifs-contenu > h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 500;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  text-transform: uppercase;
}

.tarifs-grille {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tarif-carte,
.tarifs-combinaisons {
  border: 1px solid #dfc8c0;
  padding: 1.5rem;
}

.tarif-carte h2,
.tarifs-combinaisons h2 {
  border-bottom: 1px solid #dfc8c0;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
  padding-bottom: .7rem;
}

.tarif-carte ul,
.tarifs-combinaisons ul {
  list-style: none;
  padding: 0;
}

.tarif-carte li,
.tarifs-combinaisons li {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.35;
  margin-bottom: .65rem;
  padding-left: 1.25rem;
  position: relative;
}

.tarif-carte li::before,
.tarifs-combinaisons li::before {
  color: #765044;
  content: '•';
  left: 0;
  position: absolute;
}

/* Page Bon cadeau */
.page-bon-cadeau { color: #654036; }

.cadeau-fond {
  background-image: linear-gradient(rgba(255, 251, 247, .22), rgba(255, 251, 247, .22)), url("photo-bon-cadeaux.jpeg");
  background-position: center;
  background-size: cover;
  padding: clamp(3rem, 7vw, 6rem) 1.5rem;
}

.cadeau-formulaire {
  background: rgba(255, 251, 247, .84);
  margin: 0 auto;
  max-width: 620px;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.cadeau-formulaire h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 1.6rem;
  text-align: center;
}

.cadeau-introduction,
.cadeau-destinataire,
.cadeau-remerciement {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.45;
  text-align: center;
}

.cadeau-introduction { margin-bottom: 2rem; }
.cadeau-destinataire { margin: 2rem 0; }

.cadeau-champ {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.cadeau-champ label {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  margin-bottom: .45rem;
}

.cadeau-champ input,
.cadeau-champ textarea,
.cadeau-champ select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #815b4d;
  border-radius: 0;
  color: #654036;
  font-family: inherit;
  font-size: 1.1rem;
  outline: 0;
  padding: .55rem .3rem;
  width: 100%;
}

.cadeau-champ textarea {
  border: 1px solid rgba(129, 91, 77, .55);
  resize: vertical;
}

.cadeau-envoyer {
  background: #c98f72;
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 1.3rem;
  margin: 2.4rem auto 1rem;
  padding: .7rem 4rem;
  text-transform: uppercase;
}

.cadeau-envoyer:hover,
.cadeau-envoyer:focus-visible { background: #b57a5e; }

.cadeau-remerciement { text-decoration: underline; }

.tarifs-combinaisons {
  margin-top: 1.5rem;
}

.tarifs-combinaisons h2 { text-align: center; }

.tarifs-combinaisons-grille {
  display: grid;
  gap: 1.5rem 2.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 700px) {
  .tarifs-grille,
  .tarifs-combinaisons-grille { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .enfant-hero { min-height: 480px; }
  .enfant-hero > img { object-position: 59% center; }
  .enfant-details { grid-template-columns: 1fr; }

  .enfant-contre-indications {
    border-left: 0;
    border-top: 1px solid #d8b8b0;
    padding: 2.5rem 0 0;
  }
}
/* ============================================
   RESPONSIVE MOBILE
   ============================================ */

/* Sécurité globale anti-débordement horizontal */
html, body {
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {

  /* Annule le décalage qui casse tout sur mobile */
  .header {
    margin-left: 0;
    padding: 1rem;
    width: 100%;
  }

  /* Menu en colonne au lieu de côte à côte */
  .nav {
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
  }

  .btn-qui-suis-je,
  .btn-renata-franca,
  .btn-soins-corps,
  .btn-soins-visage,
  .btn-tarifs,
  .btn-accueil {
    font-size: 1.4rem;
  }

  /* Boutons Bon cadeau / Réservations : plus de position absolute qui déborde */
  .btn-bon-cadeau,
  .btn-reservations {
    position: static;
    display: inline-block;
    margin: 8px 6px;
  }

  /* Photo d'accueil pleine largeur, sans déborder */
  img[src="photo-acceuille.jpg"] {
    width: 100%;
    height: auto;
  }

  .hero-titre {
    font-size: 2.8rem;
  }

  .hero-tel {
    font-size: 1.8rem;
  }

  /* Les Soins : la grille se centre bien et les cercles passent en 2 colonnes propres */
  .section-soins {
    width: 100%;
    padding: 3rem 1rem;
  }

  .grid-soins {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 2rem 1rem;
    width: 100%;
  }

  .soin {
    width: 100%;
  }

  /* Formulaire en 1 colonne */
  .ligne-formulaire {
    flex-direction: column;
    gap: 1rem;
  }

  .formulaire {
    max-width: 100%;
    padding: 1.5rem;
  }

  /* Footer en colonne centrée */
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  /* Carte responsive */
  .section-carte iframe {
    height: 300px;
  }

  /* Avis clients : flèches plus proches du texte */
  .carousel-avis {
    gap: 0.5rem;
  }

  .avis-texte {
    font-size: 1rem;
  }
}
