/* Expo Quantic - CSS organizado e consolidado */

:root {
  --eq-navy: #123466;
  --eq-navy-900: #07123b;
  --eq-navy-800: #0a1a52;
  --eq-blue: #0f5794;
  --eq-teal: #ddab2c;
  --eq-gold: #d7bb73;
  --eq-gold-2: #f0dfad;
  --eq-cream: #f3f7fb;
  --eq-cream-2: #e8eef6;
  --eq-white: #ffffff;
  --eq-ink: #111944;
  --eq-muted: #5f6f86;
  --eq-line: rgba(18,52,102,.14);
  --eq-glass: rgba(255,255,255,.78);
  --eq-dark-glass: rgba(7,18,59,.72);
  --eq-shadow: 0 24px 80px rgba(7,18,59,.16);
  --eq-shadow-strong: 0 36px 120px rgba(7,18,59,.28);
  --eq-radius: 30px;
  --eq-ease: cubic-bezier(.2,.75,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--eq-cream);
}

body {
  margin: 0;
  background: var(--eq-cream);
  color: var(--eq-ink);
  font-family: Montserrat,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at var(--mx,70%) var(--my,15%),rgba(15,87,148,.12),transparent 28rem),linear-gradient(135deg,var(--eq-cream),#fff 48%,var(--eq-cream-2));
  transition: background-position .2s linear;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .42;
  background: radial-gradient(circle at 13px 13px,rgba(18,52,102,.22) 1.2px,transparent 1.3px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 0 0,#000 0,transparent 42%),radial-gradient(circle at 100% 0,#000 0,transparent 38%);
  -webkit-mask-image: radial-gradient(circle at 0 0,#000 0,transparent 42%),radial-gradient(circle at 100% 0,#000 0,transparent 38%);
}



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

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

.eq-page {
  overflow: hidden;
}

.eq-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px,calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 18px 60px rgba(7,18,59,.14);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  transition: background .3s var(--eq-ease),box-shadow .3s var(--eq-ease),transform .3s var(--eq-ease);
}

.eq-header.is-scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 70px rgba(7,18,59,.22);
}

.eq-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.eq-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 10px 18px rgba(18,52,102,.15));
}

.eq-brand span {
  display: grid;
  line-height: 1;
}

.eq-brand strong {
  color: var(--eq-navy);
  font-weight: 950;
  font-size: 14px;
  letter-spacing: .06em;
}

.eq-brand small {
  color: var(--eq-teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  margin-top: 4px;
}

.eq-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.eq-nav a {
  position: relative;
  padding: 13px 14px;
  border-radius: 999px;
  color: var(--eq-navy);
  font-size: 18px;
  font-weight: 550;
  transition: color .24s var(--eq-ease),background .24s var(--eq-ease),transform .24s var(--eq-ease);
}

.eq-nav a:hover {
  background: rgba(18,52,102,.08);
  transform: translateY(-1px);
}

.eq-nav-cta {
  background: linear-gradient(135deg,var(--eq-gold),var(--eq-gold-2));
  box-shadow: 0 12px 34px rgba(215,187,115,.34);
  color: var(--eq-navy-900) !important;
}

.eq-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--eq-navy);
  color: #fff;
  cursor: pointer;
}

.eq-menu-icon {
  width: 24px;
  height: 24px;
}

.eq-menu-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.eq-hero {
  position: relative;
  min-height: 100svh;
  padding: 150px max(24px,calc((100vw - 1180px)/2)) 90px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg,#020a1c 0%,#041430 45%,#020818 100%);
  overflow: hidden;
}

.eq-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 24%,rgba(18,98,180,.22),transparent 18rem),radial-gradient(circle at 82% 16%,rgba(10,70,145,.18),transparent 24rem),radial-gradient(circle at 50% 54%,rgba(9,44,96,.26),transparent 26rem),linear-gradient(180deg,#04152e 0%,#031127 42%,#020918 100%);
}

.eq-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(3,11,29,.82) 0%,rgba(3,11,29,.44) 36%,rgba(3,11,29,.22) 63%,rgba(3,11,29,.56) 100%);
}

.eq-hero-canvas,.eq-hero-noise,.eq-hero-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.eq-hero-canvas {
  display: block;
  pointer-events: none;
}

.eq-hero-particles {
  opacity: .95;
  mix-blend-mode: screen;
}

.eq-wave-field {
  position: absolute;
  left: 50%;
  top: 39%;
  width: 112vw;
  height: min(42vh,390px);
  transform: translate(-50%,-50%);
  pointer-events: none;
  opacity: .88;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 14px rgba(240,223,173,.22)) drop-shadow(0 0 34px rgba(240,223,173,.10));
  mask-image: linear-gradient(90deg,transparent,black 7%,black 93%,transparent);
  -webkit-mask-image: linear-gradient(90deg,transparent,black 7%,black 93%,transparent);
}

.eq-wave-field::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  height: 36%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at 50% 50%,rgba(255,244,204,.22) 0%,rgba(240,223,173,.10) 18%,transparent 58%);
  filter: blur(10px);
  animation: eqWaveAura 5.5s ease-in-out infinite;
}

.eq-wave-field svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.eq-wave {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#eqWaveGlow);
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.eq-wave-1 {
  stroke: #fff4ca;
  stroke-width: 1.7;
  stroke-opacity: .46;
  animation: eqWaveBreathA 5.6s ease-in-out infinite;
}

.eq-wave-2 {
  stroke: #f0dfad;
  stroke-width: 1.25;
  stroke-opacity: .34;
  animation: eqWaveBreathB 6.8s ease-in-out infinite;
}

.eq-wave-3 {
  stroke: #d7bb73;
  stroke-width: 1.45;
  stroke-opacity: .42;
  animation: eqWaveBreathC 7.4s ease-in-out infinite;
}

.eq-wave-4 {
  stroke: #fff8dc;
  stroke-width: .95;
  stroke-opacity: .26;
  animation: eqWaveBreathD 4.9s ease-in-out infinite;
}

.eq-wave-5 {
  stroke: #d7bb73;
  stroke-width: 1.05;
  stroke-opacity: .30;
  animation: eqWaveBreathE 8.6s ease-in-out infinite;
}

.eq-wave-sparks circle {
  fill: #fff4c7;
  fill-opacity: .62;
  filter: drop-shadow(0 0 8px rgba(240,223,173,.55));
  animation: eqSparkPulse 3.8s ease-in-out infinite;
}

.eq-wave-sparks circle:nth-child(2n) {
  animation-delay: -1.3s;
}

.eq-wave-sparks circle:nth-child(3n) {
  animation-delay: -2.4s;
}

.eq-hero-noise {
  background-image: radial-gradient(rgba(255,255,255,.24) .55px,transparent .85px);
  background-size: 22px 22px;
  opacity: .05;
  mix-blend-mode: soft-light;
}

.eq-hero-vignette {
  background: radial-gradient(circle at var(--mx,72%) var(--my,38%),rgba(215,187,115,.18),transparent 18rem),radial-gradient(circle at 50% 52%,transparent 0,transparent 34%,rgba(2,8,20,.28) 100%),linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0));
  mix-blend-mode: screen;
}

.eq-hero::before {
  content: "";
  position: absolute;
  left: -12%;
  top: 8%;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(18,98,180,.14),transparent 72%);
  filter: blur(16px);
  opacity: .85;
}

.eq-quantum-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.eq-quantum-field span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eq-gold);
  box-shadow: 0 0 0 8px rgba(215,187,115,.10),0 0 35px rgba(215,187,115,.55);
  animation: eqParticle 9s ease-in-out infinite;
}

.eq-quantum-field span:nth-child(1) {
  left: 12%;
  top: 23%;
  animation-delay: -1s;
}

.eq-quantum-field span:nth-child(2) {
  left: 37%;
  top: 16%;
  animation-delay: -3s;
}

.eq-quantum-field span:nth-child(3) {
  left: 58%;
  top: 28%;
  animation-delay: -5s;
}

.eq-quantum-field span:nth-child(4) {
  left: 76%;
  top: 59%;
  animation-delay: -2s;
}

.eq-quantum-field span:nth-child(5) {
  left: 28%;
  top: 76%;
  animation-delay: -6s;
}

.eq-quantum-field span:nth-child(6) {
  left: 86%;
  top: 22%;
  animation-delay: -4s;
}

.eq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eq-hero-logo {
  width: min(380px,78vw);
  margin: 0 0 28px;
  filter: drop-shadow(0 22px 46px rgba(0,0,0,.35));
}

.eq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #d7bb73;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
}

.eq-kicker::before,.eq-kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: #dcad47 !important;
}

.eq-hero h1 {
  font-size: clamp(46px,9.5vw,112px);
  line-height: .88;
  margin: 0;
  letter-spacing: -.075em;
  font-weight: 950;
  color: #fff !important;
  text-align: center;
  text-shadow: 0 18px 50px rgba(0,0,0,.34);
}

.eq-hero h1 span {
  color: #fff !important;
  margin: 0 .08em;
}

.eq-hero-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
  margin: 22px auto 0;
}

.eq-date,.eq-place {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  max-width: min(100%,620px);
  min-height: 58px;
  margin: 0;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: clamp(18px,2.15vw,20px);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #fff !important;
  text-align: center;
  text-shadow: 0 10px 28px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 58px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.22);
  overflow: hidden;
}

.eq-date::before,.eq-place::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,.04));
  opacity: .95;
}

.eq-date::after,.eq-place::after {
  content: "";
  position: absolute;
  inset: -70% -35%;
  z-index: -1;
  background: linear-gradient(115deg,transparent 35%,rgba(255,255,255,.24),transparent 64%);
  transform: translateX(-58%) rotate(7deg);
  transition: transform .72s var(--eq-ease);
}

.eq-date:hover::after,.eq-place:hover::after {
  transform: translateX(58%) rotate(7deg);
}

.eq-date {
  border: 1px solid rgba(240,223,173,.58);
  background: linear-gradient(135deg,rgba(215,187,115,.34),rgba(9,31,74,.68) 58%,rgba(255,255,255,.08));
  box-shadow: 0 22px 62px rgba(215,187,115,.2),0 18px 50px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.25);
}

.eq-place {
  border: 1px solid rgba(255,255,255,.26);
  background: linear-gradient(135deg,rgba(255,255,255,.13),rgba(9,31,74,.72) 58%,rgba(215,187,115,.16));
  color: #fff !important;
}

.eq-hero-detail-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--eq-navy-900);
  background: linear-gradient(135deg,var(--eq-gold),#fff0bd);
  box-shadow: 0 12px 28px rgba(215,187,115,.28),inset 0 1px 0 rgba(255,255,255,.55);
}

.eq-hero-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.eq-date span:last-child,.eq-place span:last-child {
  display: block;
}

.eq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  justify-content: center;
}

.eq-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  overflow: hidden;
  transition: transform .25s var(--eq-ease),box-shadow .25s var(--eq-ease),border-color .25s var(--eq-ease);
}

.eq-btn::after {
  content: "";
  position: absolute;
  inset: -60% -35%;
  z-index: -1;
  background: linear-gradient(115deg,transparent 35%,rgba(255,255,255,.44),transparent 65%);
  transform: translateX(-70%) rotate(8deg);
  transition: transform .55s var(--eq-ease);
}

.eq-btn:hover {
  transform: translateY(-3px);
}

.eq-btn:hover::after {
  transform: translateX(70%) rotate(8deg);
}

.eq-btn-primary {
  border: 1px solid rgba(240,223,173,.7);
  background: linear-gradient(135deg,var(--eq-gold),#fff1bd 55%,var(--eq-gold));
  color: var(--eq-navy-900);
  box-shadow: 0 20px 52px rgba(215,187,115,.32);
}

.eq-btn-secondary {
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.eq-section {
  position: relative;
  width: min(1180px,calc(100% - 38px));
  margin: 0 auto;
  padding: 104px 0;
}

.eq-section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.eq-section h2 {
  font-size: clamp(36px,6.8vw,65px);
  line-height: .94;
  margin: 0 0 18px;
  color: var(--eq-navy);
  letter-spacing: -.055em;
}

.eq-section h3 {
  font-size: clamp(22px,2.4vw,30px);
  line-height: 1.08;
  margin: 0 0 14px;
  color: var(--eq-navy);
  letter-spacing: -.035em;
}

.eq-section p {
  color: var(--eq-muted);
  font-size: 18px;
  line-height: 1.72;
}

.eq-copy-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.eq-info-card,.eq-field-card,.eq-split-card,.eq-media-grid article,.eq-registration,.eq-faq details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.75);
  background: var(--eq-glass);
  box-shadow: var(--eq-shadow);
  border-radius: var(--eq-radius);
  backdrop-filter: blur(18px);
}

