/* ============================================================
   MIRA GLOBAL PARTNERS — Governança de Riscos Humanos
   ============================================================ */

:root {
  --teal: #1B998B;
  --teal-dark: #12776C;
  --teal-light: #E3F3F1;
  --ink: #001514;
  --ink-soft: #16302E;
  --dark-section: #04201D;
  --dark-section-2: #072A26;
  --bg: #FBFBF9;
  --bg-alt: #F3F5F4;
  --white: #FFFFFF;
  --border: #E3E7E5;
  --text-muted: #4C5F5D;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-soft: 0 10px 40px rgba(0, 21, 20, 0.08);
  --shadow-strong: 0 20px 60px rgba(0, 21, 20, 0.16);
  --radius: 14px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; }
.section-head p { font-size: 18px; color: var(--text-muted); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.dark-section {
  background: var(--dark-section);
  color: var(--white);
}
.dark-section h2, .dark-section h3, .dark-section h4 { color: var(--white); }
.dark-section .section-head p { color: rgba(255,255,255,0.72); }
.dark-section .section-tag { color: var(--teal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(27, 153, 139, 0.35);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(27, 153, 139, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.dark-section .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.3); }
.dark-section .btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.3); }
.hero .btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(251, 251, 249, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,21,20,0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 52px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.main-nav a:hover { color: var(--teal); }

.header-actions { display: flex; align-items: center; gap: 20px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}
.lang-switch a {
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.lang-switch a.active { color: var(--white); background: var(--ink); }
.lang-switch span { color: var(--border); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--ink); }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--bg-alt); }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-primary.nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 190px;
  padding-bottom: 110px;
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-alt) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(0,21,20,0.94) 20%, rgba(4,32,29,0.86) 55%, rgba(27,153,139,0.55) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 780px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,153,139,0.16);
  border: 1px solid rgba(27,153,139,0.4);
  color: #6FE0D0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 24px;
}
.hero p {
  color: rgba(255,255,255,0.86);
  font-size: 19px;
  margin-bottom: 20px;
  max-width: 680px;
}
.hero .hero-highlight {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  background: rgba(27,153,139,0.22);
  border-left: 3px solid var(--teal);
  padding: 14px 20px;
  margin: 12px 0 36px;
  font-size: 18px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
  max-width: 780px;
}
.hero-stat { border-left: 1px solid rgba(255,255,255,0.2); padding-left: 18px; }
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
}
.hero-stat .label { font-size: 13.5px; color: rgba(255,255,255,0.7); margin-top: 4px; }

@media (max-width: 640px) {
  .hero { padding-top: 150px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn-primary { padding: 12px 22px; font-size: 13.5px; white-space: normal; text-align: center; }
}

/* ---------- What changed ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split.reverse { grid-template-columns: 0.9fr 1.1fr; }
@media (max-width: 900px) { .split.reverse { grid-template-columns: 1fr; } }
.split.reverse .split-media { order: -1; }
@media (max-width: 900px) { .split.reverse .split-media { order: 0; } }

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.1; }
.split-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,21,20,0) 50%, rgba(0,21,20,0.55) 100%);
}

.split-body p { color: var(--text-muted); font-size: 17px; margin-bottom: 18px; }
.split-body p strong { color: var(--ink); }

/* ---------- Diagnostic signs ---------- */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0 44px;
}
@media (max-width: 700px) { .signs-grid { grid-template-columns: 1fr; } }
.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sign-item:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.sign-item .ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-light);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
}
.sign-item .ic svg { width: 20px; height: 20px; }
.sign-item span.txt { font-weight: 600; font-size: 15.5px; padding-top: 8px; }

.diagnosis-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 17px;
  color: var(--text-muted);
}
.center-cta { text-align: center; }

/* ---------- 8 Dimensions ---------- */
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .dimensions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dimensions-grid { grid-template-columns: 1fr; } }

