/* ===== BASE ===== */

.navbar {
  transition: box-shadow 0.2s ease;
}

.navbar-brand {
  letter-spacing: 0.3px;
}


/* ===== NAVBAR SOPHIA ===== */

.sophia-navbar {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sophia-brand span {
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  color: #3a6f6a;
}

.sophia-menu .nav-link {
  color: #4a6b7a; 
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

/* ===== NAVBAR SOPHIA (stable + élégant) ===== */

.sophia-menu .nav-link{
  color:#555;
  font-weight:500;
  position:relative;
  padding: .6rem .85rem;
  transition: color .18s ease, transform .18s ease;
  white-space: nowrap;
}

/* ✅ Reserve la place du "bold" pour éviter le saut */
.sophia-menu .nav-link::before{
  content: attr(data-title);
  font-weight: 600;         /* largeur du texte en gras */
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
}

/* hover : pas de changement de font-weight -> pas de jump */
.sophia-menu .nav-link:hover{
  color:#3a6f6a;
  transform: translateY(-1px);
}

/* active : on met le gras ici si tu veux, mais sans jump grâce au ::before */
.sophia-menu .nav-link.active{
  color:#3a6f6a;
  font-weight:600;
}

/* underline : toujours présent, juste transparent si pas actif */
.sophia-menu .nav-link::after{
  content:"";
  position:absolute;
  left:18%;
  right:18%;
  bottom:6px;
  height:2px;
  border-radius:2px;
  background: transparent;
  transition: background .18s ease;
}

.sophia-menu .nav-link.active::after{
  background: linear-gradient(90deg,#6fc7b7,#f4c77a,#e58ca3);
}

/* Dropdown menu */
.dropdown-menu{
  border-radius: 16px;
  padding: 8px 0;
  min-width: 200px;
}


.sophia-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #6fc7b7, #f4c77a, #e58ca3);
}

.dropdown-item {
  font-weight: 500;
  color: #3a6f6a;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: rgba(111,199,183,0.15);
  color: #3a6f6a;
}

/* === NAVBAR STABLE (ANTI-SAUT) === */




/* éviter que le bold fasse bouger */
.sophia-nav-item .nav-link.active {
  font-weight: 600;
}



.sophia-nav-item .nav-link.active::after {
  background: linear-gradient(90deg, #6fc7b7, #f4c77a);
}

/* dropdown aligné */
.dropdown-menu {
  min-width: 180px;
  border-radius: 16px;
}

/* HERO */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 520px;
  overflow: hidden;
}

.hero-img {
  height: 90vh;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section,
  .hero-img {
    height: 70vh;
  }
}
.sophia-manifesto {
  margin-top: 80px;
}


/* Section prima segundaria  */
.sophia-section {
  overflow: hidden;
}

.sophia-section h2 {
  font-size: 2.1rem;
  font-weight: 600;
  color: #3a6f6a;
  position: relative;
  display: inline-block;
}

.sophia-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, #6fc7b7, #f4c77a);
  border-radius: 2px;
}

.sophia-section .lead {
  font-size: 1.2rem;
  color: #4a6b7a;
}
/* Effet plus  */
.sophia-img-wrap {
  position: relative;
  display: inline-block;
}

.sophia-img-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: linear-gradient(
    135deg,
    #6fc7b7,
    #f4c77a,
    #e58ca3
  );
  border-radius: 32px;
  opacity: 0.25;
  z-index: 0;
}

.sophia-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(58,111,106,0.25);
  transition: transform 0.3s ease;
}

.sophia-img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .sophia-img {
    margin: 0 auto 20px;
  }
}
.sophia-section:nth-of-type(odd) .sophia-img-wrap {
  transform: translateY(-12px);
}

.sophia-section:nth-of-type(even) .sophia-img-wrap {
  transform: translateY(18px);
}

.sophia-bg {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(111,199,183,0.12),
    rgba(244,199,122,0.10)
  );
  border-radius: 80px 80px 0 0;
  margin-top: -60px;
  padding-top: 120px;
}

.sophia-manifesto {
  font-size: 1.4rem;
  font-style: italic;
  color: #3a6f6a;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.sophia-step {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(58,111,106,0.15);
  display: block;
  margin-bottom: -10px;
}

.sophia-odd .sophia-img-wrap {
  transform: translateY(-12px);
}

.sophia-even .sophia-img-wrap {
  transform: translateY(18px);
}