.eq-info-card::before,.eq-field-card::before,.eq-split-card::before,.eq-media-grid article::before,.eq-registration::before,.eq-faq details::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--cx,50%) var(--cy,50%),rgba(215,187,115,.22),transparent 24rem);
  opacity: 0;
  transition: opacity .25s var(--eq-ease);
}

.eq-info-card:hover::before,.eq-field-card:hover::before,.eq-split-card:hover::before,.eq-media-grid article:hover::before,.eq-registration:hover::before,.eq-faq details:hover::before {
  opacity: 1;
}

.eq-info-card {
  padding: 30px;
  min-height: 285px;
}

.eq-info-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg,var(--eq-navy),var(--eq-blue));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(18,52,102,.22);
  margin-bottom: 28px;
}

.eq-fields {
  padding-top: 92px;
}

.eq-card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.eq-field-card {
  padding: 28px;
  min-height: 300px;
  transition: transform .3s var(--eq-ease),box-shadow .3s var(--eq-ease);
}

.eq-field-card:hover {
  box-shadow: 0 32px 100px rgba(7,18,59,.2);
}

.eq-card-icon {
  display: inline-grid;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 22px;
  padding: 15px;
  background: linear-gradient(135deg,var(--eq-navy),#172887);
  color: #fff;
  box-shadow: 0 18px 42px rgba(18,52,102,.18);
}


.eq-field-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg,var(--eq-gold),rgba(215,187,115,.2),var(--eq-teal));
  border-radius: 999px 999px 0 0;
}

.eq-band {
  width: min(1180px,calc(100% - 38px));
  margin: 10px auto 30px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
  border-radius: 36px;
  background: linear-gradient(135deg,var(--eq-navy-900),#11106a 62%,var(--eq-blue));
  box-shadow: var(--eq-shadow-strong);
  position: relative;
  overflow: hidden;
}

.eq-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0,rgba(215,187,115,.26),transparent 35%),linear-gradient(90deg,rgba(255,255,255,.08),transparent);
  opacity: .9;
}

.eq-stat {
  position: relative;
  text-align: center;
  padding: 20px 12px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.eq-stat strong {
  display: block;
  font-size: clamp(32px,5vw,58px);
  line-height: .9;
  color: #fff;
}

.eq-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  font-weight: 850;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.eq-location {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  overflow: hidden;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--eq-shadow-strong);
  padding: 0;
}

.eq-location-visual {
  display: grid;
  place-items: end start;
  padding: 42px;
  background: url('../images/cidade-santos.webp?v=2') center/cover no-repeat;
  overflow: hidden;
}

.eq-location-visual span {
  font-size: clamp(46px,8vw,96px);
  font-weight: 950;
  line-height: .82;
  color: #fff;
  letter-spacing: -.08em;
  text-shadow: 0 18px 48px rgba(0,0,0,.38);
}

.eq-location-copy {
  padding: 52px;
  align-self: center;
}

.eq-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.eq-location-tags span {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(18,52,102,.08);
  border: 1px solid var(--eq-line);
  color: var(--eq-navy);
  font-weight: 850;
  font-size: 13px;
}

.eq-location .eq-btn-secondary,.eq-location .eq-btn-primary {
  color: var(--eq-navy-900);
}

.eq-store,.eq-media {
  padding-top: 80px;
}

.eq-split-card {
  padding: 40px;
  min-height: 260px;
  background: linear-gradient(135deg,rgba(7,18,59,.94),rgba(18,52,102,.86)),radial-gradient(circle at 80% 20%,rgba(215,187,115,.38),transparent 20rem);
  color: #fff;
}

.eq-split-card strong {
  font-size: clamp(38px,6vw,70px);
  line-height: .9;
  color: var(--eq-gold);
}

.eq-split-card p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
}

.eq-media-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.eq-media-grid article {
  padding: 30px;
  min-height: 180px;
}

.eq-media-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--eq-gold);
  font-weight: 950;
  letter-spacing: .16em;
}

.eq-media-grid strong {
  display: block;
  color: var(--eq-navy);
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.eq-exhibitor {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 36px;
  margin-top: 30px;
  padding: 20px !important;
  border-radius: 38px;
  background: linear-gradient(135deg,var(--eq-navy-900),#11106a 58%,var(--eq-blue));
  box-shadow: var(--eq-shadow-strong);
  overflow: hidden;
}

.eq-exhibitor::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -25%;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(215,187,115,.5);
  border-radius: 50%;
  transform: rotate(18deg);
}

.eq-exhibitor>* {
  position: relative;
}

.eq-exhibitor h2,.eq-exhibitor p {
  color: #fff;
}

.eq-exhibitor p {
  opacity: .8;
}

.eq-exhibitor .eq-kicker {
  color: var(--eq-gold);
}

.eq-registration {
  padding: 104px 0;
  background: transparent;
  width: min(1180px,calc(100% - 38px));
  box-shadow: none;
  border: 0;
}

.eq-form fieldset {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 16px;
}

.eq-form legend {
  margin: 0 0 2px;
  color: var(--eq-navy);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.02em;
}

.registration-form .form-grid.two-columns {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.registration-form input[type="hidden"] {
  display: none;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 900;
}

.form-alert-success {
  background: rgba(20,114,72,.12);
  color: #147248;
}

.form-alert-error,.field-error,.form-field small {
  background: rgba(179,34,50,.08);
  color: #b32232;
}

.form-field small,.field-error {
  display: block;
  margin-top: 4px;
  border-radius: 10px;
  padding: 6px 8px;
  font-size: 13px;
}

.lgpd-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.lgpd-field input {
  margin-top: 4px;
  accent-color: var(--eq-navy);
}

.eq-form {
  display: grid;
  gap: 18px;
}

.eq-form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.eq-field {
  display: grid;
  gap: 8px;
}

.eq-field-full {
  grid-column: 1/-1;
}

.eq-field span,.eq-consent {
  font-weight: 850;
  color: var(--eq-navy);
}

.eq-field b,.eq-consent b {
  color: #b28b35;
}

.eq-field input,.eq-field select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(18,52,102,.18);
  border-radius: 18px;
  background: #fff;
  color: var(--eq-ink);
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color .2s var(--eq-ease),box-shadow .2s var(--eq-ease),transform .2s var(--eq-ease);
}

.eq-field input:focus,.eq-field select:focus {
  border-color: var(--eq-gold);
  box-shadow: 0 0 0 5px rgba(215,187,115,.22);
  transform: translateY(-1px);
}

.eq-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
  color: var(--eq-muted);
}

.eq-consent input {
  margin-top: 4px;
  accent-color: var(--eq-navy);
}

.eq-consent a {
  color: var(--eq-navy);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(215,187,115,.7);
}

.eq-submit {
  position: relative;
  min-height: 60px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg,var(--eq-navy),#14277a 52%,var(--eq-gold));
  color: #fff;
  font-weight: 950;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(18,52,102,.24);
  transition: transform .25s var(--eq-ease),box-shadow .25s var(--eq-ease);
}

.eq-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(18,52,102,.32);
}

.eq-submit:disabled {
  opacity: .65;
  cursor: wait;
}

.eq-form-message {
  margin: 0;
  font-weight: 900;
}

.eq-form-message.ok {
  color: #147248;
}

.eq-form-message.error {
  color: #b32232;
}

.eq-accordion {
  display: grid;
  gap: 14px;
}

.eq-faq details {
  padding: 0;
  background: rgba(255,255,255,.82);
}

.eq-faq summary {
  cursor: pointer;
  padding: 24px 28px;
  font-size: 18px;
  font-weight: 950;
  color: var(--eq-navy);
  list-style: none;
}

.eq-faq summary::-webkit-details-marker {
  display: none;
}

.eq-faq summary::after {
  content: "+";
  float: right;
  color: var(--eq-gold);
  font-size: 28px;
  line-height: 18px;
  transition: transform .22s var(--eq-ease);
}

.eq-faq details[open] summary::after {
  transform: rotate(45deg);
}

.eq-faq details p {
  padding: 0 28px 26px;
  margin: 0;
  color: var(--eq-muted);
}

.eq-footer {
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  gap: 34px;
  text-align: initial;
  padding: 22px max(24px,calc((100vw - 1180px)/2));
  color: #fff;
  background: #173f70;
  overflow: hidden;
}

.eq-footer::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 360px;
  height: 620px;
  border: 2px solid rgba(215,187,115,.38);
  border-radius: 50%;
  transform: rotate(18deg);
  display: none;
}

.eq-footer img {
  width: 150px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.24));
}

.eq-footer h2 {
  margin: 0 0 12px;
  font-size: 38px;
}

.eq-footer p {
  margin: 6px 0;
  color: rgba(255,255,255,.78);
}

.eq-footer a {
  color: #fff;
  font-weight: 950;
}

.eq-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--eq-ease),transform .72s var(--eq-ease);
}

.eq-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eq-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

.eq-tilt.is-visible:hover {
  transform: perspective(900px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) translateY(-6px);
}

.eq-spotlight {
  --cx: 50%;
  --cy: 50%;
}

.eq-footer-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: center;
  gap: 28px;
}

.eq-footer-logo {
  width: 92px;
  max-width: 100%;
  display: block;
  filter: none;
}

.eq-footer-center {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.35;
}

.eq-footer-center p {
  margin: 0;
  color: rgba(255,255,255,.68);
}

.eq-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.84);
}

.eq-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 24px;
  min-height: 24px;
  color: rgba(255,255,255,.84);
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  transition: color .2s var(--eq-ease),transform .2s var(--eq-ease);
}

.eq-social-links a:hover {
  color: var(--eq-gold);
  transform: translateY(-1px);
}

.eq-social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.eq-contact-link span {
  font-weight: 800;
}

.eq-developed-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
}

.eq-developed-by img {
  width: 112px;
  height: auto;
  display: block;
  filter: none;
}

.eq-footer-contact {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.eq-footer-contact strong {
  color: var(--eq-gold);
  font-size: 14px;
  line-height: 1.2;
}

.eq-footer-contact a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.eq-footer-contact a:hover {
  text-decoration: underline;
  text-decoration-color: var(--eq-gold);
}

.eq-gallery {
  position: relative;
  z-index: 1;
}

.eq-gallery::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 130px;
  width: min(900px,88vw);
  height: min(900px,88vw);
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(215,187,115,.18),transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.eq-gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: -36px 0 32px;
}

.eq-gallery-toolbar span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(18,52,102,.12);
  color: var(--eq-navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(7,18,59,.08);
}

.eq-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  grid-auto-rows: 132px;
  gap: 16px;
  margin-top: 50px !important;
}

.eq-gallery-item {
  position: relative;
  margin: 0;
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 64px rgba(7,18,59,.18);
  background: var(--eq-navy);
  border: 1px solid rgba(255,255,255,.72);
}

.eq-gallery-item.is-wide {
  grid-column: span 4;
}

.eq-gallery-item.is-tall {
  grid-row: span 3;
}

.eq-gallery-item button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: #fff;
  text-align: left;
  overflow: hidden;
}

.eq-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
  transition: transform .75s var(--eq-ease),filter .75s var(--eq-ease);
}

.eq-gallery-item button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,rgba(7,18,59,0) 30%,rgba(7,18,59,.72) 100%),radial-gradient(circle at var(--cx,50%) var(--cy,50%),rgba(215,187,115,.26),transparent 18rem);
  opacity: .92;
  transition: opacity .3s var(--eq-ease);
}

.eq-gallery-item button::after {
  content: "Ver foto";
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .28s var(--eq-ease),transform .28s var(--eq-ease);
}

