@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@700;800;900&family=Playfair+Display:wght@700;800;900&display=swap");

@font-face {
  font-family: "Tropical Avenue";
  src: url("public/fonts/Tropical-Avenue-Personal-Use-Only.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #020203;
  --ink: #090a0d;
  --panel: #15161a;
  --line: rgba(255,255,255,.12);
  --gold: #d99b2b;
  --gold-light: #f3d27b;
  --white: #f7f4ed;
  --muted: #c5cad3;
  --blue: #10243d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 6%, rgba(217,155,43,.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(16,36,61,.34), transparent 32%),
    linear-gradient(135deg, #020203 0%, #08090c 45%, #010101 100%);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
.svg-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.defs { display: none; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 22px;
  background: radial-gradient(circle at 50% 42%, rgba(217,155,43,.18), transparent 25%), #020203;
  transition: opacity .7s ease, visibility .7s ease, transform .7s ease;
}
.loader.hide { opacity: 0; visibility: hidden; transform: scale(1.04); pointer-events: none; }
.loader-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: min(310px, 72vw);
  height: min(310px, 72vw);
}
.loader-ring span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(240,198,109,.14);
  border-top-color: var(--gold);
  border-right-color: rgba(240,198,109,.72);
  box-shadow: 0 0 80px rgba(217,155,43,.22), inset 0 0 50px rgba(217,155,43,.08);
  animation: ringTurn 1.45s linear infinite;
}
.loader-ring img { width: 72%; filter: drop-shadow(0 0 30px rgba(217,155,43,.34)); }
.loader-line { width: min(300px, 70vw); height: 2px; background: rgba(255,255,255,.12); overflow: hidden; }
.loader-line i { display: block; width: 45%; height: 100%; background: var(--gold); animation: loadLine 1.2s ease-in-out infinite; }
@keyframes ringTurn { to { transform: rotate(360deg); } }
@keyframes loadLine { from { transform: translateX(-110%); } to { transform: translateX(240%); } }

.mouse-trail {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}
.mouse-trail.visible {
  opacity: 1;
}
.mouse-trail i {
  position: absolute;
  left: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,224,154,.95), rgba(217,155,43,.4) 48%, transparent 72%);
  box-shadow: 0 0 18px rgba(217,155,43,.7);
  transform: translate3d(-999px, -999px, 0);
  will-change: transform, opacity;
}
.mouse-trail i:nth-child(1) { width: 10px; height: 10px; opacity: .9; }
.mouse-trail i:nth-child(2) { opacity: .72; }
.mouse-trail i:nth-child(3) { opacity: .58; }
.mouse-trail i:nth-child(4) { opacity: .45; }
.mouse-trail i:nth-child(5) { opacity: .34; }
.mouse-trail i:nth-child(6) { opacity: .24; }
.mouse-trail i:nth-child(7) { opacity: .16; }
.mouse-trail i:nth-child(8) { opacity: .1; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(240,198,109,.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(2,2,3,.66);
  box-shadow: 0 18px 54px rgba(0,0,0,.22);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, padding .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(240,198,109,.26);
  background:
    radial-gradient(circle at 12% 50%, rgba(217,155,43,.14), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(2,2,3,.78);
  box-shadow: 0 22px 70px rgba(0,0,0,.34), 0 0 28px rgba(217,155,43,.08);
}
.brand img { width: 118px; height: 54px; object-fit: contain; filter: drop-shadow(0 0 18px rgba(217,155,43,.18)); }
.nav {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  flex-wrap: wrap;
  padding: 15px clamp(22px, 3vw, 42px);
  border: 1px solid rgba(240,198,109,.13);
  border-radius: 22px 6px 22px 6px;
  background:
    radial-gradient(circle at 14% 10%, rgba(240,198,109,.12), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.018)),
    rgba(2,2,3,.36);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 18px 52px rgba(0,0,0,.2);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
}
.nav::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,198,109,.42), transparent);
  opacity: .72;
}
.nav::after {
  display: none;
}
.nav a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 0 8px;
  border: 0;
  border-radius: 0;
  color: rgba(247,244,237,.78);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,.34);
  transition: color .24s ease, transform .24s ease, text-shadow .24s ease;
}
.nav a::before {
  display: none;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), transparent);
  opacity: 0;
  transform: translateX(-50%) scaleX(.2);
  transform-origin: center;
  transition: opacity .24s ease, transform .24s ease;
}
.nav a:first-child {
  color: #ffe6a5;
  text-shadow: 0 0 18px rgba(217,155,43,.24), 0 1px 14px rgba(0,0,0,.42);
}
.nav a:first-child::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}
.nav a:hover {
  color: #fff4ce;
  transform: translateY(-2px);
  text-shadow: 0 0 18px rgba(217,155,43,.28), 0 1px 14px rgba(0,0,0,.42);
}
.nav a:hover::after { opacity: 1; transform: translateX(-50%) scaleX(1); }
@keyframes navSweep {
  from { transform: translateX(0) skewX(-18deg); }
  to { transform: translateX(520%) skewX(-18deg); }
}
@keyframes navBarSweep {
  0%, 48% { left: -35%; opacity: 0; }
  58% { opacity: .9; }
  84%, 100% { left: 120%; opacity: 0; }
}
.menu-button,
.menu-toggle { display: none; }

main {
  padding-top: 83px;
}

section[id] {
  scroll-margin-top: 108px;
}
.emergency-cta {
  gap: 9px;
  min-width: 192px;
  border-radius: 14px 5px 14px 5px;
  box-shadow: 0 18px 48px rgba(217,155,43,.22), 0 0 26px rgba(240,198,109,.08);
}
.emergency-cta > span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff3be;
  box-shadow: 0 0 0 5px rgba(255,243,190,.18), 0 0 18px rgba(255,243,190,.82);
  animation: emergencyPulse 1.25s ease-in-out infinite;
}
@keyframes emergencyPulse {
  0%, 100% { transform: scale(.86); opacity: .72; }
  50% { transform: scale(1.12); opacity: 1; }
}