/* ===== BANDEAU MATRÍCULAS ===== */

.sophia-banner {
  background: linear-gradient(
    90deg,
    rgba(111,199,183,0.15),
    rgba(244,199,122,0.15)
  );
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sophia-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 0;
  text-align: center;
  flex-wrap: wrap;
}

.sophia-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: #3a6f6a;
  font-weight: 500;
}

/* petit badge année */
.sophia-badge {
  background: rgba(58,111,106,0.15);
  color: #3a6f6a;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}

/* bouton discret */
.sophia-banner-btn {
  border: 1px solid #3a6f6a;
  color: #3a6f6a;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sophia-banner-btn:hover {
  background: #3a6f6a;
  color: #fff;
}

/* quienes somos */
.sophia-intro {
  max-width: 720px;
  margin: 0 auto;
  color: #3a6f6a;
}

.sophia-value {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.sophia-value h4 {
  color: #3a6f6a;
  margin-bottom: 10px;
}
.sophia-list {
  padding-left: 1.2rem;
}

.sophia-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.sophia-section h4 {
  color: #3a6f6a;
  margin-bottom: 8px;
}
/* oferta educativa  */
.placeholder-img {
  background: rgba(58,111,106,0.08);
  border-radius: 20px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a6f6a;
  font-style: italic;
  text-align: center;
  padding: 20px;
}
/* admisiones */
.sophia-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.sophia-card h4 {
  color: #3a6f6a;
  margin-bottom: 10px;
}

/* Bouton flottant étudiants */
.sophia-float-student{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 16px;
  border-radius: 999px;
  background: #3a6f6a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.sophia-float-student:hover{
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

/* Sur mobile : un peu plus compact */
@media (max-width: 768px){
  .sophia-float-student{
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
    font-size: .95rem;
  }
}

/* Mini bandeau top CTA */
.sophia-top-cta{
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 10px 0;
}
@media (max-width: 768px){
  .sophia-top-cta{
    display: none;
  }
}

/* Transition wave après le hero */
.sophia-wave {
  position: relative;
  margin-top: -1px; /* colle au hero */
  line-height: 0;
  background: transparent;
}

.sophia-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

.sophia-wave path {
  fill: rgba(111,199,183,0.18); /* vert doux */
}

/* Zone portée (fond léger + dégradé organique) */
.sophia-flow {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(244,199,122,0.16), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(229,140,163,0.12), transparent 40%),
    linear-gradient(180deg, rgba(111,199,183,0.12), rgba(255,255,255,0));
  padding-top: 20px;
  padding-bottom: 40px;
}

.sophia-wave-bottom path {
  fill: rgba(244,199,122,0.14); /* jaune doux */
}
/* page cantine */
.sophia-badge {
  background: rgba(111,199,183,0.18);
  color: #3a6f6a;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* Modale matriculas */
/* ===== MODALE SOPHIA ÉDITORIALE ===== */
/* Logo dans la modale */
/* Conteneur logo */
.sophia-modal-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(111,199,183,0.12);
}

/* Logo */
.sophia-modal-logo {
  max-width: 56px;
  height: auto;
}


.sophia-modal {
  border-radius: 32px;
  background:
    radial-gradient(
      circle at top left,
      rgba(111,199,183,0.15),
      transparent 60%
    ),
    #ffffff;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

/* Badge discret */
.sophia-modal-badge {
  display: inline-block;
  background: rgba(58,111,106,0.12);
  color: #3a6f6a;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Titre principal */
.sophia-modal-headline {
  font-size: 1.9rem;
  font-weight: 600;
  color: #3a6f6a;
  margin-bottom: 14px;
}

/* Intro */
.sophia-modal-intro {
  font-size: 1.15rem;
  color: #3a6f6a;
  max-width: 520px;
  margin: 0 auto 18px;
}

/* Séparateur organique */
.sophia-modal-divider {
  width: 60px;
  height: 3px;
  margin: 18px auto;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    #6fc7b7,
    #f4c77a
  );
}

/* Texte secondaire */
.sophia-modal-text {
  color: #4a6b7a;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== FARANDOLE PHOTOS ===== */
.sophia-section {
  overflow: visible;
}

.sophia-photo-cluster::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 30% 20%, rgba(111,199,183,0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(244,199,122,0.16), transparent 45%);
  z-index: 0;
}


.sophia-photo-cluster {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 520px;   /* plus d'air entre les photos */
  margin: 0 auto;
  padding: 60px;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,0.15));
}



/* Base commune */
.sophia-photo {
  position: absolute;
  border-radius: 22px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.22);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image principale */
.sophia-photo.main {
  width: 320px;
  height: 320px;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  border-radius: 22px;
}

/* cadre doux */
.sophia-photo.main::after{
  inset: -12px;
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(111,199,183,0.35),
      rgba(244,199,122,0.28),
      rgba(229,140,163,0.22)
    );
  filter: blur(2px);
}