.dim-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.dim-card:hover { background: rgba(27,153,139,0.12); transform: translateY(-4px); border-color: var(--teal); }
.dim-card .dim-num {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.dim-card .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(27,153,139,0.18);
  color: #5FDCC9;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.dim-card .ic svg { width: 24px; height: 24px; }
.dim-card h4 { font-size: 16.5px; color: var(--white); font-weight: 700; line-height: 1.4; }

.approach-lead { max-width: 760px; color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: 44px; }
.approach-close {
  margin-top: 52px;
  max-width: 820px;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: rgba(27,153,139,0.14);
  border: 1px solid rgba(27,153,139,0.35);
  font-size: 16.5px;
  color: rgba(255,255,255,0.9);
}

/* ---------- Timeline / How it works ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  margin-top: 20px;
}
@media (max-width: 980px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .timeline { grid-template-columns: 1fr; } }

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  padding-top: 56px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.step-card .step-num {
  position: absolute;
  top: -22px; left: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,21,20,0.25);
}
.step-card:nth-child(1) .step-num { background: var(--teal); }
.step-card .ic { width: 30px; height: 30px; color: var(--teal); margin-bottom: 16px; }
.step-card h4 { font-size: 18px; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 14.8px; }

/* connecting line for desktop */
.timeline::before {
  content: '';
  position: absolute;
  display: none;
}
@media (min-width: 981px) {
  .timeline { position: relative; }
}

/* ---------- For whom ---------- */
.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 44px;
}
@media (max-width: 700px) { .forwhom-grid { grid-template-columns: 1fr; } }
.forwhom-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--bg-alt);
  border-radius: 12px;
}
.forwhom-item .ic { color: var(--teal-dark); flex-shrink: 0; width: 26px; height: 26px; margin-top: 3px; }
.forwhom-item p { font-weight: 600; font-size: 16px; color: var(--ink); }

.sector-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.sector-tags span {
  background: var(--ink);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
}
.forwhom-note { font-weight: 700; margin-bottom: 16px; font-size: 15px; color: var(--ink-soft); }

/* ---------- Results ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .results-grid { grid-template-columns: 1fr; } }
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color .25s ease;
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--teal); }
.result-card .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--teal-light);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.result-card .ic svg { width: 22px; height: 22px; }
.result-card p { font-weight: 600; color: var(--ink); font-size: 15.5px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.service-card .service-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 42px;
  color: var(--teal-light);
  position: absolute;
  top: 18px; right: 24px;
  line-height: 1;
}
.service-card .ic {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-card .ic svg { width: 26px; height: 26px; }
.service-card h4 { font-size: 21px; margin-bottom: 12px; padding-right: 40px; }
.service-card p { color: var(--text-muted); font-size: 15.3px; margin-bottom: 16px; }
.service-card .delivers {
  font-size: 13.8px;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 12px 16px;
  border-left: 3px solid var(--teal);
}
.service-card .delivers b { display: block; margin-bottom: 4px; color: var(--teal-dark); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-media img { aspect-ratio: 5/4; object-fit: cover; }
.about-body p { color: var(--text-muted); font-size: 17px; margin-bottom: 18px; }
.about-body p strong { color: var(--ink); }

/* ---------- Partners ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .partners-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.partner-photo { aspect-ratio: 4/3.4; overflow: hidden; }
.partner-photo img { width: 100%; height: 100%; object-fit: cover; }
.partner-info { padding: 22px 24px 26px; }
.partner-info h4 { font-size: 18px; margin-bottom: 2px; }
.partner-info .role { color: var(--teal-dark); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 12px; }
.partner-info p.bio { color: var(--text-muted); font-size: 14.3px; }

/* ---------- Final CTA ---------- */
.cta-final {
  text-align: center;
  padding: 100px 0;
}
.cta-final h2 { font-size: clamp(28px, 4vw, 40px); max-width: 720px; margin: 0 auto 34px; }

/* ---------- Contact form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--ink);
  color: var(--white);
  padding: 52px 44px;
}
.contact-info h3 { color: var(--white); font-size: 24px; margin-bottom: 16px; }
.contact-info p { color: rgba(255,255,255,0.72); font-size: 15.5px; margin-bottom: 34px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-detail .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(27,153,139,0.2); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail .ic svg { width: 19px; height: 19px; }
.contact-detail span { font-size: 14.5px; color: rgba(255,255,255,0.88); }

.contact-form { padding: 52px 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 14.8px;
  color: var(--ink);
  background: var(--bg-alt);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-msg {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14.3px;
  font-weight: 600;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.success { background: #E4F6EE; color: #14713F; }
.form-msg.error { background: #FCEBEA; color: #B3261E; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer-brand img { height: 48px; margin-bottom: 14px; }
.footer-brand p { max-width: 320px; font-size: 14px; color: var(--text-muted); }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { color: var(--ink); font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; color: var(--text-muted); margin-bottom: 10px; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #8B9997; }

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  z-index: 400;
  transition: transform 0.25s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.5), 0 0 0 10px rgba(37,211,102,0.12); }
}
@media (max-width: 600px) {
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 27px; height: 27px; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.54s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .wa-float { animation: none; }
}