.btn, .mega-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(240,198,109,.42);
  border-radius: 8px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn::after, .mega-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 45%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  transition: left .55s ease;
}
.btn:hover::after, .mega-cta:hover::after { left: 125%; }
.btn:hover, .mega-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(217,155,43,.24); }
.btn-primary, .mega-cta { background: linear-gradient(135deg, #d99b2b, #f3d27b); color: #161006; }
.btn-glass { background: rgba(255,255,255,.06); color: var(--white); border-color: var(--line); }
.btn-blue { background: rgba(16,36,61,.74); color: var(--white); border-color: rgba(255,255,255,.16); }

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  min-height: 84vh;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 74px) clamp(48px, 8vw, 92px);
}
.hero::before {
  content: "";
  position: absolute;
  right: clamp(14px, 7vw, 120px);
  top: clamp(110px, 15vw, 190px);
  z-index: 0;
  width: clamp(94px, 12vw, 170px);
  aspect-ratio: 1;
  border: 1px solid rgba(240,198,109,.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240,198,109,.16), transparent 58%),
    repeating-conic-gradient(from 30deg, rgba(240,198,109,.18) 0 8deg, transparent 8deg 60deg);
  opacity: .62;
  filter: drop-shadow(0 0 38px rgba(217,155,43,.18));
  animation: heroSeal 10s linear infinite;
}
.hero > *,
.section > *,
.industrial-layout > *,
.contact > *,
.footer-grid > * { min-width: 0; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2,2,3,.9) 0%, rgba(2,2,3,.72) 42%, rgba(2,2,3,.5) 100%),
    linear-gradient(115deg, rgba(217,155,43,.18), transparent 34%),
    url("public/images/hero-equipe-clean-bee-2026.png") center / cover no-repeat,
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, auto, cover, 96px 96px, 96px 96px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, #020203);
}
.eyebrow { margin: 0 0 12px; color: var(--gold-light); font-size: 13px; font-weight: 950; text-transform: uppercase; }
@media (min-width: 901px) {
  .hero-brand-name {
    position: relative;
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 26px;
    padding: 18px clamp(18px, 2.8vw, 34px) 20px;
    border: 1px solid rgba(240,198,109,.32);
    border-radius: 24px 8px 24px 8px;
    font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(38px, 4.1vw, 64px);
    line-height: .92;
    letter-spacing: .025em;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
    color: transparent;
    background:
      linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
      linear-gradient(180deg, rgba(2,2,3,.7), rgba(2,2,3,.48)),
      rgba(2,2,3,.7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    backdrop-filter: blur(18px) saturate(1.16);
    -webkit-backdrop-filter: blur(18px) saturate(1.16);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.045),
      inset 0 1px 0 rgba(255,255,255,.1),
      0 22px 58px rgba(0,0,0,.34),
      0 0 34px rgba(217,155,43,.1);
    text-shadow:
      0 8px 22px rgba(0,0,0,.42);
    filter: drop-shadow(0 4px 12px rgba(217,155,43,.12));
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, filter .32s ease;
  }
  .hero-brand-name {
    background-clip: padding-box;
  }
  .hero-brand-name .brand-text {
    background: linear-gradient(180deg, #ffe8aa 0%, #efbd52 43%, #bd7419 100%);
  }
  .hero-brand-name {
    background:
      linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.035)),
      rgba(2,2,3,.7);
  }
  .hero-brand-name {
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-image:
      linear-gradient(180deg, #ffe8aa 0%, #efbd52 43%, #bd7419 100%),
      linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.035)),
      linear-gradient(180deg, rgba(2,2,3,.7), rgba(2,2,3,.48));
    background-origin: border-box;
    background-clip: text, padding-box, padding-box;
    -webkit-background-clip: text, padding-box, padding-box;
  }
  .hero-brand-name:hover {
    transform: translateY(-3px);
    border-color: rgba(255,224,154,.56);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.06),
      inset 0 1px 0 rgba(255,255,255,.14),
      0 28px 76px rgba(0,0,0,.42),
      0 0 42px rgba(217,155,43,.16);
    filter: drop-shadow(0 6px 18px rgba(217,155,43,.18));
  }
  .hero-brand-name::before {
    content: "";
    position: absolute;
    inset: -35% auto -35% -44%;
    width: 22%;
    background: linear-gradient(90deg, transparent, rgba(255,244,199,.38), transparent);
    transform: skewX(-18deg);
    animation: brandSweep 5.8s ease-in-out infinite;
    mix-blend-mode: screen;
  }
  .hero-brand-name::after {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin-top: 0;
    border-radius: 999px;
    background:
      radial-gradient(circle at 18% 34%, rgba(255,224,154,.58) 0 2px, transparent 3px),
      radial-gradient(circle at 38% 70%, rgba(240,198,109,.34) 0 1.5px, transparent 2.5px),
      radial-gradient(circle at 64% 30%, rgba(255,224,154,.42) 0 1.5px, transparent 2.5px),
      radial-gradient(circle at 84% 62%, rgba(217,155,43,.34) 0 2px, transparent 3px),
      linear-gradient(90deg, transparent 8%, rgba(240,198,109,.42), transparent 92%);
    opacity: .42;
    box-shadow: none;
    pointer-events: none;
    animation: brandSparks 6.5s ease-in-out infinite;
  }
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; overflow-wrap: anywhere; }
h1 {
  max-width: 980px;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -.025em;
}
h2 { font-size: clamp(30px, 4vw, 54px); }
p { color: var(--muted); }
.lead { max-width: 760px; color: #f3efe5; font-size: clamp(18px, 2.4vw, 26px); }
.hero-impact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 18px;
}
.hero-impact span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(240,198,109,.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    rgba(2,2,3,.42);
  color: rgba(246,244,238,.86);
  box-shadow: 0 14px 34px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.025);
  backdrop-filter: blur(12px);
}
.hero-impact strong {
  color: var(--gold-light);
  font-weight: 950;
}
.hero-warning {
  max-width: 720px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(240,198,109,.32);
  border-radius: 8px;
  background: rgba(217,155,43,.08);
  color: #f5d995;
  font-weight: 900;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@keyframes heroSeal {
  to { transform: rotate(360deg); }
}
.risk-panel {
  position: relative;
  min-height: clamp(440px, 54vw, 680px);
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(240,198,109,.22);
  border-radius: 46px 10px 46px 10px;
  background:
    linear-gradient(180deg, rgba(2,2,3,.24), rgba(2,2,3,.82) 54%, rgba(2,2,3,.96)),
    radial-gradient(circle at 28% 28%, rgba(217,155,43,.26), transparent 24%),
    url("public/images/apicultor-curitiba-remocao-abelhas.png") center / cover no-repeat,
    #050505;
  box-shadow: 0 30px 120px rgba(0,0,0,.65);
  transform: rotate(0deg);
}
.risk-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,2,3,.7) 0%, rgba(2,2,3,.34) 48%, rgba(2,2,3,.68) 100%),
    radial-gradient(circle at 24% 20%, rgba(240,198,109,.18), transparent 30%);
}
.risk-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(240,198,109,.16);
  border-radius: 36px 8px 36px 8px;
}
.risk-panel > img { position: relative; z-index: 2; width: min(230px, 52vw); margin-left: 6px; filter: drop-shadow(0 0 28px rgba(217,155,43,.36)); }
.honeycomb { position: absolute; inset: 8% -8% auto auto; display: grid; grid-template-columns: repeat(5, 58px); gap: 8px; opacity: .24; transform: rotate(18deg); }
.honeycomb span { width: 58px; height: 50px; clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%); border: 1px solid rgba(240,198,109,.6); background: linear-gradient(135deg, rgba(217,155,43,.18), transparent); animation: honeyPulse 3.8s ease-in-out infinite; }
.honeycomb span:nth-child(3n) { transform: translateY(28px); animation-delay: .4s; }
.risk-alert {
  position: relative;
  z-index: 2;
  margin-top: clamp(52px, 9vw, 112px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px 30px 8px 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
    rgba(2,2,3,.34);
  backdrop-filter: blur(12px) saturate(1.18);
  -webkit-backdrop-filter: blur(12px) saturate(1.18);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.035),
    0 18px 46px rgba(0,0,0,.24);
}
.risk-alert span { color: var(--gold-light); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.risk-alert strong { display: block; max-width: 520px; margin-top: 9px; color: #fff; font-size: clamp(30px, 4.2vw, 54px); line-height: .98; text-wrap: balance; text-shadow: 0 4px 22px rgba(0,0,0,.58); }
.risk-alert p { margin-bottom: 0; color: rgba(246,244,238,.86); font-size: 15px; text-shadow: 0 2px 16px rgba(0,0,0,.48); }
.mega-cta { z-index: 2; margin-top: 20px; min-height: 62px; padding: 16px 28px; border-radius: 999px; }
.risk-pills { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.risk-pills span {
  position: relative;
  overflow: hidden;
  padding: 8px 11px;
  border: 1px solid rgba(240,198,109,.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(255,255,255,.055);
  color: #f5d995;
  font-size: 13px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
  opacity: 0;
  transform: translateY(10px) scale(.96);
  animation: pillArrive .68s cubic-bezier(.18,.9,.22,1) forwards;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.risk-pills span::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,234,184,.34), transparent);
  transform: skewX(-18deg);
  animation: pillSweep 4.6s ease-in-out infinite;
  animation-delay: inherit;
}
.risk-pills span:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255,224,154,.58);
  background:
    linear-gradient(135deg, rgba(240,198,109,.16), rgba(255,255,255,.045)),
    rgba(255,255,255,.07);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 10px 28px rgba(217,155,43,.14);
}
.risk-pills span:nth-child(1) { animation-delay: .16s; }
.risk-pills span:nth-child(2) { animation-delay: .26s; }
.risk-pills span:nth-child(3) { animation-delay: .36s; }
.risk-pills span:nth-child(4) { animation-delay: .46s; }
.risk-pills span:nth-child(5) { animation-delay: .56s; }
.risk-pills span:nth-child(6) { animation-delay: .66s; }
.risk-pills span:nth-child(7) { animation-delay: .76s; }
.risk-pills span:nth-child(8) { animation-delay: .86s; }
.risk-pills span:nth-child(9) { animation-delay: .96s; }
.risk-pills span:nth-child(10) { animation-delay: 1.06s; }
.risk-pills span:nth-child(11) { animation-delay: 1.16s; }
.risk-pills span:nth-child(12) { animation-delay: 1.26s; }
.risk-pills span:nth-child(13) { animation-delay: 1.36s; }
.risk-pills span:nth-child(14) { animation-delay: 1.46s; }
.metrics { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
.metrics div { padding: 16px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.metrics strong { display: block; color: var(--gold-light); font-size: 22px; }
.metrics span { color: #b8bec9; font-size: 13px; }
@keyframes honeyPulse { 50% { opacity: .45; filter: drop-shadow(0 0 10px rgba(217,155,43,.45)); } }
@keyframes beeGlow {
  0%, 100% { opacity: .58; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes pillArrive {
  0% { opacity: 0; transform: translateY(12px) scale(.94); filter: blur(4px); }
  70% { opacity: 1; transform: translateY(-2px) scale(1.02); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes pillSweep {
  0%, 45% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  60% { opacity: 1; }
  78%, 100% { transform: translateX(360%) skewX(-18deg); opacity: 0; }
}
@keyframes brandSweep {
  0%, 48% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  62% { opacity: .85; }
  82%, 100% { transform: translateX(520%) skewX(-18deg); opacity: 0; }
}
@keyframes brandSparks {
  0%, 100% { opacity: .28; filter: blur(0); transform: translateY(0); }
  45% { opacity: .5; filter: blur(.2px); transform: translateY(-2px); }
  72% { opacity: .36; transform: translateY(1px); }
}

.section { padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 74px); }
.section-title { max-width: 860px; margin-bottom: 30px; }
.section-title p { font-size: 17px; }
.alert-section, .industrial {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  --path-progress: 0;
  --bee-opacity: 0;
}
.light-journey {
  color: #15120d;
  background:
    radial-gradient(circle at 12px 10px, rgba(217,155,43,.13) 1.2px, transparent 1.7px),
    radial-gradient(circle at 38px 32px, rgba(217,155,43,.1) 1.2px, transparent 1.7px),
    linear-gradient(90deg, rgba(217,155,43,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20,18,14,.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(217,155,43,.16), transparent 36%),
    #f6f1e7;
  background-size: 52px 45px, 52px 45px, 82px 82px, 82px 82px, auto, auto;
}
.alert-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(217,155,43,.13), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: auto, 88px 88px, 88px 88px;
  opacity: .7;
  pointer-events: none;
}
.light-journey::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.72), transparent 25%, transparent 75%, rgba(255,255,255,.72)),
    radial-gradient(circle at 78% 20%, rgba(217,155,43,.16), transparent 26%);
}
.attention-title { position: relative; z-index: 2; max-width: 980px; }
.light-journey .attention-title {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.light-journey .eyebrow { color: #9f6a10; }
.light-journey h2 { color: #14100a; }
.light-journey p { color: #5f5a52; }
.attention-journey {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1120px;
  margin: clamp(18px, 2.8vw, 34px) auto 0;
  min-height: 980px;
}
.journey-rail {
  position: absolute;
  inset: 0;
  width: 150px;
  margin-inline: auto;
  left: 0;
  right: 0;
  min-height: 920px;
}
.journey-rail svg {
  position: absolute;
  inset: 0;
  width: 150px;
  height: 100%;
  overflow: visible;
}
.journey-rail path { fill: none; stroke-width: 5; stroke-linecap: round; }
.path-base { stroke: rgba(158,105,20,.14); }
.path-lit {
  stroke: var(--gold);
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--path-progress));
  filter:
    drop-shadow(0 0 10px rgba(217,155,43,.95))
    drop-shadow(0 0 28px rgba(240,198,109,.36));
}
.journey-bee {
  position: absolute;
  top: calc(10px + (100% - 46px) * var(--path-progress));
  left: 54px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #f3bd3d;
  background:
    radial-gradient(circle, rgba(255,248,210,.96) 0 13%, rgba(217,155,43,.32) 15% 42%, rgba(14,10,3,.86) 44% 100%);
  box-shadow: 0 0 24px rgba(217,155,43,.62), 0 0 54px rgba(240,198,109,.24);
  transform: translateY(-50%);
  opacity: var(--bee-opacity);
  will-change: top, opacity;
  transition: opacity .28s ease;
}
.journey-bee::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(240,198,109,.26), transparent 68%);
  filter: blur(4px);
  animation: beeGlow 2.4s ease-in-out infinite;
}
.journey-bee svg {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  fill: rgba(243,210,123,.2);
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255,224,154,.7));
}
.journey-frames {
  position: relative;
  display: block;
  min-height: 920px;
}
.journey-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  width: min(420px, calc(50% - 112px));
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(20,18,14,.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.72)),
    #fff;
  box-shadow: 0 24px 72px rgba(30,23,10,.11);
  opacity: 0;
  transform: translateY(42px) scale(.975);
  will-change: opacity, transform;
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.18,.9,.22,1),
    border-color .7s ease,
    box-shadow .7s ease;
}
.journey-card:nth-child(1) { margin-left: calc(50% + 112px); margin-top: 0; }
.journey-card:nth-child(2) { margin-right: calc(50% + 112px); margin-left: auto; margin-top: 72px; }
.journey-card:nth-child(3) { margin-left: calc(50% + 112px); margin-top: 72px; }
.journey-card:nth-child(4) { margin-right: calc(50% + 112px); margin-left: auto; margin-top: 72px; }
.journey-card::before {
  content: "";
  position: absolute;
  top: 44px;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(217,155,43,.1), rgba(217,155,43,.7));
}
.journey-card:nth-child(odd)::before { left: -92px; }
.journey-card:nth-child(even)::before { right: -92px; transform: scaleX(-1); }
.journey-card:nth-child(odd)::after,
.journey-card:nth-child(even)::after {
  content: "";
  position: absolute;
  top: 35px;
  width: 18px;
  height: 18px;
  border: 2px solid #d99b2b;
  border-radius: 50%;
  background: #f6f1e7;
  box-shadow: 0 0 0 8px rgba(217,155,43,.08);
  opacity: 1;
}
.journey-card:nth-child(odd)::after { left: -103px; }
.journey-card:nth-child(even)::after { right: -103px; }
.journey-card::after {
  pointer-events: none;
}
.journey-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(217,155,43,.55);
  box-shadow: 0 30px 92px rgba(30,23,10,.17), 0 0 40px rgba(217,155,43,.16);
}
.step-number {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px 6px 18px 6px;
  border: 1px solid rgba(240,198,109,.42);
  color: #140e05;
  background: linear-gradient(135deg, #d99b2b, #f3d27b);
  font-weight: 950;
  box-shadow: 0 0 28px rgba(217,155,43,.24);
}
.journey-card strong { display: block; color: var(--white); font-size: clamp(20px, 2vw, 28px); }
.light-journey .journey-card strong { color: #14100a; }
.journey-card em {
  display: block;
  margin-bottom: 4px;
  color: #9f6a10;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}
.journey-card p { margin: 8px 0 0; font-size: 16px; }
.journey-card small {
  display: inline-flex;
  margin-top: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(217,155,43,.22);
  border-radius: 999px;
  color: #8a6118;
  background: rgba(217,155,43,.08);
  font-weight: 850;
}
.journey-emergency {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
  left: auto;
  bottom: auto;
  width: min(900px, 100%);
  margin: 64px auto 0;
  transform: none;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(217,155,43,.28);
  border-radius: 10px 36px 10px 36px;
  background:
    radial-gradient(circle at 14px 12px, rgba(217,155,43,.16) 1.4px, transparent 2px),
    radial-gradient(circle at 42px 36px, rgba(217,155,43,.12) 1.2px, transparent 1.9px),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,248,231,.9));
  background-size: 56px 48px, 56px 48px, auto;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(30,23,10,.16);
  opacity: 0;
  transform: translateY(50px) scale(.97);
  transition: opacity .58s ease, transform .58s cubic-bezier(.18,.9,.22,1), box-shadow .58s ease, border-color .58s ease;
}
.journey-emergency.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(217,155,43,.42);
  box-shadow:
    0 34px 110px rgba(30,23,10,.18),
    0 0 0 1px rgba(255,224,154,.14),
    0 0 58px rgba(217,155,43,.18);
}
.journey-emergency::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.74) 52%, rgba(255,255,255,.42) 100%),
    radial-gradient(circle at 100% 0%, rgba(217,155,43,.18), transparent 34%);
}
.journey-emergency::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(217,155,43,.18);
  border-radius: 8px 28px 8px 28px;
  pointer-events: none;
}
.journey-emergency > * { position: relative; z-index: 1; }
.journey-emergency-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(8px, 2vw, 18px);
  text-align: center;
}
.journey-emergency span {
  color: #9f6a10;
  font-weight: 950;
  text-transform: uppercase;
}
.journey-emergency h3 {
  max-width: 520px;
  margin-top: 12px;
  color: #14100a;
  font-size: clamp(30px, 3.4vw, 48px);
}
.journey-emergency p {
  max-width: 560px;
  color: #4c463b;
  font-size: 17px;
}
.journey-emergency-media {
  margin: 0;
  width: min(620px, 100%);
  aspect-ratio: 16 / 8.3;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(217,155,43,.22);
  border-radius: 8px 28px 8px 28px;
  background: #100d08;
  box-shadow: 0 24px 70px rgba(30,23,10,.18);
}
.journey-emergency-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  filter: contrast(1.08) saturate(.95);
}
.journey-final-cta {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 6px;
  width: min(620px, 100%);
  margin: clamp(8px, 1.8vw, 16px) auto 0;
  padding: clamp(18px, 2.2vw, 24px) clamp(30px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(146,89,12,.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.42), transparent 24%),
    linear-gradient(135deg, #d99b2b, #f4cf69 54%, #e0a42f);
  color: #120d05;
  font-weight: 950;
  text-align: center;
  box-shadow:
    0 20px 54px rgba(217,155,43,.28),
    0 0 0 8px rgba(217,155,43,.08),
    inset 0 1px 0 rgba(255,255,255,.52);
  font-family: "Bebas Neue", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(26px, 2.7vw, 36px);
  line-height: .92;
  letter-spacing: .045em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition:
    opacity .5s ease,
    transform .5s cubic-bezier(.18,.9,.22,1),
    box-shadow .24s ease,
    filter .24s ease;
}
.journey-final-cta.active,
.journey-emergency.active .journey-final-cta {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.journey-final-cta::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -36%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  animation: ctaSweep 4.4s ease-in-out infinite;
}
.journey-final-cta span {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: rgba(20,13,5,.72);
  font-size: clamp(10px, .75vw, 12px);
  line-height: 1.1;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.journey-final-cta:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 24px 68px rgba(217,155,43,.36),
    0 0 0 10px rgba(217,155,43,.1),
    inset 0 1px 0 rgba(255,255,255,.58);
  filter: saturate(1.06);
}
@keyframes ctaSweep {
  0%, 45% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  58% { opacity: .9; }
  82%, 100% { transform: translateX(620%) skewX(-18deg); opacity: 0; }
}

.service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; perspective: 1400px; }
.flip-card { aspect-ratio: 3 / 4; min-height: 0; perspective: 1400px; outline: none; cursor: pointer; }
.flip-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .85s cubic-bezier(.2,.8,.2,1); }
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-face { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 30px 8px 30px 8px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)), #090a0d; box-shadow: 0 24px 70px rgba(0,0,0,.32); backface-visibility: hidden; }
.flip-face::after { content: ""; position: absolute; inset: -35% auto -35% -80%; width: 54%; transform: skewX(-18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent); transition: left .7s ease; }
.flip-card:hover .flip-face::after { left: 130%; }
.back { transform: rotateY(180deg); border-color: rgba(240,198,109,.38); background: radial-gradient(circle at 72% 18%, rgba(217,155,43,.18), transparent 26%), linear-gradient(145deg, rgba(217,155,43,.14), rgba(255,255,255,.03)), #050505; }
.image-front { justify-content: flex-end; isolation: isolate; }
.image-front > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: contrast(1.08) saturate(.96);
  transition: transform .65s ease;
}
.image-front::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2,2,3,.08) 0%, rgba(2,2,3,.18) 38%, rgba(2,2,3,.9) 100%),
    radial-gradient(circle at 28% 18%, rgba(217,155,43,.24), transparent 28%);
}
.flip-card:hover .image-front > img { transform: scale(1.06); }
.image-front > div { position: relative; z-index: 1; }
.flip-face svg { width: 58px; height: 58px; margin-bottom: 14px; padding: 12px; border-radius: 16px 6px 16px 6px; background: rgba(217,155,43,.16); border: 1px solid rgba(240,198,109,.36); color: var(--gold-light); fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.flip-face h3 { font-size: clamp(18px, 1.8vw, 24px); }
.flip-face p { font-size: 15px; }
.seo-back {
  gap: 9px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(217,155,43,.18), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(240,198,109,.18), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    #050505;
}
.seo-back::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(240,198,109,.45) 12%, transparent 12.5%, transparent 87%, rgba(240,198,109,.45) 87.5%, rgba(240,198,109,.45)),
    linear-gradient(150deg, rgba(240,198,109,.45) 12%, transparent 12.5%, transparent 87%, rgba(240,198,109,.45) 87.5%, rgba(240,198,109,.45)),
    linear-gradient(30deg, rgba(240,198,109,.45) 12%, transparent 12.5%, transparent 87%, rgba(240,198,109,.45) 87.5%, rgba(240,198,109,.45)),
    linear-gradient(150deg, rgba(240,198,109,.45) 12%, transparent 12.5%, transparent 87%, rgba(240,198,109,.45) 87.5%, rgba(240,198,109,.45));
  background-size: 42px 74px;
  background-position: 0 0, 0 0, 21px 37px, 21px 37px;
  mask-image: radial-gradient(circle at 72% 14%, black, transparent 58%);
}
.seo-back > * { position: relative; z-index: 1; }
.seo-back svg {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
  padding: 9px;
  border-radius: 14px 5px 14px 5px;
  box-shadow: 0 12px 28px rgba(217,155,43,.14);
}
.seo-back h3 {
  max-width: 14ch;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.04;
}
.seo-back p {
  color: rgba(246,244,238,.82);
  font-size: clamp(12.5px, .9vw, 13.5px);
  line-height: 1.45;
}
.seo-back ul {
  display: grid;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}