.eq-gallery-item figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
  transform: translateY(8px);
  transition: transform .35s var(--eq-ease);
}

.eq-gallery-item figcaption strong {
  font-size: clamp(18px,2vw,28px);
  line-height: 1;
  letter-spacing: -.035em;
  text-shadow: 0 6px 24px rgba(0,0,0,.38);
}

.eq-gallery-item figcaption span {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}

.eq-gallery-item:hover img {
  transform: scale(1.1);
  filter: saturate(1.14) contrast(1.06);
}

.eq-gallery-item:hover button::after {
  opacity: 1;
  transform: translateY(0);
}

.eq-gallery-item:hover figcaption {
  transform: translateY(0);
}

.eq-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3,10,28,.82);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--eq-ease);
}

.eq-gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.eq-gallery-lightbox-card {
  width: min(1120px,100%);
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-rows: minmax(0,1fr) auto;
  border-radius: 30px;
  overflow: hidden;
  background: #06122f;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 120px rgba(0,0,0,.44);
  transform: scale(.96);
  transition: transform .25s var(--eq-ease);
}

.eq-gallery-lightbox.is-open .eq-gallery-lightbox-card {
  transform: scale(1);
}

.eq-gallery-lightbox img {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 160px);
  object-fit: contain;
  background: #020814;
}

.eq-gallery-lightbox-caption {
  display: grid;
  gap: 4px;
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(135deg,rgba(18,52,102,.98),rgba(7,18,59,.98));
}

.eq-gallery-lightbox-caption strong {
  font-size: 22px;
  line-height: 1.1;
}

.eq-gallery-lightbox-caption span {
  color: rgba(255,255,255,.72);
}

.eq-gallery-close {
  position: absolute;
  right: max(18px,calc((100vw - 1120px)/2));
  top: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.eq-close-icon {
  width: 24px;
  height: 24px;
}

.eq-gallery-close:hover {
  background: var(--eq-gold);
  color: var(--eq-navy-900);
}

.eq-media-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--eq-gold);
  filter: drop-shadow(0 0 18px rgba(215,187,115,.22));
}

.eq-registration-shell {
  display: grid;
  grid-template-columns: minmax(280px,.82fr) minmax(360px,1.18fr);
  gap: 28px;
  align-items: start;
}

.eq-registration-info {
  position: sticky;
  top: 118px;
  padding: 34px;
  border-radius: 34px;
  color: #fff;
  background: radial-gradient(circle at var(--cx,28%) var(--cy,18%),rgba(215,187,115,.22),transparent 20rem),linear-gradient(145deg,var(--eq-navy-900),var(--eq-navy));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--eq-shadow-strong);
  overflow: hidden;
}

.eq-registration-info::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(215,187,115,.25);
  box-shadow: 0 0 0 32px rgba(215,187,115,.035);
  pointer-events: none;
}

.eq-registration-info .eq-kicker,.eq-registration-info .eq-kicker::before {
  color: var(--eq-gold);
}

.eq-registration-info h2 {
  margin: 0 0 14px;
  font-size: clamp(32px,4vw,54px);
  line-height: .98;
  letter-spacing: -.055em;
  color: #fff;
}

.eq-registration-info>p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.eq-arrival-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}

.eq-arrival-card span {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg,var(--eq-gold),#fff0ba);
  color: var(--eq-navy-900);
}

.eq-arrival-icon {
  width: 25px;
  height: 25px;
}

.eq-arrival-card strong {
  display: block;
  font-size: 18px;
  color: #fff;
}

.eq-arrival-card p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.45;
}

.eq-arrival-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.eq-arrival-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  line-height: 1.45;
}

.eq-arrival-list-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: var(--eq-gold);
}

.eq-registration .eq-form {
  padding: 30px;
  border-radius: 34px;
}

.eq-registration .eq-form-grid,.eq-registration .registration-form .form-grid.two-columns {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 16px 18px;
}

.eq-registration fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.eq-registration legend {
  margin-bottom: 12px;
}

.eq-registration .eq-field input,.eq-registration .eq-field select {
  min-height: 52px;
}

.eq-registration fieldset:nth-of-type(3) .eq-field-full {
  width: calc(50% - 9px);
  grid-column: auto;
}

.eq-registration .eq-consent {
  display: grid;
  grid-template-columns: 20px minmax(0,1fr);
  align-items: start;
  gap: 12px;
  margin: 4px 0 2px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--eq-muted);
}

.eq-registration .eq-consent input[type="checkbox"],.eq-registration .lgpd-field input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  border: 1.5px solid rgba(18,52,102,.35);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(18,52,102,.08);
  transition: background-color .18s var(--eq-ease),border-color .18s var(--eq-ease),box-shadow .18s var(--eq-ease);
}

.eq-registration .eq-consent input[type="checkbox"]::after,.eq-registration .lgpd-field input[type="checkbox"]::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform .18s var(--eq-ease);
}

.eq-registration .eq-consent input[type="checkbox"]:checked,.eq-registration .lgpd-field input[type="checkbox"]:checked {
  border-color: var(--eq-navy);
  background: linear-gradient(135deg,var(--eq-navy),var(--eq-blue));
  box-shadow: 0 6px 16px rgba(18,52,102,.18);
}

.eq-registration .eq-consent input[type="checkbox"]:checked::after,.eq-registration .lgpd-field input[type="checkbox"]:checked::after {
  transform: rotate(-45deg) scale(1);
}

.eq-registration .eq-consent input[type="checkbox"]:focus-visible,.eq-registration .lgpd-field input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(215,187,115,.35);
  outline-offset: 3px;
}

.eq-registration .eq-submit {
  width: 100%;
  margin-top: 4px;
}

.eq-hero-details .eq-date,.eq-hero-details .eq-place {
  margin: 0;
}

.eq-media-card {
  padding: 0 !important;
  min-height: 0 !important;
}

.eq-media-card::before {
  z-index: 1;
}

.eq-media-link {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.eq-media-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0;
  overflow: hidden;
  border-radius: var(--eq-radius) var(--eq-radius) 0 0;
  background: linear-gradient(135deg,var(--eq-navy),var(--eq-blue));
}

.eq-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--eq-ease),filter .35s var(--eq-ease);
}

.eq-media-link:hover .eq-media-thumb img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.eq-media-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  min-height: 210px;
}

