/* =========================
FILE: styles.css
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #03727f;
  --primary-soft: #04a0b0;
  --secondary: #f4c542;
  --dark: #1c3042;
  --bg: #f5f7fb;
  --white: #ffffff;
  --muted: #6b7b93;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: min(1120px, 100% - 2.5rem); margin: 0 auto; }

/* ✅ Espacio entre secciones (reducido un poco) */
section { padding: 3.8rem 0; }

h1, h2, h3, h4 { font-weight: 700; color: var(--dark); }

/* ✅ Focus (accessibilité pro) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(244, 197, 66, 0.9);
  outline-offset: 3px;
  border-radius: 0.6rem;
}

/* =========================
TRADUCTEUR PRO (NUEVO)
========================= */
.translate-pro {
  position: fixed;
  top: 5.2rem;
  right: 1.1rem;
  z-index: 120;
  display: grid;
  gap: 0.6rem;
}

.translate-pro__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 13, 24, 0.55);
  backdrop-filter: blur(10px);
  color: #eef4ff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, background 0.15s ease, border 0.15s ease;
}

.translate-pro__btn:hover {
  transform: translateY(-1px);
  background: rgba(5, 13, 24, 0.68);
  border-color: rgba(244, 197, 66, 0.35);
}

.translate-pro__icon { font-size: 1.05rem; }
.translate-pro__label { font-size: 0.86rem; letter-spacing: 0.01em; }
.translate-pro__chev { font-size: 0.85rem; opacity: 0.9; }

.translate-pro__panel {
  width: min(280px, calc(100vw - 2rem));
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5, 13, 24, 0.62);
  backdrop-filter: blur(12px);
  color: #eef4ff;
  box-shadow: 0 18px 44px rgba(0,0,0,0.35);
  padding: 0.9rem 0.9rem 0.75rem;
  transform-origin: top right;
  animation: tpIn 0.16s ease;
}

@keyframes tpIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.translate-pro__panelHead {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.translate-pro__title { font-weight: 800; font-size: 0.95rem; }
.translate-pro__sub { font-size: 0.78rem; opacity: 0.85; margin-top: 0.15rem; }

.translate-pro__close {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #eef4ff;
  width: 34px;
  height: 34px;
  border-radius: 0.85rem;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.translate-pro__close:hover { transform: translateY(-1px); background: rgba(255,255,255,0.12); }

.translate-pro__hint {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: rgba(238, 244, 255, 0.82);
  opacity: 0.9;
}

/* ✅ “re-skin” del widget Google Translate dentro del panel */
#google_translate_element {
  margin-top: 0.25rem;
}

/* El contenedor del combo */
.translate-pro .goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

/* Oculta "Powered by" */
.translate-pro .goog-logo-link,
.translate-pro .goog-te-gadget span {
  display: none !important;
}

/* Estilo del select */
.translate-pro select.goog-te-combo {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0.62rem 0.8rem !important;
  border-radius: 0.9rem !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.10) !important;
  color: #eef4ff !important;
  font-size: 0.9rem !important;
  outline: none !important;
  cursor: pointer !important;
}

/* Opciones */
.translate-pro select.goog-te-combo option {
  color: #0b1220 !important;
}

/* =========================
BOUTON / UI
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(3, 114, 127, 0.6);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 20px 40px rgba(3, 114, 127, 0.75); }

.btn-outline {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--dark);
}
.btn-outline:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(3, 114, 127, 0.07);
  color: var(--primary);
}

/* ✅ SOLO el badge del HERO en amarillo */
.badge--yellow {
  background: rgba(244, 197, 66, 0.14);
  color: var(--secondary);
  border: 1px solid rgba(244, 197, 66, 0.35);
}

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
header .container.nav { position: relative; }
header.header-scrolled {
  background: rgba(5, 13, 24, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.45);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.4rem;
  color: #f0f4ff;
}

.nav-left { display: flex; align-items: center; gap: 0.6rem; }

.logo-mark-text {
  width: 42px;
  height: 42px;
  border-radius: 1rem;
  border: 2px solid rgba(244, 197, 66, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #021623, #044f5a);
  box-shadow: 0 0 0 3px rgba(3, 114, 127, 0.4);
}
.logo-text-main { font-size: 1.2rem; font-weight: 800; letter-spacing: 0.04em; }
.logo-sub { font-size: 0.8rem; opacity: 0.8; }

.nav-links { display: flex; align-items: center; gap: 1.1rem; font-size: 0.85rem; }
.nav-links a { position: relative; padding-bottom: 0.1rem; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.18s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--secondary); }
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-toggle { display: none; }

