:root {
  --blue-950: #07143d;
  --blue-900: #0b1f5c;
  --blue-700: #1647c7;
  --blue-500: #246bff;
  --cyan: #00c2ff;
  --green: #49e58d;
  --yellow: #ffd447;
  --orange: #ff8a00;
  --whatsapp: #25d366;
  --white: #ffffff;
  --soft: #f5f8ff;
  --muted: #6c7894;
  --dark: #101828;
  --card: rgba(255, 255, 255, .1);
  --border: rgba(255, 255, 255, .16);
  --shadow: 0 24px 70px rgba(5, 13, 45, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--soft);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--blue-950);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 20, 61, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 58px;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.menu a {
  opacity: .78;
  transition: opacity .2s ease, color .2s ease;
}

.menu a:hover,
.menu a.active {
  opacity: 1;
  color: var(--yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== ALERT EXPOSITOR ===== */
.alert-expositor {
  background: linear-gradient(135deg, #dc2626 0%, #b71c1c 100%);
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.alert-expositor-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  line-height: 1.4;
}

.alert-expositor-icon {
  flex-shrink: 0;
  color: #fef08a;
}

.alert-expositor strong {
  font-weight: 800;
  color: #ffffff;
}

@media (max-width: 768px) {
  .alert-expositor {
    padding: 10px 16px;
    font-size: 13px;
  }
  .alert-expositor-inner {
    flex-direction: row;
    text-align: left;
    gap: 8px;
  }
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--blue-950);
  box-shadow: 0 14px 34px rgba(255, 138, 0, .28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 138, 0, .38);
}

.btn-secondary {
  background: var(--blue-500);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-light {
  background: var(--white);
  color: var(--blue-950);
  box-shadow: 0 10px 30px rgba(7, 20, 61, .12);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--blue-950);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .24);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(37, 211, 102, .34);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* ===== HERO DE PÁGINAS INTERNAS ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 194, 255, .32), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(255, 212, 71, .25), transparent 28%),
    linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 48%, #122f8f 100%);
  padding: 82px 0 72px;
}

.page-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -38% -10%;
  height: 320px;
  background: rgba(255, 255, 255, .08);
  filter: blur(90px);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.logo-hero {
  width: min(340px, 70%);
  margin: 0 auto 24px;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, .35));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.page-hero h1 {
  max-width: 900px;
  margin: 22px auto 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.page-hero h1 span {
  color: var(--yellow);
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== GRIDS E CARDS COMPARTILHADOS ===== */
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid rgba(11, 31, 92, .08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(7, 20, 61, .06);
  transition: .25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-img {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 22px;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.meta {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ===== TÍTULOS DE SEÇÃO ===== */
section {
  padding: 82px 0;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.045em;
  color: var(--blue-950);
}

.section-title p {
  max-width: 720px;
  color: var(--muted);
  margin: 0 auto;
  font-weight: 500;
}

/* ===== CONTEÚDO LEGAL (Termos / Privacidade) ===== */
.legal-content {
  background: var(--white);
  border: 1px solid rgba(11, 31, 92, .08);
  border-radius: 32px;
  padding: 38px;
  box-shadow: 0 12px 36px rgba(7, 20, 61, .06);
}

.legal-content h2 {
  color: var(--blue-950);
  font-size: 30px;
  letter-spacing: -.03em;
  margin: 32px 0 10px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

@media (max-width: 620px) {
  .legal-content {
    padding: 24px 18px;
    border-radius: 24px;
  }
}

/* ===== SEÇÃO ESCURA GENÉRICA ===== */
.dark-section {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-900));
  color: var(--white);
}

.dark-section .section-title h2 {
  color: var(--white);
}

.dark-section .section-title p {
  color: rgba(255, 255, 255, .74);
}

/* ===== PATROCINADORES ===== */
#apoio {
  padding: 60px 0;
}

.sponsors {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.sponsors-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 32px;
  width: 100%;
}

.sponsor-logo-wrapper {
  width: 130px;
  height: 56px;
  padding: 4px 8px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sponsor-logo-wrapper:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.sponsor-logo-wrapper img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-950);
  color: var(--white);
  padding: 44px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .72);
}

.footer a:hover {
  color: var(--yellow);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px;
  font-weight: 700;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  box-shadow: var(--shadow);
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(7, 20, 61, .96);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 24px 70px rgba(5, 13, 45, .32);
  backdrop-filter: blur(16px);
}

.cookie-notice.show {
  display: flex;
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 500;
}

.cookie-notice a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-notice button {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--blue-950);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

/* ===== RESPONSIVIDADE GLOBAL ===== */
/* ===== HOME - HERO & STATS ===== */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 194, 255, .32), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(255, 212, 71, .25), transparent 28%),
    linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 48%, #122f8f 100%);
  padding: 78px 0 46px;
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -38% -10%;
  height: 320px;
  background: rgba(255, 255, 255, .08);
  filter: blur(90px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
}