.eq-media-content span {
  display: inline-flex;
  width: max-content;
  margin: 0 !important;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(215,187,115,.16);
  color: var(--eq-gold) !important;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eq-media-content strong {
  display: block;
  color: var(--eq-navy);
  font-size: clamp(20px,2vw,25px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.eq-media-content em {
  margin-top: auto;
  color: var(--eq-teal);
  font-size: 14px;
  font-style: normal;
  font-weight: 950;
}

.eq-media-content em::after {
  content: " →";
  transition: padding-left .2s var(--eq-ease);
}

.eq-media-link:hover .eq-media-content em::after {
  padding-left: 4px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  /*overflow-x: hidden;*/
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

@keyframes eqHeroPulse {
  0%,100%{opacity:.72;transform:scale(1)}50%{opacity:1;transform:scale(1.04)}
}

@keyframes eqParticle {
  0%,100%{transform:translate3d(0,0,0) scale(.86);opacity:.5}45%{transform:translate3d(22px,-28px,0) scale(1.15);opacity:1}70%{transform:translate3d(-18px,16px,0) scale(.95);opacity:.7}
}

@keyframes eqWaveAura {
  0%,100%{opacity:.58;transform:translateY(-50%) scaleY(.92)}50%{opacity:.92;transform:translateY(-50%) scaleY(1.08)}
}

@keyframes eqWaveBreathA {
  0%,100%{transform:translateY(0) scaleY(1)}50%{transform:translateY(-10px) scaleY(1.10)}
}

@keyframes eqWaveBreathB {
  0%,100%{transform:translateY(2px) scaleY(.94)}50%{transform:translateY(12px) scaleY(1.08)}
}

@keyframes eqWaveBreathC {
  0%,100%{transform:translateY(-4px) scaleY(1.04)}50%{transform:translateY(8px) scaleY(.92)}
}

@keyframes eqWaveBreathD {
  0%,100%{transform:translateY(7px) scaleY(.88)}50%{transform:translateY(-7px) scaleY(1.12)}
}

@keyframes eqWaveBreathE {
  0%,100%{transform:translateY(-9px) scaleY(.98)}50%{transform:translateY(6px) scaleY(1.16)}
}

@keyframes eqSparkPulse {
  0%,100%{opacity:.28;transform:scale(.78)}45%{opacity:.9;transform:scale(1.35)}
}

@media (max-width:1024px) {
  html,
    body,
    .eq-page {
    /*overflow-x: hidden;*/
  }

  .eq-section {
    width: min(100% - 28px, 1180px);
    padding-left: 0;
    padding-right: 0;
  }

  .eq-copy-grid,
    .eq-card-grid,
    .eq-media-grid,
    .eq-split,
    .eq-location,
    .eq-exhibitor-grid,
    .eq-registration-shell {
    grid-template-columns: 1fr !important;
  }

  .eq-location-visual {
    min-height: 300px;
    place-items: end start;
  }

  .eq-location-copy,
    .eq-exhibitor,
    .eq-info-card,
    .eq-field-card,
    .eq-split-card {
    padding: 24px;
  }

  .eq-registration-info {
    position: relative;
    top: auto;
  }
}

@media (max-width:980px) {
  .eq-menu-toggle {
    display: inline-flex;
  }

  .eq-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(18,52,102,.12);
    box-shadow: var(--eq-shadow);
    border-radius: 24px;
    padding: 12px;
  }

  .eq-nav.is-open {
    display: flex;
  }

  .eq-nav a {
    text-align: center;
  }

  .eq-hero {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 130px;
  }

  .eq-copy-grid,.eq-card-grid,.eq-media-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .eq-band {
    grid-template-columns: repeat(2,1fr);
  }

  .eq-location {
    grid-template-columns: 1fr;
  }

  .eq-location-visual {
    min-height: 390px;
  }

  .eq-exhibitor {
    grid-template-columns: 1fr;
    padding: 20px !important;
  }

  .eq-form-grid,.registration-form .form-grid.two-columns {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .eq-gallery-grid {
    grid-template-columns: repeat(4,1fr);
    grid-auto-rows: 118px;
  }

  .eq-gallery-item,.eq-gallery-item.is-wide {
    grid-column: span 2;
  }

  .eq-gallery-item.is-tall {
    grid-row: span 2;
  }

  .eq-page {
    overflow: hidden;
  }

  .eq-section {
    padding: 82px 20px;
  }

  .eq-section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .eq-section-head .eq-kicker {
    justify-content: center;
  }

  .eq-info-card,.eq-field-card,.eq-split-card,.eq-location-copy,.eq-exhibitor {
    border-radius: 28px;
  }

  .eq-registration-shell {
    grid-template-columns: 1fr;
  }

  .eq-registration-info {
    position: relative;
    top: auto;
  }

  .eq-registration {
    padding: 82px 0;
  }

  .eq-footer-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .eq-footer-brand,.eq-footer-contact {
    justify-content: center;
    text-align: center;
  }

  .eq-social-links {
    justify-content: center;
  }

  .eq-media-content {
    min-height: 190px;
  }
}

@media (max-width:760px) {
  .eq-registration .eq-form-grid,.eq-registration .registration-form .form-grid.two-columns,.eq-form-grid,.registration-form .form-grid.two-columns {
    grid-template-columns: 1fr !important;
  }

  .eq-registration fieldset:nth-of-type(3) .eq-field-full {
    width: 100% !important;
  }

  .eq-registration .eq-consent {
    grid-template-columns: 18px minmax(0,1fr);
    font-size: 12.5px;
  }

  .eq-registration .eq-consent input[type="checkbox"],.eq-registration .lgpd-field input[type="checkbox"] {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    min-height: 17px !important;
    max-width: 17px !important;
    max-height: 17px !important;
  }

  .eq-footer {
    padding: 34px 14px;
  }

  .eq-footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .eq-footer-logo {
    width: 96px;
    margin: 0 auto;
  }

  .eq-footer-contact {
    justify-items: center;
    text-align: center;
  }

  .eq-developed-by {
    flex-direction: column;
    gap: 6px;
  }

  .eq-developed-by img {
    width: 126px;
    max-width: 130px;
  }

  .eq-exhibitor {
    padding: 20px !important;
  }

  .eq-header {
    max-width: calc(100% - 20px);
    border-radius: 26px;
    width: calc(100% - 20px);
  }

  .eq-nav {
    max-height: calc(100dvh - 110px);
    overflow: auto;
  }

  .eq-hero {
    min-height: auto;
    padding-bottom: 70px;
    padding-top: 110px;
  }

  .eq-hero h1 {
    font-size: clamp(54px,19vw,92px);
    letter-spacing: -.065em;
  }

  .eq-hero-logo {
    width: min(255px,74vw);
    margin-bottom: 18px;
  }

  .eq-date,.eq-place {
    font-size: clamp(17px,5.2vw,23px);
    min-height: 52px;
    padding: 11px 16px;
  }

  .eq-hero-detail-icon {
    width: 34px;
    height: 34px;
  }

  .eq-hero-detail-icon svg {
    width: 18px;
    height: 18px;
  }

  .eq-actions {
    width: min(100%,360px);
    margin-left: auto;
    margin-right: auto;
  }

  .eq-band {
    gap: 12px;
    padding: 20px;
  }

  .eq-stat {
    min-height: 118px;
  }

  .eq-location-visual {
    min-height: 280px;
  }

  .eq-location-tags {
    display: grid;
  }

  .eq-gallery-toolbar {
    /*overflow-x: auto;*/
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
    width: min(100% - 28px,1180px);
    margin-left: auto;
    margin-right: auto;
  }

  .eq-gallery-toolbar::-webkit-scrollbar {
    display: none;
  }

  .eq-gallery {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
  }

  .eq-gallery .eq-section-head {
    width: min(100% - 28px, 1180px) !important;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 44px;
  }

  .eq-gallery-grid {
    display: flex !important;
    grid-template-columns: none !important;
    grid-auto-rows: auto !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 max(14px,calc((100vw - 1180px)/2)) 18px;
    scrollbar-width: none;
    width: 100%;
    max-width: 100vw;
    margin-top: 58px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    padding-bottom: 6px !important;
    scroll-padding-left: 14px;
    scroll-padding-right: 14px;
  }

  .eq-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .eq-gallery-item,.eq-gallery-item.is-wide,.eq-gallery-item.is-tall {
    flex: 0 0 min(82vw,360px);
    height: clamp(320px,58vh,470px);
    grid-column: auto !important;
    grid-row: auto !important;
    scroll-snap-align: center;
    border-radius: 26px;
  }

  .eq-gallery-item figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .eq-gallery-item button::after {
    opacity: 1;
    transform: none;
    background: rgba(255,255,255,.22);
  }

  .eq-gallery-grid.is-auto-carousel .eq-gallery-item img {
    transform: scale(1.06);
  }

  .eq-registration {
    width: min(100% - 28px,1180px);
  }

  .eq-registration-info,.eq-registration .eq-form {
    padding: 24px;
    border-radius: 28px;
  }

  .eq-registration-info h2 {
    font-size: 34px;
  }

  .eq-arrival-card {
    padding: 15px;
  }

  .eq-arrival-list div {
    font-size: 14px;
  }

  .eq-form {
    gap: 14px;
  }

  .confirm-page,.privacy-page,.validation-page {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .eq-section {
    width: min(100% - 28px, 1180px) !important;
    padding: 64px 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto;
    margin-right: auto;
  }

  .eq-hero-details {
    flex-wrap: wrap;
  }

  .eq-actions,
    .eq-form-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .eq-btn,
    .eq-submit {
    width: 100%;
  }

  .eq-registration .eq-form-grid,
    .eq-registration .registration-form .form-grid.two-columns,
    .eq-form-grid,
    .registration-form .form-grid.two-columns {
    grid-template-columns: 1fr !important;
  }

  .eq-field input,
    .eq-field select,
    .eq-field textarea {
    font-size: 16px;
  }

  .eq-page,
    .eq-section,
    .eq-gallery,
    .eq-registration,
    .eq-location,
    .eq-exhibitor,
    .eq-band,
    .eq-card-grid,
    .eq-copy-grid,
    .eq-media-grid {
    max-width: 100%;
    /*overflow-x: hidden;*/
  }

  .eq-gallery .eq-section-head::after {
    content: "\2194  Arraste para ver mais";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--eq-navy), var(--eq-blue));
    color: #fff;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(7, 18, 59, .20);
    pointer-events: none;
  }

  .eq-gallery-item,
    .eq-gallery-item.is-wide,
    .eq-gallery-item.is-tall {
    flex: 0 0 min(84vw, 340px) !important;
    width: min(84vw, 340px) !important;
    max-width: calc(100vw - 28px) !important;
    height: clamp(270px, 56vh, 390px) !important;
    min-width: 0;
  }
}

@media (max-width:640px) {
  .eq-wave-field {
    top: 36%;
    height: 30vh;
    opacity: .68;
  }

  .eq-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px 9px;
  }

  .eq-brand img {
    width: 48px;
    height: 48px;
  }

  .eq-brand strong {
    font-size: 12px;
  }

  .eq-brand small {
    font-size: 9px;
  }

  .eq-hero {
    min-height: auto;
    padding: 118px 18px 70px;
  }

  .eq-hero-logo {
    width: min(280px,86vw);
  }

  .eq-date,.eq-place {
    font-size: 18px;
    min-height: 52px;
    padding: 11px 16px;
    gap: 10px;
  }

  .eq-hero-detail-icon {
    width: 30px;
    height: 30px;
  }

  .eq-hero-detail-icon svg {
    width: 18px;
    height: 18px;
  }

  .eq-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .eq-btn {
    width: 100%;
  }

  .eq-section {
    width: min(100% - 28px,1180px);
    padding: 68px 0;
  }

  .eq-copy-grid,.eq-card-grid,.eq-media-grid,.eq-band {
    grid-template-columns: 1fr;
  }

  .eq-band {
    border-radius: 28px;
  }

  .eq-info-card,.eq-field-card,.eq-split-card,.eq-registration,.eq-location-copy,.eq-exhibitor {
    padding: 26px;
  }

  .eq-location {
    border-radius: 28px;
  }

  .eq-location-visual {
    min-height: 310px;
    padding: 26px;
  }

  .eq-footer {
    flex-direction: column;
    text-align: center;
    padding: 56px 18px;
  }

  .eq-footer img {
    width: 126px;
  }

  .eq-gallery-toolbar {
    justify-content: flex-start;
    margin-top: -26px;
  }

  .eq-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .eq-gallery-item,.eq-gallery-item.is-wide,.eq-gallery-item.is-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .eq-gallery-lightbox {
    padding: 14px;
  }

  .eq-gallery-close {
    right: 18px;
    top: 18px;
  }

  .eq-hero-details {
    gap: 10px;
  }

  .eq-hero-details .eq-date,.eq-hero-details .eq-place {
    font-size: 15px;
    min-height: 48px;
    padding: 10px 12px;
  }

  .eq-media-content {
    min-height: auto;
    padding: 20px;
  }

  .eq-media-thumb {
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width:420px) {
  .eq-brand span {
    display: none;
  }

  .eq-header {
    padding: 7px 10px;
  }

  .eq-hero {
    padding-top: 104px;
  }

  .eq-hero h1 {
    font-size: 52px;
  }

  .eq-btn {
    min-height: 52px;
  }

  .eq-section {
    width: calc(100% - 24px) !important;
    padding: 56px 0 !important;
  }

  .eq-gallery {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .eq-gallery-item,.eq-gallery-item.is-wide,.eq-gallery-item.is-tall {
    flex-basis: 86vw;
    height: 330px;
  }

  .eq-registration {
    width: min(100% - 24px,1180px);
  }

  .eq-registration-info,.eq-registration .eq-form {
    padding: 20px;
  }

  .eq-field input,.eq-field select {
    font-size: 16px;
  }

  .eq-consent {
    font-size: 13px;
  }

  .eq-footer-logo {
    max-width: 105px;
  }

  .eq-location-copy,
    .eq-exhibitor,
    .eq-info-card,
    .eq-field-card,
    .eq-split-card,
    .eq-registration-info,
    .eq-registration .eq-form {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .eq-gallery-grid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .eq-gallery-item,
    .eq-gallery-item.is-wide,
    .eq-gallery-item.is-tall {
    flex-basis: min(86vw, 330px) !important;
    width: min(86vw, 330px) !important;
    max-width: calc(100vw - 24px) !important;
    height: clamp(250px, 52vh, 340px) !important;
  }
}

@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .eq-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


.eq-gallery-mobile-hint {
  display: none;
}

@media (max-width: 768px) {
  .eq-gallery-mobile-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 0 auto 18px;
    padding: 10px 16px;
    border: 1px solid rgba(15, 62, 112, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f3e70;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: center;
    box-shadow: 0 12px 28px rgba(9, 31, 60, 0.12);
  }

  .eq-gallery-mobile-hint__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #0f3e70;
    color: #ffffff;
    animation: eqGallerySwipeHint 1.35s ease-in-out infinite;
  }

  .eq-gallery-grid {
    position: relative;
  }

  .eq-gallery-grid::after {
    content: "";
    position: sticky;
    right: 0;
    flex: 0 0 28px;
    width: 28px;
    min-width: 28px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.92));
  }
}

@keyframes eqGallerySwipeHint {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}
/* v40 - Galeria mobile em miniaturas 3 colunas */
@media (max-width: 760px) {
  .eq-gallery {
    width: min(100% - 24px, 1180px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  .eq-gallery .eq-section-head {
    width: 100% !important;
    padding-bottom: 0 !important;
  }

  .eq-gallery .eq-section-head::after,
  .eq-gallery-mobile-hint,
  .eq-gallery-grid::after {
    display: none !important;
    content: none !important;
  }

  .eq-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 24px !important;
    padding: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .eq-gallery-item,
  .eq-gallery-item.is-wide,
  .eq-gallery-item.is-tall {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-width: 0 !important;
    aspect-ratio: 1 / 1 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    flex: initial !important;
    scroll-snap-align: none !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 24px rgba(7, 18, 59, .14) !important;
  }

  .eq-gallery-item button {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
  }

  .eq-gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
  }

  .eq-gallery-item button::before {
    background: linear-gradient(180deg, rgba(7,18,59,0), rgba(7,18,59,.16)) !important;
    opacity: 1 !important;
  }

  .eq-gallery-item button::after,
  .eq-gallery-item figcaption {
    display: none !important;
  }

  .eq-gallery-item:hover img,
  .eq-gallery-grid.is-auto-carousel .eq-gallery-item img {
    transform: none !important;
  }

  .eq-gallery-lightbox {
    padding: 14px !important;
  }

  .eq-gallery-lightbox-card {
    border-radius: 22px !important;
  }

  .eq-gallery-lightbox img {
    max-height: calc(100dvh - 132px) !important;
  }

  .eq-gallery-close {
    right: 16px !important;
    top: 16px !important;
  }
}

@media (max-width: 420px) {
  .eq-gallery {
    width: calc(100% - 20px) !important;
  }

  .eq-gallery-grid {
    gap: 6px !important;
  }

  .eq-gallery-item,
  .eq-gallery-item.is-wide,
  .eq-gallery-item.is-tall {
    border-radius: 12px !important;
  }
}

/* Index 2026 - estrutura institucional conforme página pública */
.eq-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: #071223;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.eq-topbar-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.eq-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
}

.eq-topbar-icon {
  width: 15px;
  height: 15px;
  color: var(--eq-gold);
}

.eq-header {
  top: 42px;
  padding: 8px 12px;
}

.eq-header.is-scrolled {
  transform: translateX(-50%) translateY(-4px);
}

.eq-home-2026 .eq-hero {
  min-height: 645px;
  padding-top: 170px;
  padding-bottom: 110px;
}

.eq-home-2026 .eq-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 170px;
  background: linear-gradient(180deg, rgba(243,247,251,0), var(--eq-cream) 78%);
  pointer-events: none;
}

.eq-home-2026 .eq-hero-content {
  position: relative;
  z-index: 4;
  max-width: 820px;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.eq-home-2026 .eq-hero-logo {
  width: min(210px, 48vw);
  margin-bottom: -4px;
}

.eq-home-2026 .eq-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.055em;
  color: #fff;
  text-shadow: 0 16px 48px rgba(0,0,0,.28);
}

.eq-hero-edition {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.045em;
  color: var(--eq-gold);
}

.eq-home-2026 .eq-hero-details {
  margin-top: 8px;
  gap: 24px;
}

.eq-home-2026 .eq-btn-secondary {
  margin-top: 14px;
  background: linear-gradient(135deg, #d4a724, #f5cf55);
  color: #fff;
  border: 0;
  box-shadow: 0 18px 44px rgba(212,167,36,.32);
}

.eq-split-section {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.eq-split-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(7,18,59,.18);
  background: #fff;
}

.eq-split-media img,
.eq-blue-media img,
.eq-repercussion figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eq-split-media img {
  aspect-ratio: 16 / 9;
}

.eq-split-copy h2,
.eq-repercussion h2,
.eq-location-card h2 {
  margin: 0 0 18px;
  color: var(--eq-navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.035em;
}

.eq-split-copy h2::after,
.eq-repercussion h2::after,
.eq-location-card h2::after,
.eq-section-head h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  margin-top: 14px;
  background: var(--eq-gold);
}

.eq-split-copy p,
.eq-repercussion p,
.eq-location-card p {
  margin: 0 0 16px;
  color: #334767;
  font-size: 1.03rem;
  line-height: 1.72;
}

.eq-split-copy strong,
.eq-location-card strong {
  color: var(--eq-navy);
  font-weight: 900;
}

.eq-blue-panel {
  background: linear-gradient(135deg, #123e70, #113764 45%, #0d2d56);
  color: #fff;
  padding: clamp(72px, 9vw, 118px) 0;
}

.eq-blue-panel-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
}

.eq-blue-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(1.6rem, 3.2vw, 2.42rem);
  line-height: 1.06;
  letter-spacing: -.04em;
  font-weight: 950;
}

.eq-blue-copy h2 span {
  color: var(--eq-gold);
}

.eq-blue-copy p {
  margin: 0 0 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(240,223,173,.54);
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  font-size: 1.02rem;
}

.eq-blue-media {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(102,173,255,.28);
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
}

.eq-blue-media img {
  aspect-ratio: 16 / 9;
}

.eq-fields-compact {
  padding-top: clamp(74px, 9vw, 108px);
  padding-bottom: clamp(74px, 9vw, 110px);
}

.eq-fields-compact .eq-section-head h2 {
  color: var(--eq-navy);
}

.eq-fields-compact .eq-section-head h2::after {
  margin-inline: auto;
}

.eq-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin-inline: auto;
}