.seo-back li {
  position: relative;
  padding-left: 18px;
  color: rgba(246,244,238,.9);
  font-size: clamp(12px, .82vw, 13px);
  line-height: 1.28;
}
.seo-back li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(240,198,109,.5);
}
.seo-query {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 2px;
  padding: 7px 9px;
  border: 1px solid rgba(240,198,109,.28);
  border-radius: 999px;
  background: rgba(240,198,109,.08);
  color: rgba(245,217,149,.94);
  font-size: clamp(10.5px, .72vw, 11.5px);
  font-weight: 900;
  line-height: 1.2;
}
.seo-back a {
  padding: 9px 12px;
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(217,155,43,.22);
}
.hint { position: absolute; top: 14px; right: 14px; z-index: 2; padding: 7px 9px; border: 1px solid rgba(240,198,109,.32); border-radius: 999px; background: rgba(2,2,3,.58); color: rgba(245,217,149,.9); font-size: 10px; text-transform: uppercase; font-weight: 950; backdrop-filter: blur(10px); }
.flip-face a { width: max-content; margin-top: auto; padding: 11px 14px; border-radius: 999px; background: var(--gold); color: #120d05; font-weight: 900; }

.photo-carousel { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0; border-block: 1px solid rgba(255,255,255,.08); background: radial-gradient(circle at 50% 50%, rgba(217,155,43,.08), transparent 38%), #020203; }
.carousel-stage { position: relative; height: clamp(360px, 43vw, 620px); max-width: 1280px; margin: 0 auto; perspective: 1600px; }
.carousel-card { position: absolute; top: 50%; left: 50%; width: clamp(250px, 34vw, 530px); height: clamp(320px, 39vw, 590px); padding: 0; overflow: hidden; border: 1px solid rgba(240,198,109,.18); border-radius: 36px 8px 36px 8px; background: #050505; box-shadow: 0 28px 90px rgba(0,0,0,.5); transform: translate(-50%, -50%) translateX(var(--x)) scale(var(--scale)) rotateY(var(--rotate)); opacity: var(--opacity); z-index: var(--z); transition: transform .9s cubic-bezier(.2,.8,.2,1), opacity .9s ease; cursor: pointer; }
.carousel-card.active { z-index: 80; border-color: rgba(240,198,109,.44); box-shadow: 0 34px 120px rgba(0,0,0,.62), 0 0 42px rgba(217,155,43,.12); transform: translate(-50%, -50%) translateX(0) scale(1.08) rotateY(0deg); opacity: 1; }
.carousel-card img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(.96); }
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 120;
  display: grid;
  place-items: center;
  width: clamp(46px, 5vw, 64px);
  height: clamp(46px, 5vw, 64px);
  border: 1px solid rgba(240,198,109,.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,224,154,.34), transparent 36%),
    rgba(7,7,8,.78);
  color: var(--gold-light);
  box-shadow: 0 18px 54px rgba(0,0,0,.5), 0 0 24px rgba(217,155,43,.18);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.carousel-arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  color: inherit;
  line-height: 0;
}
.carousel-arrow span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(11px, 1.25vw, 16px);
  height: clamp(11px, 1.25vw, 16px);
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform-origin: center;
  filter: drop-shadow(0 0 8px rgba(255,224,154,.55));
}
.carousel-next span::before {
  transform: translate(-62%, -50%) rotate(45deg);
}
.carousel-prev span::before {
  transform: translate(-38%, -50%) rotate(225deg);
}
.carousel-prev { left: max(18px, calc((100vw - 1320px) / 2)); }
.carousel-next { right: max(18px, calc((100vw - 1320px) / 2)); }
.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  border-color: rgba(255,224,154,.86);
  box-shadow: 0 18px 58px rgba(0,0,0,.56), 0 0 32px rgba(217,155,43,.3);
}
.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.carousel-dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.25); }
.carousel-dots button.active { width: 34px; background: var(--gold); }