.hero h1 {
  margin: 22px 0 16px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .92;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  margin: 0 0 28px;
}

.hero-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .11);
  border-radius: 32px;
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card .video-wrap {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 24px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.hero-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(7, 20, 61, .76);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  color: var(--white);
}

.hero-video-caption span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
}

.stats {
  background: var(--white);
  padding: 22px 0;
  border-bottom: 1px solid rgba(11, 31, 92, .08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 24px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid rgba(11, 31, 92, .08);
}

.stat strong {
  font-size: 34px;
  color: var(--blue-700);
  display: block;
  letter-spacing: -.04em;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

/* ===== HOME - SEGMENTOS, ESTANDES & CARDS ===== */
.segments-grid,
.stands-grid,
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stands-grid {
  grid-template-columns: repeat(3, 1fr);
}

.media-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.chip-card,
.stand-card,
.download-card,
.media-card {
  background: var(--white);
  border: 1px solid rgba(11, 31, 92, .08);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(7, 20, 61, .06);
  transition: .25s ease;
}

.chip-card:hover,
.stand-card:hover,
.download-card:hover,
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #e9f1ff, #f5f9ff);
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(36, 107, 255, .08);
}

.icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chip-card h3,
.stand-card h3,
.download-card h3,
.media-card h3 {
  margin: 0 0 8px;
  color: var(--blue-950);
}

.chip-card p,
.stand-card p,
.download-card p,
.media-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.stand-card strong {
  display: block;
  font-size: 34px;
  color: var(--blue-700);
  letter-spacing: -.04em;
}

/* ===== HOME - SOBRE E TIMELINE ===== */
.about-cards {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
  margin-top: 30px;
}

.about-card {
  background: rgba(255, 255, 255, .09);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.about-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -.03em;
  color: var(--white);
}

.about-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .8);
}

.about-card p:last-child {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.timeline div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid var(--border);
  font-weight: 900;
  color: var(--yellow);
  text-align: center;
}

/* ===== HOME - PREÇOS ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  border-radius: 28px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card strong {
  font-size: 32px;
  color: var(--yellow);
}

.price-card p {
  color: rgba(255, 255, 255, .78);
  margin: 10px 0 0;
}

/* ===== HOME - MEDIA CARD (Galeria rápida) ===== */
.media-card {
  overflow: hidden;
  padding: 0;
  flex: 1 1 300px;
  max-width: 380px;
}

.media-card .thumb {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.media-card .body {
  padding: 22px;
}

.play {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue-950);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 12px;
}

/* ===== HOME - MAP BLOCK ===== */
.map-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.map-preview {
  min-height: 380px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(7, 20, 61, .08), rgba(7, 20, 61, .52)),
    url('../../mapa-fenics.jpeg') center/cover;
  box-shadow: var(--shadow);
}

.map-content {
  border-radius: 34px;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(11, 31, 92, .08);
  box-shadow: 0 12px 36px rgba(7, 20, 61, .06);
}

.map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.download-card a {
  margin-top: 18px;
  display: inline-flex;
  color: var(--blue-700);
  font-weight: 900;
}

/* ===== HOME - FORMULÁRIO DE CONTRATAÇÃO ===== */
.form-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid rgba(11, 31, 92, .08);
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  font-weight: 800;
  font-size: 13px;
  color: var(--blue-950);
  display: block;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(11, 31, 92, .14);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  background: #fbfcff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

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

/* ===== HOME - COMPROMISSOS ===== */
.compromissos-section {
  background: var(--white);
  border-top: 1px solid rgba(11, 31, 92, 0.04);
  border-bottom: 1px solid rgba(11, 31, 92, 0.04);
}