.eq-card-grid-three .eq-field-card {
  min-height: 190px;
  padding: 28px;
  background: rgba(255,255,255,.94);
  border-color: rgba(18,52,102,.08);
}

.eq-card-grid-three .eq-field-card h3 {
  font-size: 1rem;
  margin-top: 18px;
}

.eq-card-grid-three .eq-field-card p {
  font-size: .91rem;
  line-height: 1.58;
}

.eq-card-grid-three .eq-card-icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 8px;
  background: rgba(18,52,102,.08);
}

.eq-location-band {
  background: linear-gradient(135deg, #123e70, #113764 45%, #0d2d56);
  padding: clamp(64px, 8vw, 90px) 0;
}

.eq-location-card {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  background: #fff;
  border-radius: 12px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
}

.eq-location-card figure {
  margin: 0;
  align-self: stretch;
  overflow: hidden;
  border-radius: 10px;
  min-height: 260px;
}

.eq-location-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eq-location-card .eq-kicker {
  color: var(--eq-gold);
  margin-bottom: 10px;
}

.eq-location-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--eq-navy);
  font-weight: 900;
  border-bottom: 2px solid var(--eq-gold);
}

.eq-repercussion {
  width: min(900px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
  padding-top: clamp(74px, 9vw, 115px);
  padding-bottom: clamp(74px, 9vw, 115px);
}

.eq-repercussion figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 22px 60px rgba(7,18,59,.18);
}

.eq-repercussion figure img {
  aspect-ratio: 1 / 1;
}

.eq-home-2026 .eq-faq {
  /*background: rgba(255,255,255,.32);*/
  padding-top: clamp(68px, 8vw, 104px);
  padding-bottom: clamp(54px, 7vw, 84px);
}

.eq-home-2026 .eq-faq .eq-section-head h2 {
  color: var(--eq-navy);
}

.eq-home-2026 .eq-faq .eq-section-head h2::after {
  margin-inline: auto;
}

.eq-home-2026 .eq-accordion {
  max-width: 660px;
}

.eq-video-section {
  padding-top: clamp(44px, 7vw, 74px);
  padding-bottom: clamp(86px, 9vw, 130px);
}

.eq-video-frame {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #06142c;
  box-shadow: 0 28px 90px rgba(7,18,59,.28);
}

.eq-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.eq-footer {
  padding-top: 22px;
  padding-bottom: 22px;
}

.eq-footer-inner {
  align-items: center;
}

.eq-footer-contact a,
.eq-contact-link span {
  word-break: break-word;
}

@media (max-width: 980px) {
  .eq-header {
    top: 40px;
  }

  .eq-split-section,
  .eq-blue-panel-inner,
  .eq-location-card,
  .eq-repercussion {
    grid-template-columns: 1fr;
  }

  .eq-blue-media {
    order: -1;
  }

  .eq-card-grid-three {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .eq-repercussion {
    max-width: 620px;
  }

  .eq-repercussion figure {
    width: min(260px, 100%);
  }
}

@media (max-width: 760px) {
  .eq-topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    min-height: 44px;
    padding: 6px 0;
    font-size: 11px;
  }

  .eq-header {
    top: 54px;
    width: calc(100% - 22px);
  }

  .eq-home-2026 .eq-hero {
    min-height: 590px;
    padding-top: 154px;
  }

  .eq-home-2026 .eq-hero-details {
    display: grid;
    gap: 10px;
  }

  .eq-split-section,
  .eq-blue-panel-inner,
  .eq-location-card,
  .eq-repercussion,
  .eq-video-frame {
    width: min(100% - 28px, 620px);
  }

  .eq-split-section {
    padding-top: 62px;
    padding-bottom: 64px;
  }

  .eq-blue-panel,
  .eq-location-band {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .eq-location-card {
    padding: 18px;
  }

  .eq-location-card figure {
    min-height: 210px;
  }

  .eq-repercussion {
    padding-top: 62px;
    padding-bottom: 62px;
  }
}







/* Ajuste solicitado: primeira dobra estática com imagem base fixa */
.eq-home-2026 .eq-hero-static {
  min-height: calc(100svh - 82px);
  padding-top: clamp(170px, 19vh, 245px);
  padding-bottom: clamp(110px, 14vh, 175px);
  background:
    linear-gradient(180deg, rgba(3, 10, 24, .18) 0%, rgba(3, 10, 24, .08) 43%, rgba(240, 244, 249, .82) 100%),
    url('../images/imgi_2_abstract_quantum2.png?v=3') center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.eq-home-2026 .eq-hero-static::before,
.eq-home-2026 .eq-hero-static::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.eq-home-2026 .eq-hero-static::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, .10) 0, transparent 24%),
    linear-gradient(90deg, rgba(1, 8, 22, .18), transparent 26%, transparent 74%, rgba(1, 8, 22, .18));
  z-index: 1;
}

.eq-home-2026 .eq-hero-static::after {
  bottom: -1px;
  height: 26%;
  background: linear-gradient(180deg, rgba(240, 244, 249, 0), #f3f7fb 86%);
  z-index: 2;
}

.eq-home-2026 .eq-hero-static .eq-hero-content {
  z-index: 3;
  max-width: 920px;
  gap: 22px;
}

.eq-hero-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 36px);
  width: 100%;
}

.eq-home-2026 .eq-hero-static .eq-hero-logo {
  width: clamp(128px, 14vw, 190px);
  margin: 0;
  flex: 0 0 auto;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,.34));
}

.eq-hero-title-copy {
  display: block;
  justify-items: start;
  text-align: left;
  line-height: 1;
}

.eq-home-2026 .eq-hero-static h1 {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.35rem);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 950;
  color: #fff;
  text-shadow: 0 16px 46px rgba(0,0,0,.34);
  white-space: nowrap;
}

.eq-home-2026 .eq-hero-static .eq-hero-edition {
  margin: 6px 0 0;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.045em;
  color: var(--eq-gold);
  text-shadow: 0 14px 38px rgba(0,0,0,.24);
  white-space: nowrap;
}

.eq-home-2026 .eq-hero-static .eq-hero-details {
  margin-top: 8px;
  gap: clamp(20px, 3vw, 34px);
  flex-wrap: wrap;
}

.eq-home-2026 .eq-hero-static .eq-date,
.eq-home-2026 .eq-hero-static .eq-place {
  min-width: min(350px, 100%);
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(84, 88, 91, .68);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 18px 42px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}

.eq-home-2026 .eq-hero-static .eq-btn-secondary {
  min-height: 64px;
  margin-top: 8px;
  padding: 0 44px;
  gap: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9a727, #f4c64c);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 20px 46px rgba(170, 119, 13, .28);
}

.eq-btn-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

@media (min-width: 1180px) {
  .eq-home-2026 .eq-hero-static {
    min-height: 860px;
  }
}