.split { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(260px, .58fr); gap: clamp(24px, 5vw, 72px); align-items: center; }
.framed-photo { position: relative; margin: 0; overflow: hidden; padding: 10px; border: 1px solid rgba(240,198,109,.16); border-radius: 6px 28px 6px 28px; background: #050505; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.framed-photo img { width: 100%; height: clamp(260px, 32vw, 390px); object-fit: cover; border-radius: 4px 20px 4px 20px; }
.framed-photo figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 6px; background: rgba(2,2,3,.66); color: var(--muted); backdrop-filter: blur(10px); }
.education-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .84fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  color: #15110a;
  background:
    radial-gradient(circle at 16% 20%, rgba(217,155,43,.16), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(217,155,43,.12), transparent 30%),
    linear-gradient(rgba(217,155,43,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,155,43,.045) 1px, transparent 1px),
    #f7f1e5;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  border-block: 1px solid rgba(154,104,23,.18);
  overflow: hidden;
}
.education-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(30deg, #c08a26 12%, transparent 12.5%, transparent 87%, #c08a26 87.5%, #c08a26),
    linear-gradient(150deg, #c08a26 12%, transparent 12.5%, transparent 87%, #c08a26 87.5%, #c08a26),
    linear-gradient(30deg, #c08a26 12%, transparent 12.5%, transparent 87%, #c08a26 87.5%, #c08a26),
    linear-gradient(150deg, #c08a26 12%, transparent 12.5%, transparent 87%, #c08a26 87.5%, #c08a26);
  background-size: 58px 100px;
  background-position: 0 0, 0 0, 29px 50px, 29px 50px;
  mask-image: radial-gradient(circle at 88% 16%, black, transparent 45%);
}
.education-section > * { position: relative; z-index: 1; }
.education-section .eyebrow { color: #9a6817; }
.education-section h2 {
  max-width: 900px;
  color: #111;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .92;
  letter-spacing: 0;
}
.education-lead {
  max-width: 940px;
  color: #4a4032;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}
.education-lead::first-letter {
  float: left;
  margin: 8px 10px 0 0;
  color: #9a6817;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6em;
  line-height: .72;
  font-weight: 700;
}
.education-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}
.education-grid article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(154,104,23,.2);
  border-radius: 22px 6px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 50px rgba(82,62,28,.08);
}
.education-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px 4px;
  background: linear-gradient(135deg, #f0c66d, #d99b2b);
  color: #150d02;
  font-weight: 950;
}
.education-grid strong {
  display: block;
  color: #15110a;
  font-size: 18px;
}
.education-grid p {
  color: #5d5347;
  font-size: 14px;
  line-height: 1.5;
}
.education-video-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 14px;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 10px;
  border: 1px solid rgba(154,104,23,.22);
  border-radius: 34px 8px;
  background: #0a0907;
  box-shadow: 0 32px 90px rgba(82,62,28,.22);
  overflow: hidden;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 26px 5px;
}
.video-sound-toggle {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(240,198,109,.55);
  border-radius: 50%;
  background: rgba(5,5,5,.74);
  color: #f0c66d;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
}
.video-sound-toggle svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.video-sound-toggle:not(.on) .sound-wave { opacity: .2; }
.education-video-card > p {
  max-width: 640px;
  margin: 0;
  color: #675c4e;
  font-size: 14px;
}
.industrial {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(240,198,109,.18);
  border-bottom: 1px solid rgba(240,198,109,.14);
}
.industrial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .62;
  background:
    radial-gradient(circle at 18% 24%, rgba(240,198,109,.18) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 18%, rgba(240,198,109,.14) 0 1px, transparent 3px),
    radial-gradient(circle at 84% 70%, rgba(240,198,109,.16) 0 2px, transparent 4px),
    radial-gradient(circle at 42% 76%, rgba(255,224,154,.13) 0 1px, transparent 3px);
  background-size: 220px 180px, 300px 240px, 260px 220px, 190px 170px;
  animation: industrialSparks 12s linear infinite;
}
.industrial::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(217,155,43,.12), transparent 34%),
    radial-gradient(circle at 16% 35%, rgba(217,155,43,.2), transparent 30%),
    radial-gradient(circle at 82% 44%, rgba(16,36,61,.38), transparent 36%),
    linear-gradient(180deg, #050608, #090b0f 48%, #030405);
}
.industrial-layout {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}
.industrial-copy {
  position: relative;
  z-index: 1;
}
.industrial-priority {
  position: relative;
  display: grid;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 28px;
  padding: clamp(18px, 2.4vw, 28px) clamp(20px, 3.2vw, 38px);
  border: 1px solid rgba(240,198,109,.28);
  border-radius: 30px 8px 30px 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255,224,154,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025)),
    rgba(8,9,11,.5);
  box-shadow:
    0 26px 82px rgba(0,0,0,.34),
    0 0 42px rgba(217,155,43,.1),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(1.12);
}
.industrial-priority::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -60%;
  width: 46%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,234,177,.34), transparent);
  animation: shineSweep 4.8s ease-in-out infinite;
}
.industrial-priority span {
  width: fit-content;
  color: transparent;
  background: linear-gradient(180deg, #fff2bd 0%, #edba4e 46%, #ae6d18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 54px);
  line-height: .92;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -.02em;
  text-shadow: 0 20px 52px rgba(0,0,0,.48);
}
.industrial-priority strong {
  color: #fff8e7;
  max-width: 670px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.36;
  font-weight: 750;
  opacity: .9;
}
.industrial-lead {
  max-width: 760px;
  color: #e5e0d6;
  font-size: 17px;
}
.industrial-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 26px;
}
.industrial-proof article {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(240,198,109,.18);
  border-radius: 24px 8px 24px 8px;
  background:
    radial-gradient(circle at 22% 20%, rgba(240,198,109,.14), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.industrial-proof article::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(240,198,109,.08) 12%, transparent 12.5%, transparent 87%, rgba(240,198,109,.08) 87.5%, rgba(240,198,109,.08)),
    linear-gradient(150deg, rgba(240,198,109,.08) 12%, transparent 12.5%, transparent 87%, rgba(240,198,109,.08) 87.5%, rgba(240,198,109,.08));
  background-size: 34px 58px;
  opacity: .18;
}
.industrial-proof strong,
.industrial-proof span {
  position: relative;
  z-index: 1;
  display: block;
}
.industrial-proof strong {
  margin-bottom: 8px;
  color: #ffe7a8;
  font-size: 16px;
}
.industrial-proof span {
  color: #cbc7bd;
  font-size: 14px;
  line-height: 1.55;
}
.industrial-tags {
  max-width: 650px;
  gap: 8px;
  margin-top: 20px;
}
.industrial-tags span {
  padding: 9px 13px;
  border-color: rgba(240,198,109,.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(2,2,3,.32);
  color: rgba(255,244,216,.86);
  font-size: 13px;
  font-weight: 700;
}
.industrial-cta {
  min-width: min(100%, 310px);
  justify-content: center;
}
.industrial-media {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(240,198,109,.22);
  border-radius: 38px 10px 38px 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.025)),
    rgba(255,255,255,.03);
  box-shadow: 0 34px 110px rgba(0,0,0,.46), 0 0 48px rgba(217,155,43,.1);
}
.industrial-media::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(240,198,109,.46), transparent 36%, rgba(240,198,109,.2));
  opacity: .42;
  z-index: -1;
}
.industrial-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 30px 8px 30px 8px;
}
.industrial-media figcaption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px 6px 20px 6px;
  background: rgba(3,4,6,.62);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,.34);
}
.industrial-media figcaption span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.industrial-media figcaption strong {
  color: #fff;
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.18;
}
.tag-list, .tag-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list span, .tag-grid span {
  position: relative;
  overflow: hidden;
  padding: 10px 12px;
  border: 1px solid rgba(240,198,109,.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(240,198,109,.11), rgba(255,255,255,.035)),
    rgba(255,255,255,.045);
  color: #eef0f3;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 12px 30px rgba(0,0,0,.18);
  transition: transform .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}