.compromissos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.compromisso-card {
  background: var(--soft);
  border: 1px solid rgba(11, 31, 92, 0.06);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 18px rgba(7, 20, 61, 0.02);
}

.compromisso-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 20px 40px rgba(7, 20, 61, 0.08);
}

.compromisso-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(11, 31, 92, 0.15);
  transition: all 0.3s ease;
}

.compromisso-card:hover .compromisso-icon-wrapper {
  transform: scale(1.08) rotate(5deg);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--blue-950);
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.25);
}

.compromisso-icon {
  width: 26px;
  height: 26px;
}

.compromisso-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-950);
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}

.compromisso-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.compromissos-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.compromisso-img-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 92, 0.08);
  box-shadow: 0 6px 20px rgba(7, 20, 61, 0.04);
  background: var(--white);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.compromisso-img-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 20, 61, 0.1);
  border-color: var(--blue-500);
}

.compromisso-img-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===== RESPONSIVIDADE GLOBAL (TODAS AS PÁGINAS) ===== */
@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .nav-actions .btn-whatsapp {
    display: none;
  }

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

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

  .hero-grid,
  .map-block,
  .form-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid,
  .segments-grid,
  .stands-grid,
  .price-grid,
  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .compromissos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .compromissos-images {
    gap: 20px;
    margin-top: 28px;
  }
}

@media (max-width: 768px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .edition-tabs {
    gap: 8px !important;
  }

  .tab-btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
  }

  .sponsors-row {
    gap: 16px 20px;
  }

  .sponsor-logo-wrapper {
    width: 110px;
    height: 48px;
  }

  .sponsor-logo-wrapper img {
    max-height: 38px;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 24px);
  }

  .topbar {
    font-size: 12px;
    padding: 8px 0;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
    gap: 4px;
  }

  .nav-inner {
    height: 68px;
  }

  .brand img {
    height: 44px;
  }

  .nav-actions .btn-primary {
    padding: 10px 14px;
    font-size: 13px;
  }

  .alert-expositor {
    font-size: 12px;
    padding: 8px 0;
  }

  .alert-expositor-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .page-hero {
    padding: 56px 0 44px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 52px);
    margin: 16px auto 14px;
  }

  .page-hero p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .hero {
    padding: 52px 0 36px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .hero-card {
    border-radius: 24px;
    padding: 12px;
  }

  .hero-card .video-wrap {
    min-height: 240px;
    border-radius: 18px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: clamp(26px, 7.5vw, 38px);
  }

  .section-title p {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat {
    padding: 14px 10px;
    border-radius: 18px;
  }

  .stat strong {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.1;
  }

  .stat span {
    font-size: 11px;
    line-height: 1.2;
  }

  .segments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .chip-card {
    padding: 14px 10px;
    border-radius: 18px;
  }

  .chip-card h3 {
    font-size: 14px;
    line-height: 1.2;
  }

  .chip-card p {
    font-size: 11px;
    line-height: 1.35;
  }

  .icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 10px;
  }

  .icon svg {
    width: 22px;
    height: 22px;
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-card {
    padding: 20px 16px;
    border-radius: 20px;
    width: 100%;
  }

  .about-card h3 {
    font-size: 20px;
    line-height: 1.1;
  }

  .about-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 20px;
  }

  .timeline div {
    padding: 10px 4px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1;
  }

  .stands-grid,
  .price-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stand-card,
  .price-card {
    padding: 16px 14px;
    border-radius: 20px;
    min-height: auto;
  }

  .stand-card strong,
  .price-card strong {
    font-size: 26px;
    line-height: 1.1;
  }

  .stand-card h3,
  .price-card h3 {
    font-size: 16px;
  }

  .downloads-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .compromissos-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .compromissos-images {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .compromisso-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .legal-content {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .legal-content h2 {
    font-size: 20px;
  }

  .legal-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  section {
    padding: 52px 0;
  }

  .footer {
    padding: 38px 0 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .floating-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .floating-cta .btn {
    width: 100%;
    padding: 13px 18px;
  }

  .cookie-notice {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    left: 14px;
    right: 14px;
    bottom: 74px;
    padding: 14px 16px;
    border-radius: 18px;
    gap: 12px;
  }

  .cookie-notice button {
    width: 100%;
  }
}