@media (max-width: 980px) {
  .eq-home-2026 .eq-hero-static {
    min-height: 650px;
    padding-top: 175px;
    padding-bottom: 110px;
    background-position: center top;
  }

  .eq-hero-title-row {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .eq-home-2026 .eq-hero-static {
    min-height: 640px;
    padding-top: 165px;
    padding-bottom: 92px;
  }

  .eq-hero-title-row {
    display: grid;
    justify-items: center;
    gap: 12px;
  }

  .eq-hero-title-copy {
    justify-items: center;
    text-align: center;
  }

  .eq-home-2026 .eq-hero-static .eq-hero-logo {
    width: min(150px, 44vw);
  }

  .eq-home-2026 .eq-hero-static h1 {
    font-size: clamp(2.25rem, 11vw, 3.8rem);
    white-space: normal;
  }

  .eq-home-2026 .eq-hero-static .eq-hero-edition {
    font-size: clamp(1.95rem, 9vw, 3.1rem);
    white-space: normal;
  }

  .eq-home-2026 .eq-hero-static .eq-date,
  .eq-home-2026 .eq-hero-static .eq-place {
    min-width: 0;
    width: min(100%, 380px);
    padding: 14px 18px;
  }

  .eq-home-2026 .eq-hero-static .eq-btn-secondary {
    min-height: 56px;
    padding-inline: 28px;
    font-size: 16px;
  }
}

/* Ajuste UX/UI solicitado: escala tipografica mais harmonica */
.eq-home-2026 {
  --eq-fs-body: clamp(0.94rem, 0.18vw + 0.9rem, 1.04rem);
  --eq-fs-small: clamp(0.78rem, 0.16vw + 0.74rem, 0.88rem);
  --eq-fs-nav: clamp(0.82rem, 0.18vw + 0.78rem, 0.94rem);
  --eq-fs-section-title: clamp(1.9rem, 2.1vw + 1.05rem, 3.1rem);
  --eq-fs-subtitle: clamp(1.42rem, 1.15vw + 1rem, 2.05rem);
  --eq-fs-card-title: clamp(1rem, 0.35vw + 0.9rem, 1.18rem);
  --eq-fs-hero-title: clamp(2.65rem, 4.8vw + 0.85rem, 4.7rem);
  --eq-fs-hero-edition: clamp(1.85rem, 3.25vw + 0.72rem, 3.5rem);
}

.eq-topbar {
  font-size: 0.78rem;
}

.eq-header {
  min-height: 70px;
}

.eq-brand strong {
  font-size: clamp(0.92rem, 0.45vw + 0.78rem, 1.08rem);
  letter-spacing: .035em;
}

.eq-brand small {
  font-size: clamp(0.66rem, 0.18vw + 0.62rem, 0.78rem);
  letter-spacing: .14em;
}

.eq-nav a {
  padding: 11px 13px;
  font-size: var(--eq-fs-nav);
  font-weight: 650;
  line-height: 1.15;
}

.eq-home-2026 .eq-hero-static {
  min-height: min(760px, calc(100svh - 82px));
  padding-top: clamp(150px, 17vh, 205px);
  padding-bottom: clamp(95px, 11vh, 130px);
}

.eq-home-2026 .eq-hero-static .eq-hero-content {
  max-width: 860px;
  gap: 18px;
}

.eq-home-2026 .eq-hero-static .eq-hero-logo {
  width: clamp(112px, 11vw, 162px);
}

.eq-home-2026 .eq-hero-static h1 {
  font-size: var(--eq-fs-hero-title);
  line-height: .94;
  letter-spacing: -.045em;
}

.eq-home-2026 .eq-hero-static .eq-hero-edition {
  margin-top: 5px;
  font-size: var(--eq-fs-hero-edition);
  line-height: .98;
  letter-spacing: -.035em;
}

.eq-home-2026 .eq-hero-static .eq-date,
.eq-home-2026 .eq-hero-static .eq-place {
  min-height: 50px;
  min-width: min(305px, 100%);
  padding: 13px 22px;
  font-size: clamp(0.95rem, 0.45vw + 0.82rem, 1.12rem);
  font-weight: 750;
  letter-spacing: -.012em;
}

.eq-home-2026 .eq-hero-detail-icon {
  width: 32px;
  height: 32px;
}

.eq-home-2026 .eq-hero-detail-icon svg {
  width: 17px;
  height: 17px;
}

.eq-home-2026 .eq-hero-static .eq-btn-secondary {
  min-height: 56px;
  padding: 0 34px;
  font-size: clamp(0.95rem, 0.28vw + 0.86rem, 1.08rem);
  font-weight: 850;
}

.eq-section {
  padding-top: clamp(72px, 7vw, 100px);
  padding-bottom: clamp(72px, 7vw, 100px);
}

.eq-section h2,
.eq-section-head h2,
.eq-fields-compact .eq-section-head h2,
.eq-home-2026 .eq-faq .eq-section-head h2 {
  font-size: var(--eq-fs-section-title);
  line-height: 1.06;
  letter-spacing: -.038em;
}

.eq-split-copy h2,
.eq-repercussion h2,
.eq-location-card h2,
.eq-blue-copy h2 {
  font-size: var(--eq-fs-subtitle);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.eq-section p,
.eq-split-copy p,
.eq-blue-copy p,
.eq-repercussion p,
.eq-location-card p {
  font-size: var(--eq-fs-body);
  line-height: 1.68;
  letter-spacing: -.003em;
}

.eq-split-section,
.eq-blue-panel-inner,
.eq-location-card {
  gap: clamp(30px, 4.6vw, 64px);
}

.eq-split-section {
  padding-top: clamp(76px, 7.5vw, 104px);
  padding-bottom: clamp(76px, 7.5vw, 104px);
}

.eq-blue-panel,
.eq-location-band {
  padding-top: clamp(66px, 7vw, 94px);
  padding-bottom: clamp(66px, 7vw, 94px);
}

.eq-card-grid-three {
  max-width: 900px;
}

.eq-card-grid-three .eq-field-card {
  min-height: 176px;
  padding: 24px;
}

.eq-card-grid-three .eq-field-card h3 {
  margin-top: 16px;
  margin-bottom: 10px;
  font-size: var(--eq-fs-card-title);
  line-height: 1.22;
  letter-spacing: -.018em;
}

.eq-card-grid-three .eq-field-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.eq-location-card .eq-kicker {
  font-size: 0.76rem;
  letter-spacing: .16em;
}

.eq-repercussion {
  width: min(940px, calc(100% - 40px));
  gap: clamp(30px, 5vw, 60px);
}

.eq-home-2026 .eq-faq {
  padding-top: clamp(64px, 7vw, 92px);
}

.eq-home-2026 .eq-accordion {
  max-width: 760px;
  margin-inline: auto;
  gap: 12px;
}

.eq-faq summary {
  padding: 20px 24px;
  font-size: clamp(0.92rem, 0.2vw + 0.86rem, 1rem);
  line-height: 1.32;
  font-weight: 850;
  letter-spacing: -.006em;
}

.eq-faq summary::after {
  font-size: 22px;
  line-height: 1;
}

.eq-faq details p {
  padding: 0 24px 24px;
  font-size: clamp(0.9rem, 0.18vw + 0.84rem, 0.98rem);
  line-height: 1.62;
}

.eq-video-section {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(72px, 8vw, 110px);
}

.eq-footer-center,
.eq-footer-contact strong,
.eq-footer-contact a {
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .eq-home-2026 .eq-hero-static {
    min-height: 630px;
    padding-top: 158px;
    padding-bottom: 86px;
  }

  .eq-hero-title-row {
    gap: 16px;
  }

  .eq-section h2,
  .eq-section-head h2,
  .eq-fields-compact .eq-section-head h2,
  .eq-home-2026 .eq-faq .eq-section-head h2 {
    font-size: clamp(1.85rem, 4.3vw, 2.75rem);
  }
}

@media (max-width: 760px) {
  .eq-header {
    min-height: 64px;
  }

  .eq-brand img {
    width: 48px;
    height: 48px;
  }

  .eq-home-2026 .eq-hero-static {
    min-height: 590px;
    padding-top: 150px;
    padding-bottom: 78px;
  }

  .eq-home-2026 .eq-hero-static .eq-hero-content {
    gap: 14px;
  }

  .eq-home-2026 .eq-hero-static .eq-hero-logo {
    width: min(126px, 38vw);
  }

  .eq-home-2026 .eq-hero-static h1 {
    font-size: clamp(2rem, 10vw, 3.05rem);
    line-height: .98;
  }

  .eq-home-2026 .eq-hero-static .eq-hero-edition {
    font-size: clamp(1.55rem, 8.4vw, 2.45rem);
  }

  .eq-home-2026 .eq-hero-static .eq-date,
  .eq-home-2026 .eq-hero-static .eq-place {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .eq-home-2026 .eq-hero-static .eq-btn-secondary {
    min-height: 52px;
    padding-inline: 24px;
    font-size: 0.94rem;
  }

  .eq-section,
  .eq-split-section,
  .eq-fields-compact,
  .eq-repercussion {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .eq-section h2,
  .eq-section-head h2,
  .eq-fields-compact .eq-section-head h2,
  .eq-home-2026 .eq-faq .eq-section-head h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.32rem);
  }

  .eq-split-copy h2,
  .eq-repercussion h2,
  .eq-location-card h2,
  .eq-blue-copy h2 {
    font-size: clamp(1.35rem, 5.6vw, 1.8rem);
  }

  .eq-section p,
  .eq-split-copy p,
  .eq-blue-copy p,
  .eq-repercussion p,
  .eq-location-card p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .eq-faq summary {
    padding: 18px 18px;
    font-size: 0.9rem;
  }

  .eq-faq details p {
    padding: 0 18px 20px;
    font-size: 0.88rem;
  }
}

/* Campos de Conexao Quantica - carrossel v49 */
.eq-fields-carousel {
  position: relative;
  width: min(1120px, calc(100% - 104px));
  margin: 0 auto;
  padding: 0;
}

.eq-fields-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.eq-fields-carousel-track {
  --eq-carousel-gap: 18px;
  display: flex;
  gap: var(--eq-carousel-gap);
  align-items: stretch;
  will-change: transform;
  transition: transform .42s cubic-bezier(.22, .8, .22, 1);
}

.eq-fields-slide {
  flex: 0 0 calc((100% - (var(--eq-carousel-gap) * 2)) / 3);
  min-width: 0;
}

.eq-fields-carousel .eq-field-card {
  min-height: 238px;
  height: 100%;
  padding: 34px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(18,52,102,.08);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(18,52,102,.08);
  transform: none;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.eq-fields-carousel .eq-field-card:hover {
  border-color: rgba(218,164,42,.34);
  box-shadow: 0 20px 48px rgba(18,52,102,.13);
  transform: translateY(-3px);
}

.eq-fields-carousel .eq-card-icon {
  width: 54px;
  height: 54px;
  padding: 13px;
  border-radius: 12px;
  color: var(--eq-navy);
  background: rgba(18,52,102,.07);
  transition: background .22s ease, color .22s ease;
}

.eq-fields-carousel .eq-field-card:hover .eq-card-icon {
  color: #fff;
  background: var(--eq-navy);
}

.eq-fields-carousel .eq-field-card h3 {
  margin: 24px 0 12px;
  color: var(--eq-navy);
  font-size: clamp(1.05rem, .42vw + .95rem, 1.25rem);
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -.018em;
}

.eq-fields-carousel .eq-field-card p {
  margin: 0;
  color: rgba(38,60,90,.74);
  font-size: clamp(.92rem, .18vw + .88rem, 1rem);
  line-height: 1.65;
}

.eq-fields-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: var(--eq-navy);
  background: #fff;
  box-shadow: 0 12px 32px rgba(18,52,102,.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}

.eq-fields-carousel-prev {
  left: -56px;
}

.eq-fields-carousel-next {
  right: -56px;
}

.eq-fields-carousel-btn:hover,
.eq-fields-carousel-btn:focus-visible {
  color: #fff;
  background: var(--eq-gold);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.eq-fields-carousel-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.eq-carousel-arrow {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .eq-fields-carousel {
    width: min(760px, calc(100% - 74px));
  }

  .eq-fields-slide {
    flex-basis: calc((100% - var(--eq-carousel-gap)) / 2);
  }
}

@media (max-width: 700px) {
  .eq-fields-carousel {
    width: min(460px, calc(100% - 48px));
  }

  .eq-fields-carousel-track {
    --eq-carousel-gap: 14px;
  }

  .eq-fields-slide {
    flex-basis: 100%;
  }

  .eq-fields-carousel .eq-field-card {
    min-height: 220px;
    padding: 28px;
  }

  .eq-fields-carousel-prev {
    left: -16px;
  }

  .eq-fields-carousel-next {
    right: -16px;
  }

  .eq-fields-carousel-btn {
    width: 36px;
    height: 36px;
  }
}

/* Campos de Conexao Quantica - icones SVG locais v50 */
.eq-fields-carousel .eq-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eq-fields-carousel .eq-card-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(19%) sepia(54%) saturate(1182%) hue-rotate(181deg) brightness(89%) contrast(91%);
  transition: filter .22s ease;
}

.eq-fields-carousel .eq-field-card:hover .eq-card-icon img {
  filter: brightness(0) invert(1);
}

.eq-fields-carousel-btn .eq-carousel-arrow {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(19%) sepia(54%) saturate(1182%) hue-rotate(181deg) brightness(89%) contrast(91%);
  transition: filter .2s ease;
}

.eq-fields-carousel-btn:hover .eq-carousel-arrow,
.eq-fields-carousel-btn:focus-visible .eq-carousel-arrow {
  filter: brightness(0) invert(1);
}

/* Expo Quantic v52 - Montserrat e escala tipografica padronizada */
:root {
  --eq-font-primary: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --eq-fs-nav: clamp(0.82rem, 0.18vw + 0.78rem, 0.94rem);
  --eq-fs-brand: clamp(0.92rem, 0.45vw + 0.78rem, 1.08rem);
  --eq-fs-brand-sub: clamp(0.66rem, 0.18vw + 0.62rem, 0.78rem);
  --eq-fs-hero-title: clamp(2.65rem, 4.8vw + 0.85rem, 4.7rem);
  --eq-fs-hero-edition: clamp(1.85rem, 3.25vw + 0.72rem, 3.5rem);
  --eq-fs-hero-meta: clamp(0.95rem, 0.45vw + 0.82rem, 1.12rem);
  --eq-fs-button: clamp(0.95rem, 0.28vw + 0.86rem, 1.08rem);
  --eq-fs-section-title: clamp(1.9rem, 2.1vw + 1.05rem, 3.1rem);
  --eq-fs-subtitle: clamp(1.42rem, 1.15vw + 1rem, 2.05rem);
  --eq-fs-body: clamp(0.94rem, 0.18vw + 0.9rem, 1.04rem);
  --eq-fs-card-title: clamp(1rem, 0.35vw + 0.9rem, 1.18rem);
  --eq-fs-card-text: clamp(0.9rem, 0.18vw + 0.84rem, 0.98rem);
  --eq-fs-faq-question: clamp(0.92rem, 0.2vw + 0.86rem, 1rem);
  --eq-fs-faq-answer: clamp(0.9rem, 0.18vw + 0.84rem, 0.98rem);
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--eq-font-primary);
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.eq-brand strong {
  font-size: var(--eq-fs-brand);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eq-brand small {
  font-size: var(--eq-fs-brand-sub);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eq-nav a {
  font-size: var(--eq-fs-nav);
  font-weight: 600;
  line-height: 1.2;
}

.eq-home-2026 .eq-hero-static h1,
.eq-home-2026 .eq-hero h1 {
  font-size: var(--eq-fs-hero-title);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.eq-home-2026 .eq-hero-static .eq-hero-edition,
.eq-home-2026 .eq-hero-edition {
  font-size: var(--eq-fs-hero-edition);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.eq-home-2026 .eq-hero-static .eq-date,
.eq-home-2026 .eq-hero-static .eq-place,
.eq-home-2026 .eq-hero-details p {
  font-size: var(--eq-fs-hero-meta);
  line-height: 1.25;
  font-weight: 600;
}

.eq-btn,
.eq-home-2026 .eq-hero-static .eq-btn-secondary,
.eq-registration .eq-submit,
.primary-button,
.form-submit {
  font-size: var(--eq-fs-button);
  line-height: 1.2;
  font-weight: 700;
}

.eq-section-head h2,
.eq-section h2,
.eq-split-copy h2,
.eq-blue-copy h2,
.eq-location-card h2,
.eq-repercussion h2,
.eq-registration-info h2,
.eq-home-2026 .eq-faq .eq-section-head h2,
.eq-fields-compact .eq-section-head h2 {
  font-size: var(--eq-fs-section-title);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.eq-info-card h3,
.eq-split-card h3,
.eq-media-grid article h3,
.eq-registration legend,
.eq-location-card .eq-kicker + h2 {
  line-height: 1.18;
}

.eq-section p,
.eq-split-copy p,
.eq-blue-copy p,
.eq-location-card p,
.eq-repercussion p,
.eq-registration-info > p,
.eq-registration-info li,
.eq-footer p {
  font-size: var(--eq-fs-body);
  line-height: 1.65;
  font-weight: 400;
}

.eq-fields-carousel .eq-field-card {
  padding: clamp(1.5rem, 1.5vw + 1.05rem, 2.1rem);
  min-height: 224px;
}

.eq-fields-carousel .eq-card-icon {
  width: 52px;
  height: 52px;
  padding: 10px;
}

.eq-fields-carousel .eq-card-icon img {
  width: clamp(28px, 0.8vw + 24px, 34px);
  height: clamp(28px, 0.8vw + 24px, 34px);
}

.eq-fields-carousel .eq-field-card h3 {
  margin: 20px 0 10px;
  font-size: var(--eq-fs-card-title);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.eq-fields-carousel .eq-field-card p {
  font-size: var(--eq-fs-card-text);
  line-height: 1.6;
  font-weight: 400;
}

.eq-faq summary {
  font-size: var(--eq-fs-faq-question);
  line-height: 1.35;
  font-weight: 700;
}

.eq-faq details p {
  font-size: var(--eq-fs-faq-answer);
  line-height: 1.65;
  font-weight: 400;
}

.eq-form legend,
.eq-registration legend {
  font-size: var(--eq-fs-subtitle);
  line-height: 1.2;
  font-weight: 700;
}

.form-field > span,
.eq-field > span,
.eq-registration .eq-consent,
.eq-registration .lgpd-field {
  font-size: clamp(0.86rem, 0.18vw + 0.82rem, 0.95rem);
  line-height: 1.45;
  font-weight: 600;
}

.eq-field input,
.eq-field select,
.eq-registration .eq-field input,
.eq-registration .eq-field select {
  font-size: clamp(0.95rem, 0.14vw + 0.92rem, 1rem);
  line-height: 1.25;
  font-weight: 500;
}

.eq-form-message,
.form-alert,
.form-field small,
.field-error {
  font-size: clamp(0.84rem, 0.16vw + 0.8rem, 0.92rem);
  line-height: 1.45;
}

.eq-home-2026 .eq-hero-static {
  min-height: min(760px, calc(100svh - 82px));
  padding-top: clamp(148px, 16vh, 198px);
  padding-bottom: clamp(86px, 10vh, 122px);
}

.eq-section,
.eq-split-section,
.eq-fields-compact,
.eq-repercussion {
   
  padding-top: clamp(66px, 7vw, 96px);
  padding-bottom: clamp(66px, 7vw, 96px);
}

.eq-blue-panel,
.eq-location-band {
  padding-top: clamp(62px, 7vw, 90px);
  padding-bottom: clamp(62px, 7vw, 90px);
}

.eq-home-2026 .eq-accordion {
  max-width: 820px;
}

@media (max-width: 760px) {
  .eq-home-2026 .eq-hero-static h1,
  .eq-home-2026 .eq-hero h1 {
    font-size: clamp(2.15rem, 9.4vw, 3.25rem);
    line-height: 1;
    white-space: normal;
  }

  .eq-home-2026 .eq-hero-static .eq-hero-edition,
  .eq-home-2026 .eq-hero-edition {
    font-size: clamp(1.55rem, 7.4vw, 2.35rem);
    line-height: 1.05;
    white-space: normal;
  }

  .eq-section-head h2,
  .eq-section h2,
  .eq-split-copy h2,
  .eq-blue-copy h2,
  .eq-location-card h2,
  .eq-repercussion h2,
  .eq-registration-info h2,
  .eq-home-2026 .eq-faq .eq-section-head h2,
  .eq-fields-compact .eq-section-head h2 {
    font-size: clamp(1.72rem, 6.6vw, 2.25rem);
    line-height: 1.12;
  }

  .eq-section p,
  .eq-split-copy p,
  .eq-blue-copy p,
  .eq-location-card p,
  .eq-repercussion p,
  .eq-registration-info > p,
  .eq-registration-info li {
    font-size: clamp(0.94rem, 0.8vw + 0.88rem, 1rem);
    line-height: 1.62;
  }

  .eq-faq summary {
    font-size: 0.94rem;
  }

  .eq-faq details p {
    font-size: 0.92rem;
  }
}

/* Expo Quantic v56 - ajustes dos cards do carrossel Campos de Conexao Quantica */
.eq-fields-carousel .eq-field-card {
  height: clamp(300px, 15vw + 210px, 340px);
  min-height: clamp(300px, 15vw + 210px, 340px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.eq-fields-carousel .eq-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 10px;
  border-radius: 13px;
  color: var(--eq-navy);
  background: rgba(18,52,102,.08);
  box-shadow: 0 14px 34px rgba(18,52,102,.08);
  transition: background .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.eq-fields-carousel .eq-card-icon img {
  width: clamp(28px, .55vw + 25px, 34px);
  height: clamp(28px, .55vw + 25px, 34px);
  filter: brightness(0) saturate(100%) invert(18%) sepia(54%) saturate(1234%) hue-rotate(181deg) brightness(91%) contrast(94%);
  transition: filter .22s ease;
}

.eq-fields-carousel .eq-field-card:hover .eq-card-icon,
.eq-fields-carousel .eq-field-card:focus-within .eq-card-icon {
  color: #fff;
  background: var(--eq-navy);
  box-shadow: 0 16px 38px rgba(18,52,102,.22);
  transform: translateY(-1px);
}

.eq-fields-carousel .eq-field-card:hover .eq-card-icon img,
.eq-fields-carousel .eq-field-card:focus-within .eq-card-icon img {
  filter: brightness(0) invert(1);
}

.eq-fields-carousel .eq-field-card h3 {
  margin-top: 22px;
}

.eq-fields-carousel .eq-field-card p {
  max-width: 100%;
}

@media (max-width: 980px) {
  .eq-fields-carousel .eq-field-card {
    height: clamp(292px, 18vw + 210px, 330px);
    min-height: clamp(292px, 18vw + 210px, 330px);
  }
}

@media (max-width: 700px) {
  .eq-fields-carousel .eq-field-card {
    height: auto;
    min-height: 286px;
    overflow: visible;
  }
}

.eq-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eq-footer-social__link {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--eq-blue, #123f72);
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.eq-footer-social__link svg,
.eq-footer-social__link img {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.eq-footer-social__link svg {
  stroke: currentColor;
  fill: none;
}

.eq-footer-social__link:hover {
  color: #ffffff;
  background: var(--eq-blue, #123f72);
  transform: translateY(-2px);
}
.eq-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eq-footer-social__link {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.eq-footer-social__link svg,
.eq-footer-social__link svg * {
  width: 1.1rem;
  height: 1.1rem;
  color: #ffffff;
  stroke: #ffffff !important;
  fill: #ffffff !important;
}

.eq-footer-social__link img {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  filter: brightness(0) invert(1);
}

.eq-footer-social__link:hover {
  background: var(--eq-gold, #e5b446);
  transform: translateY(-2px);
}


/* Expo Quantic v66 - hero profissional sem card pesado e sem corte branco abrupto */
.eq-home-2026 .eq-hero-static {
  min-height: clamp(720px, calc(100svh - 72px), 860px);
  padding: clamp(132px, 15vh, 176px) max(24px, calc((100vw - 1180px) / 2)) clamp(120px, 13vh, 168px);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(13, 45, 88, .24) 0%, rgba(3, 10, 26, .16) 34%, rgba(2, 8, 22, .72) 82%),
    linear-gradient(180deg, rgba(2, 8, 22, .74) 0%, rgba(2, 8, 22, .34) 34%, rgba(2, 8, 22, .38) 64%, rgba(2, 8, 22, .82) 100%),
    url('../images/imgi_2_abstract_quantum2.png?v=3') center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.eq-home-2026 .eq-hero-static::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 8, 22, .70) 0%, rgba(2, 8, 22, .22) 22%, rgba(2, 8, 22, .08) 50%, rgba(2, 8, 22, .24) 78%, rgba(2, 8, 22, .70) 100%),
    radial-gradient(ellipse at 50% 42%, rgba(2, 8, 22, .10) 0%, rgba(2, 8, 22, .28) 44%, rgba(2, 8, 22, .64) 100%);
}

.eq-home-2026 .eq-hero-static::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 92px;
  pointer-events: none;
  background: var(--eq-cream);
  clip-path: ellipse(74% 100% at 50% 112%);
  box-shadow: 0 -18px 48px rgba(2, 8, 22, .20);
}

.eq-home-2026 .eq-hero-static .eq-hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 980px);
  max-width: 980px;
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2vw, 24px);
  padding: 0;
  margin: 0 auto;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.eq-home-2026 .eq-hero-static .eq-hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -58px -78px -44px;
  border-radius: 42px;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(2, 8, 22, .74) 0%, rgba(2, 8, 22, .52) 44%, rgba(2, 8, 22, .08) 78%, transparent 100%);
  filter: blur(8px);
  opacity: .92;
  pointer-events: none;
}

.eq-hero-title-row {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.1vw, 56px);
  width: 100%;
}

.eq-home-2026 .eq-hero-static .eq-hero-logo {
  width: clamp(132px, 13vw, 190px);
  margin: 0;
  flex: none;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, .42));
}

.eq-hero-title-copy {
  position: relative;
  display: grid;
  justify-items: start;
  text-align: left;
  line-height: 1;
  padding-left: clamp(28px, 3vw, 44px);
}

.eq-hero-title-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7%;
  bottom: 7%;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, transparent, #f0dfad 18%, #d7bb73 50%, #f0dfad 82%, transparent);
  box-shadow: 0 0 22px rgba(215, 187, 115, .32);
}

.eq-home-2026 .eq-hero-static h1 {
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 6.25rem);
  line-height: .88;
  letter-spacing: -.06em;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, .48), 0 2px 0 rgba(255, 255, 255, .04);
  white-space: nowrap;
}

.eq-home-2026 .eq-hero-static .eq-hero-edition {
  margin: 8px 0 0;
  font-size: clamp(2.45rem, 4.4vw, 4.45rem);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 900;
  color: #e8c565;
  text-shadow: 0 14px 34px rgba(0, 0, 0, .42);
  white-space: nowrap;
}

.eq-home-2026 .eq-hero-static .eq-hero-details {
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: clamp(6px, 1.4vw, 16px);
}

.eq-home-2026 .eq-hero-static .eq-date,
.eq-home-2026 .eq-hero-static .eq-place {
  min-width: min(320px, 100%);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 0;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(92, 99, 110, .86), rgba(62, 70, 84, .76));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 16px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.eq-home-2026 .eq-hero-detail-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: linear-gradient(135deg, #f0dfad, #d7bb73);
  color: #123466;
  box-shadow: 0 8px 18px rgba(215, 187, 115, .22);
}

.eq-home-2026 .eq-hero-detail-icon svg {
  width: 17px;
  height: 17px;
}

.eq-home-2026 .eq-hero-static .eq-btn-secondary {
  min-height: 58px;
  margin-top: clamp(2px, 1vw, 10px);
  padding: 0 40px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2ab26 0%, #f6c748 100%);
  color: #fff;
  font-size: clamp(.98rem, .25vw + .9rem, 1.08rem);
  font-weight: 850;
  letter-spacing: -.01em;
  box-shadow: 0 18px 38px rgba(177, 119, 9, .30), inset 0 1px 0 rgba(255,255,255,.34);
}

.eq-home-2026 .eq-hero-static .eq-btn-secondary:hover,
.eq-home-2026 .eq-hero-static .eq-btn-secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(177, 119, 9, .38), inset 0 1px 0 rgba(255,255,255,.38);
}

.eq-home-2026 .eq-hero-static .eq-btn-secondary img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

@media (min-width: 1180px) {
  .eq-home-2026 .eq-hero-static {
    background-size: max(100vw, 1500px) auto;
  }
}

@media (max-width: 980px) {
  .eq-home-2026 .eq-hero-static {
    min-height: 700px;
    padding-top: 132px;
    padding-bottom: 118px;
    background-position: center center;
  }

  .eq-hero-title-row {
    gap: 26px;
  }

  .eq-home-2026 .eq-hero-static h1 {
    font-size: clamp(3rem, 7.6vw, 4.35rem);
  }

  .eq-home-2026 .eq-hero-static .eq-hero-edition {
    font-size: clamp(2.05rem, 5.8vw, 3.25rem);
  }
}

@media (max-width: 760px) {
  .eq-home-2026 .eq-hero-static {
    min-height: 660px;
    padding: 126px 22px 104px;
    background-position: center center;
  }

  .eq-home-2026 .eq-hero-static::after {
    height: 70px;
    clip-path: ellipse(96% 100% at 50% 112%);
  }

  .eq-home-2026 .eq-hero-static .eq-hero-content {
    gap: 14px;
  }

  .eq-home-2026 .eq-hero-static .eq-hero-content::before {
    inset: -36px -28px -30px;
    border-radius: 28px;
    filter: blur(10px);
  }

  .eq-hero-title-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .eq-hero-title-copy {
    justify-items: center;
    text-align: center;
    padding-left: 0;
  }

  .eq-hero-title-copy::before {
    display: none;
  }

  .eq-home-2026 .eq-hero-static .eq-hero-logo {
    width: min(146px, 43vw);
  }

  .eq-home-2026 .eq-hero-static h1 {
    font-size: clamp(2.2rem, 10vw, 3.35rem);
    line-height: .96;
    white-space: normal;
  }

  .eq-home-2026 .eq-hero-static .eq-hero-edition {
    font-size: clamp(1.65rem, 7.8vw, 2.55rem);
    line-height: 1;
    white-space: normal;
  }

  .eq-home-2026 .eq-hero-static .eq-hero-details {
    gap: 10px;
  }

  .eq-home-2026 .eq-hero-static .eq-date,
  .eq-home-2026 .eq-hero-static .eq-place {
    width: min(100%, 360px);
    min-height: 48px;
    justify-content: flex-start;
    padding: 11px 16px;
    font-size: .9rem;
  }

  .eq-home-2026 .eq-hero-detail-icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .eq-home-2026 .eq-hero-static .eq-btn-secondary {
    min-height: 52px;
    padding-inline: 28px;
    font-size: .94rem;
  }
}


/* ==========================================================
   HERO EXPO QUANTIC - CORRECAO FINAL v67
   Mantem a estrutura HTML atual e corrige desalinhamento,
   leitura do texto e transicao inferior da primeira dobra.
   ========================================================== */
.eq-home-2026 .eq-hero.eq-hero-static {
  min-height: clamp(680px, 86svh, 820px);
  padding: clamp(142px, 15vh, 184px) max(22px, calc((100vw - 1180px) / 2)) clamp(88px, 11vh, 130px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image:
    radial-gradient(circle at 50% 42%, rgba(15, 40, 84, .18) 0, rgba(2, 10, 26, .22) 31%, rgba(2, 8, 22, .66) 100%),
    linear-gradient(180deg, rgba(2, 9, 24, .50) 0%, rgba(2, 9, 24, .26) 43%, rgba(2, 9, 24, .34) 73%, rgba(2, 9, 24, .86) 100%),
    url('../images/imgi_2_abstract_quantum2.png?v=3');
  background-size: cover, cover, cover;
  background-position: center center, center center, center center;
  background-repeat: no-repeat;
  color: #fff;
}

.eq-home-2026 .eq-hero.eq-hero-static::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 18%, transparent 48%),
    linear-gradient(90deg, rgba(1,7,20,.64) 0%, rgba(1,7,20,.15) 24%, rgba(1,7,20,.12) 76%, rgba(1,7,20,.64) 100%);
}