.tag-list span::before, .tag-grid span::before {
  content: "";
  position: absolute;
  inset: -140% auto -140% -70%;
  width: 52%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,224,154,.28), transparent);
  transition: left .55s ease;
}
.tag-list span:hover, .tag-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(240,198,109,.58);
  color: #fff7df;
  box-shadow: 0 0 24px rgba(217,155,43,.18), 0 16px 36px rgba(0,0,0,.26);
}
.tag-list span:hover::before, .tag-grid span:hover::before { left: 126%; }
@keyframes industrialSparks {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 220px -180px, -300px 240px, 260px -220px, -190px 170px; }
}
@keyframes shineSweep {
  0%, 42% { left: -68%; opacity: 0; }
  52% { opacity: 1; }
  82%, 100% { left: 126%; opacity: 0; }
}

.faq-preview {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(72px, 8vw, 110px);
  background:
    radial-gradient(circle at 18% 22%, rgba(217,155,43,.14), transparent 28%),
    radial-gradient(circle at 86% 48%, rgba(16,36,61,.24), transparent 34%),
    linear-gradient(135deg, #030405 0%, #090b0f 48%, #020203 100%);
}
.faq-preview::before {
  content: "";
  position: absolute;
  inset: 28px clamp(18px, 4vw, 70px);
  z-index: -1;
  border: 1px solid rgba(240,198,109,.18);
  border-radius: 34px 8px 34px 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 36px 110px rgba(0,0,0,.44);
}
.faq-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 13% 22%, rgba(255,218,127,.24) 0 2px, transparent 4px),
    radial-gradient(circle at 24% 54%, rgba(240,198,109,.14) 0 1px, transparent 3px),
    radial-gradient(circle at 54% 30%, rgba(255,218,127,.16) 0 1px, transparent 3px);
  background-size: 210px 180px, 290px 220px, 330px 260px;
  animation: industrialSparks 14s linear infinite;
  opacity: .72;
}
.faq-preview-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  width: min(1640px, 100%);
  margin: 0 auto;
}
.faq-preview .section-title {
  max-width: none;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(240,198,109,.16);
  border-radius: 34px 8px 34px 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(4,5,7,.68);
  backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
}
.faq-preview .section-title h2 {
  max-width: 760px;
  text-shadow: 0 18px 46px rgba(0,0,0,.55);
}
.faq-preview .section-title p {
  color: #e8e1d2;
}
.faq-preview .section-title .btn {
  margin-top: 24px;
}
.faq-preview-media {
  position: relative;
  margin: 0;
  padding: 10px;
  width: min(760px, 100%);
  aspect-ratio: 5 / 4;
  justify-self: center;
  border: 1px solid rgba(240,198,109,.2);
  border-radius: 38px 8px 38px 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  box-shadow: 0 32px 100px rgba(0,0,0,.46), 0 0 54px rgba(217,155,43,.1);
}
.faq-preview-media::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 46px 10px 46px 10px;
  background: radial-gradient(circle at 48% 46%, rgba(240,198,109,.14), transparent 58%);
}
.faq-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px 6px 30px 6px;
  background: #080807;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.faq-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 150px) clamp(18px, 5vw, 74px) clamp(54px, 8vw, 94px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(2,2,3,.98), rgba(2,2,3,.82)),
    url("public/images/hero-industrial-alt.png") center / cover no-repeat;
}
.faq-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, #020203);
}
.faq-hero > * { position: relative; z-index: 1; max-width: 980px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}
.faq-page {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}
.faq-page > .faq-wrap {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: clamp(18px, 3vw, 34px);
  width: 100%;
}
.faq-block {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(240,198,109,.16);
  border-radius: 24px 8px 24px 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(217,155,43,.1), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}
