/* Base */
:root {
  --navy: #081a31;
  --navy-soft: #102947;
  --ink: #172232;
  --muted: #647184;
  --line: #e5dfd2;
  --paper: #f8f6f1;
  --white: #ffffff;
  --gold: #caa24e;
  --gold-light: #e7c977;
  --green: #22a957;
  --shadow: 0 18px 42px rgba(8, 26, 49, 0.12);
  --radius: 8px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.section { padding: 82px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2 { font-family: "Montserrat", Arial, sans-serif; font-weight: 800; letter-spacing: 0; }
h1 { max-width: 680px; margin-bottom: 18px; color: var(--white); font-size: clamp(2.2rem, 4vw, 3.85rem); line-height: 1.04; }
h2 { max-width: 760px; margin-bottom: 16px; color: var(--navy); font-size: clamp(1.7rem, 2.8vw, 2.55rem); line-height: 1.16; }
h3 { margin-bottom: 9px; color: var(--navy); font-size: 1.02rem; font-weight: 800; line-height: 1.35; }
p { color: var(--muted); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 84px;
  padding: 14px clamp(22px, 4vw, 52px);
  color: var(--white);
  background: rgba(8, 26, 49, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled { min-height: 72px; }
.brand { display: inline-flex; align-items: center; min-width: 160px; }
.brand img { width: 178px; height: auto; opacity: 1; }
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 30px);
  font-size: 0.93rem;
  font-weight: 700;
}
.nav-menu a { position: relative; padding: 8px 0; opacity: 0.94; }
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width 0.22s ease;
}
.nav-menu a:hover::after, .nav-menu a:focus-visible::after { width: 100%; }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(231, 201, 119, 0.86);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 0.22s ease, transform 0.22s ease;
}
.header-cta:hover, .header-cta:focus-visible { background: rgba(231, 201, 119, 0.15); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--white); transition: transform 0.22s ease, opacity 0.22s ease; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { color: #061222; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 14px 28px rgba(202, 162, 78, 0.26); }
.btn-light { color: var(--white); border: 1px solid rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.08); }
.btn-outline { color: var(--navy); border: 1px solid var(--line); background: var(--white); }
.text-link { display: inline-flex; align-items: center; margin-top: 8px; color: var(--navy); font-weight: 800; }
.text-link::after { content: "->"; margin-left: 8px; transition: transform 0.2s ease; }
.text-link:hover::after { transform: translateX(4px); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: center;
  padding: 138px 0 54px;
  color: var(--white);
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/images/hero-equipe.jpg") center right / cover no-repeat;
  opacity: 0.54;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 26, 49, 0.9) 0%, rgba(8, 26, 49, 0.68) 46%, rgba(8, 26, 49, 0.34) 100%);
}
.hero-grid { display: block; }
.hero h1 { max-width: 760px; font-size: clamp(2.05rem, 3.45vw, 3.3rem); line-height: 1.08; }
.hero-copy p { max-width: 590px; margin-bottom: 28px; color: rgba(255, 255, 255, 0.86); font-size: clamp(1rem, 1.5vw, 1.16rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}
.hero-panel div { padding: 18px 22px; }
.hero-panel div + div { border-left: 1px solid rgba(255, 255, 255, 0.15); }
.hero-panel strong { display: block; color: var(--white); font-size: 0.98rem; }
.hero-panel span { display: block; margin-top: 3px; color: rgba(255, 255, 255, 0.76); font-size: 0.88rem; }

/* Sections */
.split { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr); gap: clamp(30px, 6vw, 72px); align-items: center; }
.split.reverse { grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr); }
.split.reverse .section-copy { order: 2; }
.split.reverse .practice-list { order: 1; }
.section-copy p, .section-heading p { max-width: 680px; font-size: 1rem; }
.about, .team-section, .articles-section { background: var(--white); }
.section-heading { width: min(100%, 780px); margin-bottom: 36px; }
.about-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-highlights span { display: inline-flex; align-items: center; min-height: 36px; padding: 0 13px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--navy); background: #f6f2e9; font-size: 0.9rem; font-weight: 700; }
.about-media { margin: 0; }
.about-media img { width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; object-position: center; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media figcaption { margin-top: 12px; color: var(--muted); font-size: 0.9rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.team-card:hover, .team-card:focus-visible { transform: translateY(-3px); border-color: rgba(202, 162, 78, 0.68); box-shadow: var(--shadow); }
.team-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #0c2442; }
.team-card div { padding: 16px; }
.team-card p { margin-bottom: 8px; color: var(--gold); font-size: 0.92rem; font-weight: 700; }
.team-card span { color: var(--navy); font-size: 0.88rem; font-weight: 800; }

/* Practice */
.practice-section { background: var(--paper); }
.practice-list { display: grid; gap: 10px; }
.practice-list details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 22px rgba(8, 26, 49, 0.05); }
.practice-list summary { position: relative; min-height: 58px; padding: 17px 52px 17px 18px; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.practice-list summary::-webkit-details-marker { display: none; }
.practice-list summary::after { content: "+"; position: absolute; right: 18px; color: var(--gold); font-size: 1.4rem; }
.practice-list details[open] summary::after { content: "-"; }
.practice-list p { margin: 0; padding: 0 18px 20px; }

/* Videos */
.video-section { background: #f4f1ea; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.video-grid-featured { width: min(100%, 840px); margin: 0 auto; }
.video-card {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 0 0 20px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 26, 49, 0.08);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.video-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #0c2442;
}
.video-cover img,
.video-cover video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
}
.video-cover video { pointer-events: none; }
.video-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(8, 26, 49, 0.28)); }
.play-icon {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-45%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 17px solid var(--gold-light);
}
.video-card strong { min-height: 2.7em; padding: 0 18px; color: var(--navy); font-size: 0.96rem; line-height: 1.35; }
.video-card small { padding: 0 18px; color: var(--gold); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }

/* Media */
.media-section { background: var(--white); }
.media-video-list { display: grid; gap: 16px; width: min(100%, 940px); }
.media-video-card {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 176px;
  padding: 0;
  overflow: hidden;
  background: #fffdf9;
}
.media-video-card .video-cover { border-radius: var(--radius) 0 0 var(--radius); }
.media-video-card .video-cover video {
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.media-video-content {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 24px;
}
.media-video-content > span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}
.media-video-content strong {
  min-height: 0;
  padding: 0;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.24;
}
.media-video-content small {
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: none;
}

.video-modal { position: fixed; inset: 0; z-index: 80; display: none; place-items: center; padding: 24px; }
.video-modal.is-open { display: grid; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(6, 18, 34, 0.78); }
.video-modal-dialog { position: relative; z-index: 1; width: min(100%, 760px); padding: 22px; border-radius: var(--radius); background: var(--white); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34); }
.video-modal-dialog h3 { margin-right: 44px; font-family: "Montserrat", Arial, sans-serif; font-size: 1.35rem; font-weight: 800; }
.video-modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--navy); font-size: 1.4rem; cursor: pointer; }
.video-player-shell { position: relative; min-height: 280px; border-radius: var(--radius); overflow: hidden; background: #0c2442; }
.video-player-shell video { display: block; width: 100%; max-height: 70vh; background: #0c2442; }
.video-empty { display: grid; min-height: 280px; place-items: center; padding: 28px; color: var(--white); text-align: center; font-weight: 700; }
.video-player-shell.has-video .video-empty { display: none; }

/* Mission */
.mission { padding: 52px 0; background: var(--navy); }
.mission-card { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: clamp(22px, 4vw, 46px); align-items: center; padding: 28px 0; }
.mission-card img { width: 180px; }
.mission blockquote { margin: 0; max-width: 820px; color: var(--white); font-family: "Montserrat", Arial, sans-serif; font-size: clamp(1.28rem, 2vw, 1.95rem); font-weight: 700; line-height: 1.36; }

/* Articles */
.blog-wrap { max-width: 900px; }
.article-list { display: grid; gap: 16px; }
.article-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 172px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(8, 26, 49, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.article-row:hover { transform: translateY(-2px); border-color: rgba(202, 162, 78, 0.58); box-shadow: var(--shadow); }
.article-thumb { background: #ede8dc; }
.article-thumb img { width: 100%; height: 100%; min-height: 172px; object-fit: cover; object-position: center; }
.article-content { padding: 18px 22px; }
.article-content span, .post-date { display: inline-block; margin-bottom: 8px; color: var(--gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.article-content h3 { margin-bottom: 8px; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(1.05rem, 1.8vw, 1.34rem); font-weight: 800; }
.article-content p { margin-bottom: 4px; }

/* Internal pages */
.inner-hero {
  padding: 132px 0 62px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(8, 26, 49, 0.98), rgba(16, 41, 71, 0.93)), url("../assets/images/hero-equipe.jpg") center / cover no-repeat;
}
.inner-hero h1 { max-width: 900px; font-size: clamp(2rem, 4vw, 3.55rem); }
.inner-hero p { max-width: 720px; color: rgba(255, 255, 255, 0.8); }
.back-link { display: inline-flex; margin-bottom: 22px; color: var(--gold-light); font-weight: 800; }
.inner-content { padding: 70px 0; background: var(--white); }
.post-layout, .member-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; gap: clamp(30px, 5vw, 66px); align-items: start; }
.post-body, .member-body { font-size: 1.07rem; }
.post-body p, .member-body p { color: #334255; }
.post-body figure, .member-photo { margin: 0 0 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #f1eee7; overflow: hidden; }
.post-body figure img { width: 100%; max-height: 500px; padding: 12px; object-fit: contain; }
.member-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #0c2442; }
.side-card { position: sticky; top: 96px; display: grid; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.side-card strong { color: var(--navy); }
.side-card a { color: var(--navy); font-weight: 800; }
.clean-list { display: grid; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding-left: 18px; color: var(--ink); font-weight: 700; }
.clean-list li::before { content: ""; position: absolute; top: 0.72em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* Contact */
.contact-section { color: var(--white); background: linear-gradient(135deg, #081a31, #102947); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr); gap: clamp(30px, 5vw, 68px); align-items: start; }
.contact-copy h2, .contact-copy p { color: var(--white); }
.contact-copy p { max-width: 620px; color: rgba(255, 255, 255, 0.76); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contact-card { display: grid; gap: 10px; margin: 0; padding: 28px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius); background: rgba(255, 255, 255, 0.08); font-style: normal; }
.contact-card strong { margin-top: 10px; color: var(--gold-light); }
.contact-card strong:first-child { margin-top: 0; }
.contact-card p, .contact-card a { margin: 0; color: rgba(255, 255, 255, 0.84); }
.contact-card a { width: fit-content; font-weight: 700; }
.contact-card a:hover, .contact-card a:focus-visible { color: var(--gold-light); }
.contact-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.contact-links a { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius); }

/* Footer */
.site-footer { padding: 44px 0 22px; color: rgba(255, 255, 255, 0.76); background: #061222; }
.footer-core { display: grid; grid-template-columns: 220px minmax(0, 1fr) minmax(220px, 0.68fr); gap: clamp(22px, 5vw, 52px); align-items: center; }
.footer-logo img { width: 180px; }
.footer-info strong { display: block; margin-bottom: 8px; color: var(--white); font-family: "Montserrat", Arial, sans-serif; font-size: 1.08rem; font-weight: 800; }
.footer-info p, .footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }
.footer-contact { display: grid; gap: 8px; justify-items: end; }
.footer-contact a, .footer-bottom a { color: var(--gold-light); font-weight: 800; }
.footer-contact a:hover, .footer-bottom a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(34, 169, 87, 0.32);
  font-weight: 800;
  animation: floatPulse 2.8s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: currentColor;
}
@keyframes floatPulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* Animations */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.58s ease, transform 0.58s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1040px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .nav-menu {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(8, 26, 49, 0.98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .menu-open .nav-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-menu a { min-height: 48px; padding: 12px 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .nav-menu a:last-child { border-bottom: 0; }
  .split, .split.reverse, .contact-grid, .post-layout, .member-layout { grid-template-columns: 1fr; }
  .split.reverse .section-copy, .split.reverse .practice-list { order: initial; }
  .media-video-card { grid-template-columns: minmax(180px, 260px) minmax(0, 1fr); }
  .hero-panel, .video-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-core { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; }
  .footer-contact { justify-items: start; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 64px 0; }
  .site-header { min-height: 70px; padding: 10px 14px; }
  .brand { min-width: 126px; }
  .brand img { width: 132px; }
  .nav-menu { top: 68px; right: 14px; left: 14px; }
  .hero { min-height: 620px; padding: 102px 0 34px; }
  h1 { font-size: clamp(1.95rem, 10vw, 2.85rem); }
  .hero h1 { font-size: clamp(1.85rem, 8.5vw, 2.5rem); }
  h2 { font-size: clamp(1.55rem, 7vw, 2.05rem); }
  .hero-actions, .contact-actions { display: grid; }
  .btn { width: 100%; padding-inline: 18px; text-align: center; }
  .media-video-card { grid-template-columns: 1fr; }
  .media-video-card .video-cover { border-radius: var(--radius) var(--radius) 0 0; }
  .media-video-card .video-cover video { aspect-ratio: 16 / 10; }
  .media-video-content { padding: 18px; }
  .hero-panel, .video-grid, .team-grid, .footer-core { grid-template-columns: 1fr; }
  .hero-panel div + div { border-top: 1px solid rgba(255, 255, 255, 0.14); border-left: 0; }
  .mission-card { grid-template-columns: 1fr; padding: 16px 0; }
  .mission-card img { width: 150px; }
  .article-row { grid-template-columns: 128px minmax(0, 1fr); min-height: 142px; }
  .article-thumb img { min-height: 142px; }
  .article-content { padding: 14px; }
  .article-content p { display: none; }
  .footer-core, .footer-bottom { text-align: center; }
  .footer-logo img { margin: 0 auto; }
  .footer-contact { justify-items: center; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 50px; padding: 0 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