.eq-home-2026 .eq-hero.eq-hero-static::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: clamp(52px, 8vw, 90px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2,9,24,0) 0%, rgba(2,9,24,.42) 52%, #f3f7fb 100%);
}

.eq-home-2026 .eq-hero.eq-hero-static .eq-hero-content {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%);
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 26px);
  text-align: center;
}

.eq-home-2026 .eq-hero.eq-hero-static .eq-hero-content::before {
  content: "";
  position: absolute;
  inset: -44px -54px -34px;
  z-index: -1;
  border-radius: 48px;
  background: radial-gradient(ellipse at 50% 48%, rgba(2, 10, 27, .50) 0%, rgba(2, 10, 27, .30) 42%, rgba(2, 10, 27, 0) 72%);
  filter: blur(2px);
  pointer-events: none;
}

.eq-home-2026 .eq-hero-title-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(120px, 168px) minmax(0, auto);
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 3.6vw, 46px);
}

.eq-home-2026 .eq-hero-title-copy {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding-left: clamp(24px, 3vw, 40px);
}

.eq-home-2026 .eq-hero-title-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6%;
  bottom: 8%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(240, 223, 173, .92) 18%, rgba(240, 223, 173, .92) 82%, transparent);
  box-shadow: 0 0 22px rgba(240, 223, 173, .20);
}