/* Satellites */
.sophia-photo.side {
  width: 150px;
  height: 150px;
  opacity: 0.75;
  z-index: 2;
  filter: saturate(0.9) brightness(0.95);
}



/* Gauche */
.sophia-photo.side.left {
  top: -30px;
  left: -90px;
  transform: rotate(-10deg);
}

.sophia-photo.side.right {
  bottom: -30px;
  right: -90px;
  transform: rotate(8deg);
}

/* Variante inversée : satellites en haut à droite / bas à gauche */
.sophia-photo-cluster--inverse .sophia-photo.side.left {
  top: -30px;
  right: -90px;
  left: auto;
  transform: rotate(10deg);
}

.sophia-photo-cluster--inverse .sophia-photo.side.right {
  bottom: -30px;
  left: -90px;
  right: auto;
  transform: rotate(-8deg);
}



/* Hover subtil */
.sophia-photo-cluster:hover .main {
  transform: translateX(-50%) scale(1.02);
}

.sophia-photo-cluster:hover .side.left {
  transform: rotate(-4deg) translateY(-4px);
}

.sophia-photo-cluster:hover .side.right {
  transform: rotate(3deg) translateY(4px);
}

.sophia-photo-cluster--inverse:hover .side.left {
  transform: rotate(4deg) translateY(-4px);
}

.sophia-photo-cluster--inverse:hover .side.right {
  transform: rotate(-3deg) translateY(4px);
}

/* Cantina image frame */
.sophia-cantina-frame {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(111,199,183,0.25), rgba(244,199,122,0.2));
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.sophia-cantina-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 0;
}

.sophia-cantina-image {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .sophia-cantina-frame {
    padding: 12px;
  }
}

/* Mobile : on simplifie */
@media (max-width: 768px) {
  .sophia-photo-cluster {
    height: auto;
    padding: 0;
    filter: none;
  }

  .sophia-photo.side {
    display: none;
  }

  .sophia-photo {
    position: relative;
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  }

  .sophia-photo.main {
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    transform: none;
  }
}

/* WhatsApp flottant */
.sophia-whatsapp{
  position: fixed;
  right: 18px;
  bottom: 88px; /* ⬅️ au-dessus du bouton étudiant si présent */
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;

  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;

  box-shadow: 0 14px 35px rgba(0,0,0,0.22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.sophia-whatsapp:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  color: #fff;
}
@media (max-width: 768px){
  .sophia-whatsapp{
    bottom: 70px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .sophia-whatsapp span{
    display: none; /* icône seule sur mobile */
  }
}

/* Mobile fixes: éviter les chevauchements */
@media (max-width: 768px) {
  .sophia-section:nth-of-type(odd) .sophia-img-wrap,
  .sophia-section:nth-of-type(even) .sophia-img-wrap,
  .sophia-odd .sophia-img-wrap,
  .sophia-even .sophia-img-wrap {
    transform: none;
  }

  .hero-section {
    min-height: 420px;
  }
}

/* Nav mobile: underline à la largeur du texte */
@media (max-width: 768px) {
  .sophia-menu .nav-link {
    display: inline-block;
    width: fit-content;
    padding-right: 0;
  }

  .sophia-menu .nav-link::after,
  .sophia-menu .nav-link.active::after {
    left: 0;
    right: 0;
  }
}

/* tarification */
/* ===== TARIFACIÓN ===== */

.sophia-tarifacion-wrapper {
  background:
    radial-gradient(circle at 10% 20%, rgba(244,199,122,0.12), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(111,199,183,0.12), transparent 40%),
    #f8f9fa;
}

.sophia-tarjeta {
  position: relative;
  padding: 28px 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(58,111,106,0.12);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}

.sophia-tarjeta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, rgba(111,199,183,0.8), rgba(244,199,122,0.8));
}

.sophia-tarjeta h2 {
  color: #2f5f5a;
  margin-top: 6px;
  margin-bottom: 8px;
}