.faq-block h2 {
  max-width: 18ch;
  margin: 0 0 14px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.04;
  text-wrap: balance;
}
.faq-block p {
  max-width: 68ch;
}
.faq-block details {
  max-width: none;
}
.faq-index {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(240,198,109,.18);
  border-radius: 22px 8px 22px 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}
.faq-index strong {
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 13px;
}
.faq-index a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #d8dde6;
}
.faq-index a:hover { background: rgba(217,155,43,.12); color: #fff; }
.faq-content h2 {
  margin: 42px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
}
.faq-content h2:first-child { margin-top: 0; }
.faq details, .faq-content details {
  max-width: 1040px;
  margin: 10px 0;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px 6px 16px 6px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  transition: border-color .2s ease, background .2s ease;
}
.faq details[open], .faq-content details[open] {
  border-color: rgba(240,198,109,.34);
  background: linear-gradient(145deg, rgba(217,155,43,.1), rgba(255,255,255,.035));
}
.faq summary, .faq-content summary {
  cursor: pointer;
  padding: 18px;
  color: #fff;
  font-weight: 900;
}
.faq details p, .faq-content details p {
  margin: 0;
  padding: 0 18px 18px;
  color: #c9ced7;
}
.contact { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background:
  linear-gradient(90deg, rgba(5,5,6,.88) 0%, rgba(5,5,6,.74) 48%, rgba(5,5,6,.9) 100%),
  radial-gradient(circle at 0% 48%, rgba(217,155,43,.18), transparent 34%),
  url("public/images/orcamento-colmeia-clean-bee.png") left center / cover no-repeat,
  #050506; border-block: 1px solid rgba(240,198,109,.22); }
.contact-card { display: grid; gap: 10px; min-width: 300px; }
.footer {
  padding: 34px clamp(18px, 5vw, 74px) 6px;
  border-top: 1px solid rgba(240,198,109,.18);
  background:
    radial-gradient(circle at 18% 0%, rgba(217,155,43,.13), transparent 32%),
    #050608;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr 1fr;
  gap: clamp(18px, 3.6vw, 48px);
  align-items: start;
}
.footer img { width: 138px; margin-bottom: 10px; }
.footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 13px;
}
.footer a {
  display: block;
  margin: 7px 0;
  color: #d9dee7;
}
.footer a:hover { color: #fff; }
.footer p { margin-top: 0; }
.footer small { color: #9ba3af; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 12px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #9ba3af;
  font-size: 13px;
}
.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--gold-light);
  font-weight: 800;
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: clamp(74px, 6.2vw, 92px);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(240,198,109,.13), transparent 62%),
    rgba(2,2,3,.74);
  box-shadow: 0 18px 54px rgba(0,0,0,.48), inset 0 0 0 1px rgba(240,198,109,.2);
  backdrop-filter: blur(12px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.floating-whatsapp .neon-ring {
  position: absolute;
  inset: -5px;
  z-index: 0;
  border-radius: 50%;
  border: 2px solid rgba(240,198,109,.88);
  box-shadow:
    0 0 12px rgba(240,198,109,.38),
    0 0 28px rgba(217,155,43,.2),
    inset 0 0 18px rgba(240,198,109,.1);
  pointer-events: none;
  animation: sosRingGlow 2.1s ease-in-out infinite;
}
.whatsapp-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 25%, rgba(255,255,255,.86), transparent 14%),
    linear-gradient(145deg, #42e66b, #13ad4d 58%, #088334);
  box-shadow:
    0 0 0 7px rgba(240,198,109,.08),
    0 0 24px rgba(35,213,91,.46),
    inset 0 -9px 18px rgba(0,0,0,.18);
}
.whatsapp-core::before {
  content: "";
  position: absolute;
  inset: -13px;
  border-radius: 50%;
  border: 1px solid rgba(240,198,109,.36);
  background:
    conic-gradient(from 10deg, rgba(240,198,109,.1), rgba(240,198,109,.62), rgba(240,198,109,.08), rgba(240,198,109,.42), rgba(240,198,109,.1));
  mask: radial-gradient(circle, transparent 58%, #000 60%);
  opacity: .86;
}
.whatsapp-core svg {
  position: relative;
  z-index: 1;
  width: 60%;
  height: 60%;
  fill: none;
  stroke: #fff;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}
.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 32px rgba(240,198,109,.26), 0 22px 70px rgba(0,0,0,.58), inset 0 0 0 1px rgba(255,224,154,.28);
}
@keyframes sosRingGlow {
  0%, 100% {
    opacity: .68;
    transform: scale(.96);
    box-shadow: 0 0 10px rgba(240,198,109,.28), 0 0 24px rgba(217,155,43,.16), inset 0 0 14px rgba(240,198,109,.08);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
    box-shadow: 0 0 18px rgba(240,198,109,.68), 0 0 42px rgba(217,155,43,.28), inset 0 0 20px rgba(240,198,109,.14);
  }
}

@media (max-width: 1500px) {
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1180px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .mouse-trail { display: none; }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 18px; }
  main { padding-top: 79px; }
  section[id] { scroll-margin-top: 96px; }
  .brand img { width: 96px; height: 50px; }
  .header-cta { display: none; }
  .menu-button,
  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(240,198,109,.54);
    border-radius: 12px 4px 12px 4px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03)),
      rgba(2,2,3,.44);
    box-shadow: 0 0 0 1px rgba(255,255,255,.035), 0 0 22px rgba(217,155,43,.14);
    backdrop-filter: blur(14px);
  }
  .menu-button span,
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-light);
    box-shadow: 0 0 12px rgba(240,198,109,.38);
    transition: transform .22s ease, opacity .22s ease;
  }
  .menu-button[aria-expanded="true"] span:nth-child(1),
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:nth-child(2),
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-button[aria-expanded="true"] span:nth-child(3),
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: start;
    gap: 2px;
    margin-top: 10px;
    margin-left: auto;
    width: min(230px, 72vw);
    padding: 14px 16px;
    border: 1px solid rgba(240,198,109,.16);
    border-radius: 22px 6px 22px 6px;
    background:
      radial-gradient(circle at 100% 0%, rgba(217,155,43,.18), transparent 34%),
      linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
      rgba(2,2,3,.72);
    box-shadow: 0 22px 62px rgba(0,0,0,.34);
    backdrop-filter: blur(20px) saturate(1.18);
    -webkit-backdrop-filter: blur(20px) saturate(1.18);
  }
  .nav.open { display: flex; }
  .nav::before,
  .nav::after {
    display: none;
  }
  .nav a {
    width: 100%;
    justify-content: flex-end;
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(246,244,238,.92);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    text-align: right;
  }
  .nav a + a { border-top: 1px solid rgba(255,255,255,.07); }
  .nav a::after {
    left: auto;
    right: 0;
    bottom: 6px;
    transform: scaleX(.2);
    transform-origin: right;
  }
  .nav a:hover {
    background: transparent;
    border-color: transparent;
    transform: translateX(-4px);
  }
  .nav a:hover::after { transform: scaleX(1); }
  .hero { padding-inline: 24px; }
  .hero, .split, .education-section, .contact, .industrial-layout, .faq-page, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions {
    gap: 12px;
  }
  .faq-page > .faq-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-block h2 {
    max-width: none;
  }
  .industrial-layout {
    gap: 30px;
  }
  .industrial-priority {
    width: 100%;
  }
  .industrial-proof {
    grid-template-columns: 1fr;
  }
  .industrial-media figcaption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 10px;
    padding: 14px 16px;
    border-radius: 18px 6px 18px 6px;
    background:
      radial-gradient(circle at 18% 10%, rgba(240,198,109,.2), transparent 34%),
      rgba(3,4,6,.72);
  }
  .faq-preview {
    padding-block: 56px;
  }
  .faq-preview::before {
    inset: 18px;
  }
  .faq-preview-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-preview .section-title {
    max-width: none;
  }
  .faq-preview-media img {
    max-height: none;
  }
  .education-grid { grid-template-columns: 1fr; }
  .education-grid article { min-height: auto; }
  .faq-index { position: relative; top: auto; }
  .attention-journey {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 12px;
    padding-left: 42px;
  }
  .attention-journey::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 8px;
    bottom: 290px;
    width: 64px;
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% calc(var(--path-progress) * 100%), rgba(240,198,109,.28), transparent 18%),
      linear-gradient(180deg, rgba(217,155,43,.12), transparent 22%, transparent 78%, rgba(217,155,43,.1));
    filter: blur(8px);
    pointer-events: none;
  }
  .journey-rail {
    display: block;
    left: 0;
    right: auto;
    top: 0;
    bottom: 300px;
    width: 62px;
    min-height: auto;
    margin: 0;
  }
  .journey-rail svg {
    width: 62px;
    height: 100%;
    filter: drop-shadow(0 0 18px rgba(217,155,43,.22));
  }
  .journey-rail path {
    stroke-width: 7;
  }
  .path-base {
    stroke: rgba(158,105,20,.08);
  }
  .path-lit {
    stroke-width: 8;
    filter: drop-shadow(0 0 13px rgba(217,155,43,.85)) drop-shadow(0 0 28px rgba(240,198,109,.28));
  }
  .journey-bee {
    left: 18px;
    width: 26px;
    height: 18px;
    box-shadow: 0 0 22px rgba(217,155,43,.9), 0 0 46px rgba(240,198,109,.34);
  }
  .journey-bee span,
  .journey-bee i {
    top: -7px;
    width: 15px;
    height: 12px;
  }
  .journey-frames {
    display: grid;
    gap: 18px;
    min-height: auto;
  }
  .journey-card {
    width: 100%;
    margin: 0 !important;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 26px 8px 26px 8px;
    opacity: 0;
    transform: translateY(28px) scale(.975);
    box-shadow: 0 18px 52px rgba(62,45,13,.09);
    pointer-events: none;
  }
  .journey-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 22px 70px rgba(62,45,13,.17), 0 0 34px rgba(217,155,43,.12);
    pointer-events: auto;
  }
  .journey-card::before {
    display: block;
    left: -34px !important;
    right: auto !important;
    top: 42px;
    width: 28px;
    height: 2px;
    transform: none !important;
    background: linear-gradient(90deg, rgba(217,155,43,.8), rgba(217,155,43,.18));
    opacity: 0;
    transition: opacity .42s ease;
  }
  .journey-card::after {
    display: block;
    left: -49px !important;
    right: auto !important;
    top: 33px;
    width: 20px;
    height: 20px;
    background:
      radial-gradient(circle, #fff8d5 0 22%, var(--gold) 24% 46%, #f6f1e7 49%);
    border: 2px solid rgba(217,155,43,.95);
    box-shadow: 0 0 0 7px rgba(217,155,43,.1), 0 0 24px rgba(217,155,43,.5);
    opacity: 0;
    transition: opacity .42s ease, box-shadow .42s ease;
  }
  .journey-card.active::before {
    opacity: 1;
  }
  .journey-card.active::after {
    opacity: 1;
    animation: mobileStepPulse 1.75s ease-in-out infinite;
  }
  .step-number {
    width: 54px;
    height: 54px;
    border-radius: 16px 6px 16px 6px;
  }
  .journey-card p {
    font-size: 15px;
  }
  .journey-card small {
    border-radius: 18px;
    line-height: 1.25;
  }
  .journey-emergency {
    position: relative;
    grid-template-columns: 1fr;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    top: auto;
  }
  .journey-final-cta {
    width: min(300px, 100%);
    margin-top: 8px;
    padding: 14px 20px 15px;
    font-size: 24px;
    line-height: .92;
    letter-spacing: .025em;
    box-shadow:
      0 14px 34px rgba(217,155,43,.22),
      0 0 0 6px rgba(217,155,43,.06),
      inset 0 1px 0 rgba(255,255,255,.48);
  }
  .journey-final-cta span {
    font-size: 9px;
    letter-spacing: .09em;
  }
  @keyframes mobileStepPulse {
    0%, 100% { box-shadow: 0 0 0 7px rgba(217,155,43,.1), 0 0 22px rgba(217,155,43,.42); }
    50% { box-shadow: 0 0 0 12px rgba(217,155,43,.16), 0 0 34px rgba(217,155,43,.72); }
  }
  .tag-grid span {
    box-shadow: 0 0 18px rgba(217,155,43,.1), inset 0 0 0 1px rgba(255,255,255,.03);
  }
  .tag-grid span:active {
    transform: scale(.97);
    border-color: rgba(240,198,109,.74);
    background:
      radial-gradient(circle at 30% 20%, rgba(255,224,154,.28), transparent 40%),
      rgba(217,155,43,.14);
  }
  .footer {
    padding-bottom: 10px;
  }
  .footer-grid {
    gap: 20px;
  }
  .footer-bottom {
    margin-top: 18px;
    padding-top: 12px;
  }
}
@media (max-width: 560px) {
  h1 { max-width: 100%; font-size: 31px; line-height: 1.09; word-break: break-word; }
  h2 { font-size: 32px; }
  .hero {
    min-height: auto;
    padding: 54px 22px 58px;
    border-bottom: 1px solid rgba(240,198,109,.16);
  }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(2,2,3,.66) 0%, rgba(2,2,3,.78) 44%, rgba(2,2,3,.92) 100%),
      linear-gradient(115deg, rgba(217,155,43,.2), transparent 42%),
      url("public/images/hero-equipe-clean-bee-mobile.png") center top / 100% auto no-repeat,
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(0deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: auto, auto, 100% auto, 72px 72px, 72px 72px;
    transform: translate3d(0, calc(var(--hero-parallax, 0px) * .35), 0);
  }
  .hero::before {
    right: 18px;
    top: 74px;
    width: 96px;
    opacity: .42;
  }
  .hero-copy {
    position: relative;
    z-index: 1;
  }
  .hero-copy .eyebrow {
    display: inline-flex;
    padding: 6px 9px;
    border: 1px solid rgba(240,198,109,.26);
    border-radius: 999px;
    background: rgba(2,2,3,.34);
    backdrop-filter: blur(10px);
  }
  .lead { font-size: 18px; }
  .hero-impact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 16px;
  }
  .hero-impact span {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1px;
    min-height: 58px;
    padding: 8px 6px;
    border-radius: 18px 6px 18px 6px;
    text-align: center;
    font-size: 11px;
    line-height: 1.15;
  }
  .hero-impact strong {
    display: block;
    font-size: 16px;
  }
  .risk-panel { min-height: auto; padding: 24px; border-radius: 30px 8px; }
  .risk-alert strong { font-size: 30px; }
  .actions {
    display: grid;
    gap: 10px;
  }
  .actions, .btn, .mega-cta { width: 100%; }
  .actions .btn-primary {
    min-height: 54px;
    border-radius: 16px 6px 16px 6px;
    box-shadow: 0 18px 48px rgba(217,155,43,.28);
  }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .service-grid .flip-card {
    aspect-ratio: 3 / 5.05;
  }
  .service-grid .flip-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 2 / 1.18;
    justify-self: stretch;
  }
  .service-grid .flip-card:last-child:nth-child(odd) .flip-face {
    border-radius: 24px 8px 24px 8px;
  }
  .service-grid .flip-card:last-child:nth-child(odd) .flip-front {
    justify-content: flex-end;
    min-height: 0;
  }
  .service-grid .flip-card:last-child:nth-child(odd) .flip-front h3 {
    max-width: 230px;
    font-size: 20px;
  }
  .service-grid .flip-card:last-child:nth-child(odd) .flip-front p {
    max-width: 260px;
    font-size: 13px;
  }
  .flip-face { padding: 11px; border-radius: 20px 7px 20px 7px; }
  .flip-face svg { width: 32px; height: 32px; margin-bottom: 6px; padding: 7px; border-radius: 11px 5px; }
  .flip-face h3 { font-size: 15px; line-height: 1.04; }
  .flip-face p { font-size: 11px; line-height: 1.28; }
  .hint { top: 9px; right: 9px; padding: 5px 7px; font-size: 8px; }
  .seo-back { gap: 4px; padding: 10px; justify-content: flex-start; }
  .seo-back h3 { font-size: 13px; line-height: 1.02; max-width: none; }
  .seo-back p { font-size: 9.8px; line-height: 1.22; }
  .seo-back ul { gap: 3px; }
  .seo-back li { padding-left: 11px; font-size: 8.8px; line-height: 1.14; }
  .seo-back li::before { width: 5px; height: 5px; }
  .seo-query { display: none; }
  .seo-back a { margin-top: 4px; padding: 7px 9px; font-size: 9.5px; }
  .metrics { grid-template-columns: 1fr; }
  .photo-carousel { padding: 48px 0 54px; }
  .carousel-stage { height: 430px; max-width: 100vw; overflow: visible; padding-bottom: 72px; }
  .carousel-card { width: min(78vw, 330px); height: min(96vw, 390px); border-radius: 28px 8px 28px 8px; }
  .carousel-card.active { transform: translate(-50%, -50%) translateX(0) scale(1.06) rotateY(0deg); }
  .carousel-arrow { top: auto; bottom: 22px; width: 42px; height: 42px; transform: none; }
  .carousel-arrow span { font-size: 0; }
  .carousel-arrow:hover { transform: scale(1.06); }
  .carousel-prev { left: max(18px, calc(50% - 152px)); }
  .carousel-next { right: max(18px, calc(50% - 152px)); }
  .carousel-dots { margin-top: -48px; min-height: 42px; align-items: center; }
  .education-section h2 { font-size: 36px; }
  .education-lead::first-letter { float: none; margin: 0; font-size: inherit; line-height: inherit; font-family: inherit; color: inherit; }
  .video-frame { border-radius: 24px 6px; padding: 7px; }
  .video-sound-toggle { width: 44px; height: 44px; right: 14px; bottom: 14px; }
  .contact-card { min-width: 0; }
  .footer {
    padding: 30px 20px 8px;
  }
  .footer img {
    width: 118px;
    margin-bottom: 8px;
  }
  .footer p {
    margin-bottom: 12px;
  }
  .footer a {
    margin: 5px 0;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
    margin-top: 14px;
  }
  .floating-whatsapp { left: auto; right: 14px; bottom: 14px; width: 78px; }
}