.lang-switch {
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #f0f4ff;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  color: var(--white);
  padding: 5rem 0 4rem;
  background-image:
    linear-gradient(135deg, rgba(4, 22, 40, 0.88), rgba(3, 114, 127, 0.85)),
    url("imagenes/fondo-edha.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(244, 197, 66, 0.25), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.7rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw + 1.5rem, 3.1rem);
  line-height: 1.15;
  margin: 1rem 0;
}
.hero-title span { color: var(--secondary); }
.hero-text { font-size: 0.98rem; max-width: 34rem; color: #e0ecff; margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.4rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.3rem; font-size: 0.8rem; color: #d0e2ff; }
.hero-meta strong { color: var(--white); }

.hero-card {
  background: rgba(4, 17, 32, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(244, 197, 66, 0.35);
}

.hero-card-image img { transition: transform 0.6s ease; }
.hero-card-image:hover img { transform: scale(1.03); }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 2.2rem; }
.section-header h2 { font-size: 1.8rem; margin-top: 0.6rem; margin-bottom: 0.5rem; }
.section-header p { font-size: 0.95rem; color: var(--muted); max-width: 36rem; margin: 0.4rem auto 0; }

/* AXES */
.axes { background: var(--white); }
.axes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }

.axis-card {
  border-radius: var(--radius-lg);
  background: var(--bg);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}
.axis-number { font-size: 1.3rem; font-weight: 800; color: rgba(3, 114, 127, 0.2); margin-bottom: 0.4rem; }

.axis-media {
  width: 100%;
  height: 150px;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(3, 114, 127, 0.12);
  background: #eef5f7;
}
.axis-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.axis-card:hover .axis-media img { transform: scale(1.06); }

.axis-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.axis-card p { font-size: 0.9rem; color: var(--muted); }

/* A PROPOS */
.about { background: #f9fbff; }
.about-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 2.4rem; align-items: center; }
.about-text p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.9rem; }
.about-bullets { margin-top: 0.7rem; margin-left: 1rem; font-size: 0.9rem; color: var(--muted); }
.about-bullets li { margin-bottom: 0.25rem; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 1rem; }
.value-card { background: var(--white); border-radius: var(--radius-md); padding: 1rem 1rem; font-size: 0.9rem; color: var(--muted); border: 1px solid rgba(3, 114, 127, 0.12); }
.value-card strong { display: block; color: var(--dark); margin-bottom: 0.3rem; }

/* EDHA ACADEMY (SHOWCASE) */
.academy-showcase { background: var(--white); }
.academy-showcase-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.academy-showcase-text h2 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.academy-lead {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.academy-bullets {
  margin-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.academy-bullets li { margin-bottom: 0.35rem; }

.academy-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.academy-showcase-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(3, 114, 127, 0.12);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
  background: #f3f7fb;
}
.academy-showcase-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ACADEMY (tabs) */
.academy { background: var(--white); }

.academy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}
.academy-menu {
  border-radius: var(--radius-lg);
  background: #f4f7ff;
  padding: 1.3rem 1.2rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}
.academy-menu h3 { font-size: 1rem; margin-bottom: 0.8rem; }
.academy-buttons { display: flex; flex-direction: column; gap: 0.5rem; }

.academy-tab {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid transparent;
  background: var(--white);
  padding: 0.7rem 0.9rem;
  text-align: left;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s ease, border 0.15s ease, transform 0.1s ease;
}
.academy-tab span { font-weight: 500; }
.academy-tab small { font-size: 0.75rem; color: var(--muted); }
.academy-tab.active { border-color: var(--primary); background: rgba(3, 114, 127, 0.08); transform: translateY(-1px); }

.academy-content {
  border-radius: var(--radius-lg);
  background: #061626;
  color: var(--white);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.academy-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(244, 197, 66, 0.2), transparent 55%);
  pointer-events: none;
}
.academy-panel { display: none; position: relative; z-index: 1; animation: slideIn 0.2s ease; }
.academy-panel.active { display: block; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.academy-panel h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--secondary); }
.academy-panel p { font-size: 0.88rem; color: #d5e4ff; margin-bottom: 0.6rem; }
.academy-panel ul { margin-left: 1rem; margin-bottom: 0.7rem; font-size: 0.86rem; color: #d5e4ff; }
.academy-panel li { margin-bottom: 0.25rem; }
.academy-panel a.detail-link { font-size: 0.85rem; color: var(--secondary); text-decoration: underline; }

/* IMPACTO Y RESULTADOS */
.impact { background: #f7f8ef; }
.impact-head { text-align: center; margin-bottom: 2rem; }
.impact-head h2 { font-size: clamp(1.6rem, 2vw + 1.2rem, 2.2rem); color: #1f2b3a; }

.impact-grid {
  background: transparent;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border-radius: 1.2rem;
}

.impact-item { padding: 1.6rem 1rem; text-align: center; position: relative; }
.impact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(31, 43, 58, 0.18);
}

.impact-number {
  font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #2b3a4d;
  margin-bottom: 0.35rem;
}
.impact-text {
  font-size: 0.95rem;
  color: rgba(31, 43, 58, 0.85);
  max-width: 18rem;
  margin: 0 auto;
}

/* RÉSEAU EDHA */
.network { background: #f9fbff; }
.network-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.network-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.2rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(3, 114, 127, 0.1);
  font-size: 0.9rem;
  color: var(--muted);
  overflow: hidden;
}

.network-head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 0.85rem;
}

.network-icon {
  width: 52px;
  height: 52px;
  border-radius: 1.2rem;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(3,114,127,0.14), rgba(244,197,66,0.16));
  border: 1px solid rgba(3, 114, 127, 0.14);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.network-icon svg { width: 26px; height: 26px; }

.network-head-text h3 { font-size: 1.02rem; margin-bottom: 0.25rem; color: var(--dark); }
.network-lead { font-size: 0.86rem; color: #4b5c72; line-height: 1.5; }

.network-list { margin-left: 1.05rem; margin-bottom: 0.75rem; }
.network-list li { margin-bottom: 0.28rem; }
.network-list strong { color: var(--dark); }

.network-more[hidden] { display: none; }
.network-more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
  will-change: max-height, opacity, transform;
}

.network-card.is-open .network-more {
  opacity: 1;
  transform: translateY(0);
}

.network-toggle {
  width: 100%;
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(3, 114, 127, 0.18);
  background: rgba(3, 114, 127, 0.05);
  color: var(--dark);
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease, border 0.15s ease;
}

.network-toggle:hover { transform: translateY(-1px); background: rgba(3, 114, 127, 0.08); border-color: rgba(3, 114, 127, 0.26); }

.network-toggle-text { font-size: 0.9rem; }
.network-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: rgba(244, 197, 66, 0.18);
  border: 1px solid rgba(244, 197, 66, 0.45);
  color: #2d3a49;
  font-size: 1.05rem;
}

/* FORMULARIOS */
.join-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.join-card { background: var(--white); border-radius: var(--radius-md); padding: 1.4rem 1.3rem; border: 1px solid rgba(3, 114, 127, 0.1); box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04); font-size: 0.9rem; color: var(--muted); }
.join-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--dark); }
.join-card form { margin-top: 0.8rem; display: flex; flex-direction: column; gap: 0.6rem; }