.eq-home-2026 .eq-hero.eq-hero-static .eq-hero-logo {
  display: block;
  width: clamp(118px, 10vw, 168px);
  max-width: 100%;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, .38));
}

.eq-home-2026 .eq-hero.eq-hero-static h1 {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0;
  font-size: clamp(3.05rem, 5.25vw, 5.65rem);
  line-height: .91;
  font-weight: 950;
  letter-spacing: -.058em;
  white-space: nowrap;
  color: #fff !important;
  text-align: left;
  text-shadow: 0 16px 48px rgba(0, 0, 0, .42);
  transform: none !important;
}

.eq-home-2026 .eq-hero.eq-hero-static .eq-hero-edition {
  display: block;
  width: auto;
  max-width: 100%;
  margin: clamp(6px, .9vw, 10px) 0 0;
  font-size: clamp(2.05rem, 3.85vw, 4.18rem);
  line-height: .94;
  font-weight: 950;
  letter-spacing: -.045em;
  white-space: nowrap;
  color: var(--eq-gold) !important;
  text-align: left;
  text-shadow: 0 14px 36px rgba(0, 0, 0, .34);
  transform: none !important;
}

.eq-home-2026 .eq-hero.eq-hero-static .eq-hero-details {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px clamp(18px, 2.5vw, 28px);
  margin: 2px 0 0;
}

.eq-home-2026 .eq-hero.eq-hero-static .eq-date,
.eq-home-2026 .eq-hero.eq-hero-static .eq-place {
  width: auto;
  min-width: min(315px, 100%);
  min-height: 54px;
  margin: 0;
  padding: 13px 23px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.30);
  background: linear-gradient(135deg, rgba(104, 111, 118, .82), rgba(64, 72, 86, .70));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.20), 0 18px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  color: #fff !important;
  font-size: clamp(.96rem, .45vw + .84rem, 1.14rem);
  font-weight: 800;
  letter-spacing: -.012em;
  text-shadow: 0 8px 22px rgba(0,0,0,.32);
}

.eq-home-2026 .eq-hero.eq-hero-static .eq-hero-detail-icon {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  color: #123466;
  background: linear-gradient(135deg, #d7bb73, #fff0ba);
}

.eq-home-2026 .eq-hero.eq-hero-static .eq-hero-detail-icon svg {
  width: 17px;
  height: 17px;
}

.eq-home-2026 .eq-hero.eq-hero-static .eq-btn-secondary {
  min-height: 58px;
  margin: 0;
  padding: 0 clamp(32px, 3vw, 44px);
  border-radius: 999px;
  background: linear-gradient(135deg, #dba82b 0%, #f4c44b 100%);
  color: #fff !important;
  font-size: clamp(.98rem, .35vw + .88rem, 1.12rem);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(217, 168, 43, .32);
  text-shadow: 0 8px 22px rgba(112, 73, 0, .16);
}

.eq-home-2026 .eq-hero.eq-hero-static .eq-btn-secondary img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1180px) {
  .eq-home-2026 .eq-hero-title-row {
    grid-template-columns: minmax(102px, 138px) minmax(0, auto);
  }

  .eq-home-2026 .eq-hero.eq-hero-static h1 {
    font-size: clamp(2.65rem, 6.2vw, 4.8rem);
  }

  .eq-home-2026 .eq-hero.eq-hero-static .eq-hero-edition {
    font-size: clamp(1.85rem, 4.55vw, 3.4rem);
  }
}

@media (max-width: 820px) {
  .eq-home-2026 .eq-hero.eq-hero-static {
    min-height: 660px;
    padding-top: 148px;
    padding-bottom: 82px;
    background-position: center top, center top, center top;
  }

  .eq-home-2026 .eq-hero.eq-hero-static .eq-hero-content::before {
    inset: -38px -24px -28px;
    border-radius: 34px;
  }

  .eq-home-2026 .eq-hero-title-row {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
  }

  .eq-home-2026 .eq-hero-title-copy {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }

  .eq-home-2026 .eq-hero-title-copy::before {
    display: none;
  }

  .eq-home-2026 .eq-hero.eq-hero-static .eq-hero-logo {
    width: min(138px, 42vw);
  }

  .eq-home-2026 .eq-hero.eq-hero-static h1,
  .eq-home-2026 .eq-hero.eq-hero-static .eq-hero-edition {
    white-space: normal;
    text-align: center;
  }

  .eq-home-2026 .eq-hero.eq-hero-static h1 {
    font-size: clamp(2.3rem, 10.6vw, 3.55rem);
    line-height: .96;
  }

  .eq-home-2026 .eq-hero.eq-hero-static .eq-hero-edition {
    font-size: clamp(1.72rem, 8.3vw, 2.7rem);
    line-height: .98;
  }

  .eq-home-2026 .eq-hero.eq-hero-static .eq-date,
  .eq-home-2026 .eq-hero.eq-hero-static .eq-place {
    width: min(100%, 360px);
    min-width: 0;
    min-height: 49px;
    justify-content: flex-start;
    padding: 11px 16px;
    font-size: .92rem;
  }

  .eq-home-2026 .eq-hero.eq-hero-static .eq-btn-secondary {
    min-height: 52px;
    padding-inline: 28px;
  }
}