.sophia-tarjeta .row {
  margin-top: 16px;
  row-gap: 18px;
}

.sophia-tarjeta h5 {
  font-weight: 700;
  color: #3a6f6a;
  margin-bottom: 8px;
}

.sophia-jardin::before {
  background: linear-gradient(90deg, #f7c37f, #f4a261);
}

.sophia-primaria::before {
  background: linear-gradient(90deg, #7cc5b7, #4fb3a0);
}

.sophia-secundaria::before {
  background: linear-gradient(90deg, #7b8fd6, #5562b9);
}

.sophia-tarifacion-wrapper .container.mb-5 {
  margin-bottom: 36px;
}

.sophia-tarifacion-wrapper .container.mb-5:last-child {
  margin-bottom: 0;
}

.sophia-tarif-block {
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(111,199,183,0.12), transparent 60%),
    #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.sophia-tarif-block h2 {
  color: #3a6f6a;
  margin-bottom: 10px;
}

.sophia-label {
  font-weight: 600;
  color: #3a6f6a;
  margin-bottom: 6px;
}

.sophia-muted {
  color: #6c8a99;
  line-height: 1.6;
}

/* lignes */
.sophia-tarif-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sophia-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #4a6b7a;
}

.sophia-line.muted {
  opacity: 0.75;
}

/* séparateur doux */
.sophia-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(111,199,183,0.25),
    rgba(244,199,122,0.25)
  );
  margin: 14px 0;
}

/* totaux */
.sophia-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #3a6f6a;
  margin-top: 8px;
}

.sophia-total.highlight {
  font-size: 1.05rem;
  font-weight: 700;
}

/* === GROUPES MATRÍCULA / PENSIÓN === */

.sophia-tarif-group{
  padding: 18px 20px;
  border-radius: 20px;
  margin-bottom: 18px;
}

/* MATRÍCULA = vert doux */
.sophia-tarif-group.matricula{
  background: rgba(111,199,183,0.10);
  border: 1px solid rgba(58,111,106,0.15);
}

/* PENSIÓN = bleu/vert neutre */
.sophia-tarif-group.pension{
  background: rgba(58,111,106,0.06);
  border: 1px solid rgba(58,111,106,0.12);
}

/* Titres de groupe */
.sophia-tarif-group-title{
  font-weight: 700;
  color: #3a6f6a;
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}

/* Sous-titre explicatif */
.sophia-tarif-group-sub{
  font-weight: 400;
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .sophia-tarjeta {
    padding: 22px 20px;
    border-radius: 22px;
  }
}

/* ============================================================
   TYPOGRAPHIE UNIFIÉE - BLEU ARDOISE
   ============================================================ */

/* Base : tous les paragraphes en bleu ardoise */
p {
  color: #4a6b7a;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* Titres h2 cohérents */
h2 {
  color: #3a6f6a;
  font-size: 2.1rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Soulignement décoratif sous les h2 */
h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, #6fc7b7, #f4c77a);
  border-radius: 2px;
}

/* Lead textes - introduction */
p.lead {
  color: #4a6b7a;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Manifesto (citation centrale) */
.sophia-manifesto {
  font-size: 1.4rem;
  font-style: italic;
  color: #3a6f6a;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Numéros d'étape */
.sophia-step {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(58,111,106,0.15);
  display: block;
  margin-bottom: -10px;
  line-height: 1;
}

/* Modal - textes */
.sophia-modal-intro {
  font-size: 1.15rem;
  color: #4a6b7a;
  max-width: 520px;
  margin: 0 auto 18px;
  line-height: 1.6;
}

.sophia-modal-text {
  color: #4a6b7a;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Titres modal */
.sophia-modal-headline {
  font-size: 1.9rem;
  font-weight: 600;
  color: #3a6f6a;
  margin-bottom: 14px;
}

/* Badge modal */
.sophia-modal-badge {
  display: inline-block;
  background: rgba(58,111,106,0.12);
  color: #3a6f6a;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Boutons outline - ajuster pour le bleu */
.btn-outline-success {
  color: #3a6f6a;
  border-color: #3a6f6a;
}

.btn-outline-success:hover {
  background-color: #3a6f6a;
  color: #fff;
}

/* Hero - texte blanc (exception) */
.hero-content p {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  p.lead {
    font-size: 1.15rem;
  }
  
  .sophia-manifesto {
    font-size: 1.2rem;
  }
  
  .sophia-step {
    font-size: 2.5rem;
  }
}