.form-group { display: flex; flex-direction: column; gap: 0.2rem; }
label { font-size: 0.8rem; color: var(--dark); }

input, select, textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(3, 114, 127, 0.4);
}
textarea { min-height: 80px; resize: vertical; }

/* Messages pro */
.form-msg {
  font-size: 0.84rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(15, 23, 42, 0.03);
  color: #394a60;
  min-height: 2.3rem;
}
.form-msg.is-success { border-color: rgba(16, 185, 129, 0.35); background: rgba(16, 185, 129, 0.12); color: #0f5132; }
.form-msg.is-error { border-color: rgba(239, 68, 68, 0.35); background: rgba(239, 68, 68, 0.12); color: #7f1d1d; }
.form-msg.is-loading { border-color: rgba(244, 197, 66, 0.40); background: rgba(244, 197, 66, 0.15); color: #5b4b10; }

/* Honeypot caché */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

form.is-submitting { opacity: 0.92; }
form.is-submitting button[type="submit"] { opacity: 0.75; cursor: not-allowed; }

/* CTA DON */
.cta-don { text-align: center; }
.cta-box {
  background: linear-gradient(135deg, #021623, #044f5a);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.7rem;
  box-shadow: var(--shadow-soft);
}
.cta-box h2 { margin-bottom: 0.7rem; color: var(--white); }
.cta-box p { font-size: 0.95rem; max-width: 34rem; margin: 0 auto 1.3rem; color: #d5e4ff; }

/* CONTACT */
.contact { background: var(--white); }
.contact-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-cols h3 { font-size: 1rem; margin-bottom: 0.4rem; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-list li {
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(3, 114, 127, 0.12);
  background: #f9fbff;
  color: #4b5c72;
}
.contact-list strong { color: var(--dark); }

/* FOOTER */
footer { background: #020a12; color: #d9e2ec; padding: 2.2rem 0 2.5rem; font-size: 0.85rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr)); gap: 2rem; margin-bottom: 1.6rem; }
.footer-logo { font-weight: 700; margin-bottom: 0.3rem; }
.footer-col h4 { font-size: 0.9rem; margin-bottom: 0.6rem; color: #d9e2ec; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.35rem; }
.footer-col a { color: #d9e2ec; opacity: 0.85; }
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: #9fb3c8;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  z-index: 80;
}
.whatsapp-float img { width: 28px; height: 28px; }

/* RÉVÉLATION AU SCROLL */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Google Translate: banner */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .academy-layout, .contact-cols, .academy-showcase-inner { grid-template-columns: 1fr; }
  .academy-content { margin-top: 1rem; }
  .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .impact-item:not(:last-child)::after { display: none; }
  .impact-item { border-bottom: 1px solid rgba(31, 43, 58, 0.14); }
  .impact-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  header { backdrop-filter: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 4.4rem;
    left: 0;
    right: 0;
    padding: 0.8rem 1.2rem 1rem;
    background: #020a12;
    flex-direction: column;
    gap: 0.7rem;
    z-index: 60;
  }
  .nav-links.nav-links--open { display: flex; }

  .nav-toggle {
    display: inline-flex;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #f0f4ff;
    cursor: pointer;
  }

  section { padding: 3.0rem 0; }

  .hero { padding-top: 4rem; background-attachment: scroll; }

  /* traductor pro en mobile */
  .translate-pro { top: 5.8rem; right: 0.9rem; }
}

/* Accessibilité: réduire les animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
