/* =========================
   VARIÁVEIS E BASE
========================= */
:root {
  --primary: #64B5F6;
  --dark: #111111;
  --text: #303030;
  --light: #F6F8FA;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --radius: 18px;
  --transition: .3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
}

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

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


/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.5s ease;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.5) 30%,
    rgba(255,255,255,.3) 75%,
    rgba(255,255,255,.2) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 5;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-logo {
  width: 480px;
  height: auto;
}

.hero-content h1 {
  font-size: clamp(46px, 6.8vw, 92px);
  line-height: .92;
  font-weight: 900;
  color: white;
}

.hero-content h1 span {
  display: block;
  color: var(--primary);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* =========================
   FLOATING CTA / DRAWER
========================= */
.side-register-tab {
  position: fixed;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 9998;

  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);

  padding: 15px;
  border-radius: 14px 14px 0 0;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: .25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.side-register-tab:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 34px rgba(100,181,246,.22);
}

.register-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.register-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.register-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;

  width: min(390px, 92vw);
  height: 100vh;

  background: #fff;
  padding: 34px 28px;

  transform: translateX(100%);
  transition: .35s ease;
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
}

.register-drawer.active {
  transform: translateX(0);
}

.register-drawer-close {
  position: absolute;
  top: 18px;
  right: 20px;

  border: none;
  background: transparent;

  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.register-drawer h3 {
  margin-top: 44px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
}

.drawer-subtitle {
  margin: 10px 0 28px;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
}

.drawer-info {
  padding: 18px 0;
  border-bottom: 1px solid #e8edf5;
}

.drawer-info strong {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  color: #6f7b8a;
  text-transform: uppercase;
}

.drawer-info span {
  font-size: 16px;
  font-weight: 800;
  color: #111;
}

.drawer-register-btn {
  width: 100%;
  margin-top: 28px;
}


/* =========================
   BOTÕES
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 10px;
  padding: 16px 30px;

  border-radius: 12px;
  border: none;

  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(100,181,246,.32);
}

.btn-cta {
  background: #111;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-cta:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px rgba(100,181,246,.35),
    0 0 18px rgba(100,181,246,.25);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-small {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
}

.btn-kit {
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 10px;
  width: auto !important;
}


/* =========================
   DISTÂNCIAS
========================= */
.distance-selector-section {
  padding: 20px 0 10px;
  background: #fff;
}

.distance-selector-section h2 {
  margin: 0 0 20px;
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
}

.distance-buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.distance-btn {
  position: relative;
  overflow: hidden;

  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);

  padding: 16px 10px;
  border-radius: 12px;

  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
}

.distance-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translateY(100%);
  transition: var(--transition);
  z-index: 0;
}

.distance-btn span {
  position: relative;
  z-index: 2;
}

.distance-btn:hover::before,
.distance-btn.active::before {
  transform: translateY(0);
}

.distance-btn:hover,
.distance-btn.active {
  color: #fff;
  box-shadow: 0 0 24px rgba(100,181,246,.45);
}


/* =========================
   CONTEÚDO DINÂMICO
========================= */
.dynamic-content {
  padding: 40px 0 80px;
  background: #fff;
}

#overviewSection {
  scroll-margin-top: 20px;
}

.overview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin-bottom: 30px;
  flex-wrap: wrap;
}

.overview-header h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
}

.race-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.race-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #fff;
}

.info-box,
.metric-box,
.about-card,
.support-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15,35,65,.06);
}

.info-box,
.metric-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  min-height: 78px;
}

.info-icon,
.metric-icon,
.support-km {
  width: 50px;
  height: 50px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  color: var(--primary);
  font-weight: 800;
}

.info-label,
.metric-label {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
  color: #6f7b8a;
  text-transform: uppercase;
}

.info-value,
.metric-value {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--primary);
}


.metric-box {
  box-shadow: none;
  border: 0;
  border-right: 1px solid #e8edf5;
}

.metric-box:last-child {
  border-right: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(420px, 45%) minmax(500px, 55%);
  gap: 24px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.map-card,
.altimetry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-card {
  display: flex;
  flex-direction: column;
}

.map-card h4,
.altimetry-card h4 {
  margin: 0;
  padding: 22px 24px;

  font-size: 21px;
  color: var(--dark);
  font-weight: 900;
  text-transform: uppercase;
}

#map {
  width: 100%;
  min-height: 330px;
  flex: 1;
}

.map-controls {
  display: flex;
  gap: 12px;

  padding: 16px 24px;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.map-counter {
  display: flex;
  align-items: center;
  gap: 8px;

  font-weight: 900;
  color: var(--primary);
  font-size: 14px;
}

.map-counter.active {
  animation: pulse 1s infinite;
}

.altimetry-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.altimetry-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: auto;
}

.altimetry-image {
  cursor: zoom-in;
  transition: .3s ease;
}

.altimetry-image:hover {
  transform: scale(1.01);
  opacity: .92;
}

.bottom-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  margin-top: 16px;
}

.about-card,
.support-card {
  padding: 18px;
}

.about-card h4,
.support-card h4 {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  color: #1f2d3d;
}

.about-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #344054;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-km {
  width: 54px;
  height: 54px;
  font-size: 13px;
}

.support-title {
  font-size: 14px;
  font-weight: 800;
  color: #1f2d3d;
}

.support-text {
  margin-top: 3px;
  font-size: 12px;
  color: #667085;
}


/* =========================
   BARRA AZUL INFO
========================= */
.info-bar {
  width: 100%;
  background: var(--primary);
  padding: 28px 0;
}

.info-bar-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;

  min-height: 92px;
  padding: 18px 22px;

  cursor: pointer;
  transition: .25s ease;

  border-right: 1px solid rgba(255,255,255,.18);
}

.info-item:last-child {
  border-right: none;
}

.info-item:hover {
  background: rgba(255,255,255,.08);
}

.info-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.info-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.info-item h5 {
  margin: 0 0 4px;

  color: white;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.info-item span {
  display: block;

  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
}

/* tablet */
@media (max-width: 980px) {
  .info-bar-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-item:nth-child(2) {
    border-right: none;
  }

  .info-item:nth-child(1),
  .info-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
}

/* mobile */
@media (max-width: 640px) {
  .info-bar {
    padding: 10px 0;
  }

  .info-bar-container {
    grid-template-columns: 1fr;
  }

  .info-item {
    min-height: auto;
    padding: 18px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .info-item:last-child {
    border-bottom: none;
  }

  .info-item h5 {
    font-size: 14px;
  }

  .info-item span {
    font-size: 11px;
  }
}

/* =========================
   PATROCINADORES
========================= */
.sponsors-section {
  padding: 56px 0;
  background: #466891;
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.section-heading span {
  display: block;
  margin-bottom: 10px;

  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--dark);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading-dark span {
  color: rgba(255,255,255,.75);
}

.section-heading-dark h2 {
  color: #fff;
}

.sponsors-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sponsors-track {
  display: flex;
  gap: 18px;

  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.sponsors-track::-webkit-scrollbar {
  display: none;
}

.sponsor-logo {
  flex: 0 0 160px;
  height: 105px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);

  transition: var(--transition);
}

.sponsor-logo:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.14);
}

.sponsor-logo img {
  max-height: 64px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sponsor-arrow {
  width: 42px;
  height: 42px;

  border: none;
  background: transparent;
  color: #fff;

  font-size: 28px;
  cursor: pointer;
  flex-shrink: 0;
}


/* =========================
   DOCUMENTOS + REGULAMENTO
========================= */
.official-info-section {
  padding: 70px 0 90px;
  background: #fff;
}

.official-info-box {
  padding: 42px;

  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, #fff, #F9FAFB);
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

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

.document-card {
  min-height: 96px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 22px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  text-decoration: none;

  transition: var(--transition);
}

.document-card span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.document-card strong {
  width: 34px;
  height: 34px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
}

.document-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(100,181,246,.28);
  color: #647c94;
}

.regulation-wrapper {
  margin-top: 24px;

  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.regulation-header {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 28px;
  border: none;
  background: var(--dark);
  color: #fff;

  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.regulation-content {
  display: none;
  padding: 42px;
}

.regulation-content.active {
  display: block;
}


/* =========================
   KIT DO ATLETA
========================= */
.kit-section {
  padding: 80px 0;
  background: #fff;
}

.kit-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.kit-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
}

.kit-content h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.2;
}

.kit-content p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.kit-image {
  width: 100%;
  border-radius: var(--radius);
}

/* Histórico visual dos kits por lote */
.kit-history {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}

.kit-history-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.kit-history-heading h3 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.kit-history-heading p {
  max-width: 520px;
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
}

.kit-history-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.kit-history-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.kit-history-card:hover,
.kit-history-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
  outline: none;
}

.kit-history-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f3f3;
}

.kit-history-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.kit-history-card.is-ended .kit-history-image img {
  filter: grayscale(1);
  opacity: .58;
}

.kit-history-card.is-coming .kit-history-image img {
  opacity: .68;
}

.kit-history-status {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .88);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}

.kit-history-card.is-current {
  border: 2px solid var(--primary);
}

.kit-history-card.is-current .kit-history-status {
  background: var(--primary);
  color: var(--dark);
}

.kit-history-card.is-coming .kit-history-status {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.kit-history-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.kit-history-info strong {
  color: var(--dark);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-history-info span {
  margin-top: 5px;
  color: #777;
  font-size: 12px;
  line-height: 1.4;
}

.kit-history-details {
  margin-top: auto !important;
  padding-top: 12px;
  color: var(--primary) !important;
  font-size: 11px !important;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .kit-history {
    margin-top: 42px;
    padding-top: 28px;
  }

  .kit-history-heading {
    display: block;
    margin-bottom: 16px;
  }

  .kit-history-heading p {
    margin-top: 8px;
    text-align: left;
  }

  .kit-history-track {
    display: flex;
    gap: 12px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 max(20px, calc((100vw - 100%) / 2)) 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .kit-history-track::-webkit-scrollbar {
    display: none;
  }

  .kit-history-card {
    flex: 0 0 min(76vw, 290px);
    scroll-snap-align: start;
  }
}


/* =========================
   LOTES
========================= */
.pricing-section {
  padding: 70px 0;
  background: #fff;
}

.pricing-section h2 {
  margin: 0 0 40px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
}

.accordion-item {
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 28px;
  background: var(--light);

  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: var(--transition);
}

.accordion-header:hover,
.accordion-header.active {
  background: var(--primary);
  color: white;
}

.accordion-header-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.accordion-header-title {
  font-size: 18px;
  font-weight: 900;
}

.accordion-header-dates {
  font-size: 12px;
  font-weight: 300;
  opacity: .9;
}

.accordion-header-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-badge {
  padding: 6px 16px;
  border-radius: 12px;

  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.status-active {
  background: #10B981;
  color: white;
}

.status-ended {
  background: #9CA3AF;
  color: white;
}

.status-coming {
  background: #F59E0B;
  color: white;
}

.toggle-icon {
  font-size: 18px;
  transition: transform .3s ease;
}

.accordion-header.active .toggle-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 28px;
  background: white;
}

.accordion-content.active {
  display: block;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead {
  background: var(--light);
  border-bottom: 2px solid var(--border);
}

.price-table th,
.price-table td {
  padding: 16px 28px;
  text-align: center;
}

.price-table th {
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--dark);
}

.price-table td {
  border-bottom: 1px solid var(--border);
}

.price-table tbody tr:nth-child(odd) {
  background: #FAFAFA;
}

.price-table tbody tr:nth-child(even) {
  background: #F2F4F7;
}

.price-table tbody tr:hover {
  background: #EAF4FF;
  transition: .2s ease;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:first-child {
  font-weight: 700;
}

.price-table td:nth-child(2) {
  color: var(--primary);
  font-weight: 900;
}

.price-distance {
  font-weight: 900;
}

.price-slots {
  margin-left: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
}
/* =========================
   CTA FINAL
========================= */
.final-cta {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
}

.final-cta-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #1976D2);
  opacity: .95;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta-content h2 {
  margin-bottom: 40px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
}

.final-cta-content h2 span {
  display: block;
  font-size: 1.1em;
}


/* =========================
   MODAIS
========================= */
.modal,
.map-modal,
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal,
.map-modal {
  display: none;
}

.modal {
  background: rgba(0, 0, 0, .60);
}

.map-modal {
  background: rgba(0, 0, 0, .72);
}

.modal.active,
.map-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: min(920px, 100%);
  max-width: 920px;
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 58px 30px 30px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .30);
  animation: slideIn .25s ease;
  -webkit-overflow-scrolling: touch;
}

.modal-title {
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
}

.modal-content p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.modal-close,
.map-modal-close,
.gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f4f4f4 !important;
  color: #111;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: .2s ease;
}

.gallery-modal-close {
  background: rgba(255, 255, 255, .15) !important;
  color: #fff;
}

.modal-close:hover,
.map-modal-close:hover,
.gallery-modal-close:hover {
  background: #ececec !important;
  transform: scale(1.05);
}

.gallery-modal-close:hover {
  background: rgba(255, 255, 255, .25) !important;
}

/* Conteúdo interno dos modais */
.kit-modal-box h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--dark);
}

.kit-modal-box h4 {
  margin: 18px 0 10px;
  font-size: 15px;
  color: var(--dark);
}

.kit-modal-box p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.kit-modal-image {
  width: 100%;
  max-height: min(48vh, 470px);
  display: block;
  margin: 0 0 22px;
  border-radius: 16px;
  object-fit: contain;
  background: #f5f5f5;
}

.kit-modal-highlight,
.kit-modal-compare {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--light);
}

.kit-modal-highlight strong,
.kit-modal-compare strong {
  color: var(--primary);
}

.kit-modal-list {
  margin-left: 18px;
  line-height: 1.6;
}

.kit-modal-list li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* Modal do mapa */
.map-modal {
  z-index: 99999;
}

.map-modal-box {
  position: relative;
  width: min(95vw, 1400px);
  height: min(90dvh, 850px);
  padding: 24px;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
}

.map-modal-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
}

.map-modal-content {
  width: 95vw;
  max-width: 1200px;
  height: 90dvh;
}

#fullscreenMap {
  width: 100%;
  height: calc(100% - 60px);
  overflow: hidden;
  border-radius: 16px;
}

/* Modal específico de documentos */
#modalDocumentos {
  z-index: 999999;
}

#modalDocumentos .modal-content {
  width: min(920px, 100%);
  max-width: 920px;
}

#modalDocumentos iframe,
#modalDocumentos form,
#modalDocumentos img,
#modalDocumentos table {
  max-width: 100%;
}

#modalDocumentos iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  border: none;
}

@media (max-width: 640px) {
  .modal,
  .map-modal,
  .gallery-modal {
    align-items: flex-start;
    padding: 8px;
  }

  .modal-content {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 16px);
    margin: 0;
    padding: 58px 18px 22px;
    border-radius: 18px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-content p,
  .kit-modal-box p,
  .kit-modal-list li,
  .start-table td {
    font-size: 13px;
  }

  .modal-close,
  .map-modal-close,
  .gallery-modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .kit-modal-box h3,
  .modal-start-header h3 {
    font-size: 24px;
    line-height: 1.15;
  }

  .map-modal-box {
    width: 100%;
    height: calc(100dvh - 16px);
    padding: 16px;
    border-radius: 18px;
  }

  #modalDocumentos iframe {
    min-height: 720px;
  }
}

/* =========================
   REGULAMENTO INTERNO
========================= */
.regulamento-28p {
  --primary-strong: #1976D2;
  --muted: #6f7b8a;
  --shadow: 0 20px 60px rgba(0,0,0,.06);

  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;

  max-width: 100%;
  overflow-wrap: anywhere;

  color: var(--text);
  line-height: 1.75;
}

.regulamento-28p * {
  box-sizing: border-box;
}

.reg-hero {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;

  margin: 0 0 2px;
  padding: clamp(24px, 4vw, 46px);

  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #111 0%, #1f2d3d 48%, #466891 100%);
  box-shadow: var(--shadow);
}

.reg-hero::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;

  width: 260px;
  height: 260px;
  border-radius: 50%;

  background: rgba(100,181,246,.22);
  filter: blur(2px);
}

.reg-eyebrow {
  position: relative;
  margin: 0 0 10px;

  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}

.reg-hero h1 {
  position: relative;
  margin: 0 0 12px;

  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.reg-intro {
  position: relative;
  margin: 0;
  max-width: 82ch;
  font-size: 1rem;
  color: rgba(255,255,255,.78);
}

.reg-summary {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.reg-summary div {
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}

.reg-summary strong {
  display: block;
  margin-bottom: 3px;

  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

.reg-summary span {
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
}

.reg-nav {
  grid-column: 1;
  position: sticky;
  top: 18px;
  z-index: 2;
  align-self: start;

  margin: 0;
  padding: 18px;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15,35,65,.07);
}

.reg-nav-header {
  display: block;
  margin: 0 0 14px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--border);
}

.reg-nav-title {
  margin: 0;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.3;
}

.reg-nav-hint {
  display: block;
  margin-top: 5px;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 700;
}

.reg-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reg-nav a {
  display: flex;
  align-items: center;
  min-height: 42px;

  padding: 10px 12px;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  background: #fff;

  text-decoration: none;
  color: #1f2d3d;
  font-weight: 900;
  font-size: .86rem;
  line-height: 1.2;

  box-shadow: 0 6px 18px rgba(15,35,65,.035);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.reg-nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-right: 10px;

  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(100,181,246,.12);
}

.reg-nav a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateX(3px);
  box-shadow: 0 12px 28px rgba(100,181,246,.22);
}

.reg-nav a:hover::before {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.2);
}

.reg-nav a:focus-visible {
  outline: 3px solid rgba(100,181,246,.32);
  outline-offset: 2px;
}

.reg-section {
  grid-column: 2;

  margin: 0 0 18px;
  padding: clamp(20px, 3vw, 34px);

  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,35,65,.045);
  scroll-margin-top: 22px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;

  margin-bottom: 10px;
  padding: 5px 11px;

  border-radius: 999px;
  background: rgba(100,181,246,.12);

  color: var(--primary-strong);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reg-section h2 {
  margin: 0 0 18px;

  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.15;
  color: var(--dark);
  font-weight: 900;
  text-transform: uppercase;
}

.reg-section h3 {
  margin: 24px 0 8px;
  padding-top: 14px;

  color: #1f2d3d;
  border-top: 1px solid var(--border);

  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 900;
}

.reg-section h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.reg-p {
  margin: 0 0 12px;
  color: #444;
}

.destaque {
  padding: 14px 16px;
  border-left: 5px solid var(--primary);
  border-radius: 13px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background: var(--light);
  color: #1f2d3d;
  font-weight: 700;
}

.reg-section ul,
.reg-section ol {
  margin: 8px 0 16px;
  padding-left: 1.25rem;
}

.reg-section li {
  margin: 6px 0;
  padding-left: 3px;
  color: #444;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;

  margin: 12px 0 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.table-wrap::-webkit-scrollbar {
  height: 8px;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: #d7e9fb;
  border-radius: 999px;
}

.reg-section table {
  width: 100%;
  min-width: 360px;
  border-collapse: collapse;
  background: #fff;
}

.reg-section td,
.reg-section th {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.reg-section tr:last-child td {
  border-bottom: 0;
}

.reg-section td:first-child {
  font-weight: 900;
  color: var(--dark);
}

.reg-section tbody tr:nth-child(odd) {
  background: #FAFAFA;
}

.reg-section tbody tr:hover {
  background: #EAF4FF;
}

.reg-footer-note {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  text-align: center;
  font-size: .92rem;
  color: var(--muted);
}
/* =========================
   REGULAMENTO — CONTEÚDO INTERNO
========================= */
.regulation-content .regulamento-titulo {
  margin-bottom: 38px;
  color: var(--primary);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.regulation-content .secao {
  margin-bottom: 38px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.regulation-content .secao:last-child {
  border-bottom: none;
}

.regulation-content .secao-titulo {
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 5px solid var(--primary);
  color: var(--dark);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.regulation-content .subsecao-titulo {
  margin: 24px 0 10px;
  color: var(--dark);
  font-size: 17px;
  font-weight: 900;
}

.regulation-content .item,
.regulation-content li,
.regulation-content p {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}

.regulation-content ul,
.regulation-content ol {
  margin: 10px 0 10px 22px;
}

.regulation-content li {
  margin: 6px 0;
}

.regulation-content .destaque,
.regulation-content .info-importante,
.regulation-content .horarios,
.regulation-content .contato {
  margin: 18px 0;
  padding: 18px;
  border-radius: 14px;
  font-size: 14px;
}

.regulation-content .destaque,
.regulation-content .contato {
  background: rgba(100,181,246,.10);
  border: 1px solid rgba(100,181,246,.25);
}

.regulation-content .info-importante {
  background: var(--light);
  border: 1px solid var(--border);
}

.regulation-content .horarios {
  background: rgba(17,17,17,.035);
  border: 1px solid var(--border);
}

.regulation-content .contato {
  text-align: center;
}

.regulation-content .contato a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}

.regulation-content .trecho {
  margin: 12px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  background: #F9FAFB;
}

.regulation-content .trecho-titulo {
  margin-bottom: 6px;
  color: var(--dark);
  font-weight: 900;
}

.regulation-content .kit-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.regulation-content .kit-item {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.regulation-content .kit-item::before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 900;
}

.regulation-content .tabela-precos {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  font-size: 13px;
}

.regulation-content .tabela-precos thead {
  background: var(--dark);
  color: #fff;
}

.regulation-content .tabela-precos th,
.regulation-content .tabela-precos td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.regulation-content .tabela-precos tbody tr:nth-child(odd) {
  background: #FAFAFA;
}

.regulation-content .tabela-precos tbody tr:nth-child(even) {
  background: #F2F4F7;
}

.regulation-content .tabela-precos tbody tr:hover {
  background: #EAF4FF;
}


/* =========================
   GALERIA ÚLTIMA EDIÇÃO
========================= */
.gallery-section {
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at top left, rgba(100,181,246,.28), transparent 34%),
    linear-gradient(180deg, #466891, #29445f);
}

.gallery-section .section-heading {
  margin-bottom: 42px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 15px;
}

.gallery-photo {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0));
  opacity: .55;
  transition: opacity .35s ease;
}

.gallery-photo:hover img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.gallery-photo:hover::after {
  opacity: .2;
}

.gallery-photo-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-photo-wide {
  grid-column: span 2;
}

.gallery-photo-tall {
  grid-row: span 2;
}

/* Modal da galeria */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  background: rgba(0,0,0,.92);
  padding: 24px;
  transition: .35s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-image {
  max-width: min(92vw, 1400px);
  max-height: 90vh;
  border-radius: 18px;
  transform: scale(.92);
  transition: transform .35s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.gallery-modal.active .gallery-modal-image {
  transform: scale(1);
}

/* =========================
   CARDS / DESTAQUES
========================= */
.stat-card {
  display: flex;
  flex-direction: column;
  min-height: 120px;
  padding: 16px;
  text-align: center;
}

.stat-label {
  flex-shrink: 0;
  margin-bottom: 10px;
  font-size: 11px;
  color: #7b8490;
}

.stat-value {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--primary);
}

.highlight-text-card {
  min-height: auto;
  margin-top: 20px;
  padding: 25px;

  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--border);

  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: none;
}

.highlight-text-card span {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}


/* =========================
   REVEZAMENTO
========================= */
.relay-segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.relay-segment-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15,35,65,.06);
}

.relay-segment-card h4 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 900;
  color: var(--primary);
}

.relay-segment-card p {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.5;
}


/* =========================
   ANIMAÇÕES
========================= */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* =========================
   RESPONSIVO
========================= */
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo {
    width: 130px;
  }

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

  .content-grid,
  .terrain-highlights-grid,
  .kit-wrapper {
    grid-template-columns: 1fr;
  }

  .kit-wrapper {
    gap: 40px;
  }

  .info-bar-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .official-info-box {
    padding: 30px;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
}

@media (max-width: 980px) {
  .regulamento-28p {
    display: block;
  }

  .reg-nav {
    position: relative;
    top: auto;
    margin: 0 0 20px;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
  }

  .reg-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin: 0 0 12px;
    padding: 0;
    border-bottom: 0;
  }

  .reg-nav-hint {
    margin-top: 0;
  }

  .reg-nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .reg-nav a {
    justify-content: center;
    text-align: center;
    min-height: 40px;
    padding: 9px 10px;
    font-size: .82rem;
    background: var(--light);
  }

  .reg-nav a::before {
    display: none;
  }

  .reg-nav a:hover {
    transform: translateY(-1px);
  }

  .reg-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .race-info-grid,
  .race-metrics-grid,
  .bottom-info-grid,
  .support-grid,
  .relay-segments-grid {
    grid-template-columns: 1fr;
  }

  .metric-box {
    border-right: 0;
    border-bottom: 1px solid #e8edf5;
  }

  .metric-box:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .side-register-tab,
  .register-drawer,
  .register-drawer-overlay {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .distance-buttons,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .info-bar {
    padding: 24px 0;
  }

  .info-bar-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding: 16px 24px;
  }

  .info-item:last-child {
    border-bottom: none;
  }

  .price-table th,
  .price-table td {
    padding: 12px 16px;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-logo {
    width: 300px;
    margin-bottom: 10px;
  }

  .hero-content h1 {
    font-size: 52px;
    line-height: .92;
  }

  .hero-content h1 span:nth-child(3) {
    font-size: 2.2rem !important;
    line-height: 1;
  }

  .hero-content h1 span:last-child {
    font-size: 1.5rem !important;
    line-height: 1.1;
  }

  .overview-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .overview-header h3 {
    font-size: 24px;
  }

  .dynamic-register-btn,
  .stats-grid,
  .documents-grid {
    width: 100%;
  }

  .stats-grid,
  .documents-grid {
    grid-template-columns: 1fr;
  }

  .official-info-box {
    padding: 22px;
  }

  .regulation-content {
    padding: 28px 22px;
  }

  .regulation-content .secao-titulo {
    font-size: 20px;
  }

  .regulation-content .subsecao-titulo {
    font-size: 15px;
  }

  .regulation-content .item,
  .regulation-content li,
  .regulation-content p {
    font-size: 13px;
  }

  .regulation-content .tabela-precos th,
  .regulation-content .tabela-precos td {
    padding: 10px 8px;
    font-size: 11px;
  }

  .reg-hero,
  .reg-section {
    padding: 18px;
    border-radius: 18px;
  }

  .reg-summary {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .reg-summary div {
    padding: 12px 13px;
  }

  .reg-nav {
    padding: 12px;
    margin-bottom: 16px;
  }

  .reg-nav-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .reg-nav-title {
    font-size: .74rem;
  }

  .reg-nav-hint {
    font-size: .76rem;
  }

  .reg-nav-links {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .reg-nav a {
    font-size: .78rem;
    min-height: 38px;
    padding: 8px 7px;
    border-radius: 11px;
  }

  .reg-section {
    margin-bottom: 14px;
  }

  .reg-section h3 {
    font-size: 1rem;
  }

  .reg-section table {
    min-width: 420px;
  }

  .reg-section td,
  .reg-section th {
    padding: 10px 9px;
    font-size: .86rem;
  }

  .sponsor-logo {
    flex-basis: 145px;
  }

  .sponsor-arrow {
    display: none;
  }

  .accordion-header {
    flex-wrap: wrap;
  }

  .accordion-header-status {
    width: 100%;
    margin-top: 12px;
  }

  .price-table,
  .price-table thead,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody tr {
    margin-bottom: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.05);
  }

  .price-table td {
    border: none;
    padding: 6px 0;
    text-align: left;
  }

  .price-table td:first-child {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
  }

  .price-table td:nth-child(2) {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
  }

  .price-table td:nth-child(2)::before {
    content: "Valor: ";
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .price-table td:nth-child(3) {
    margin-top: 10px;
  }

  .price-table td:nth-child(3) .btn {
    width: 100%;
    margin-top: 8px;
  }

  .gallery-section {
    padding: 70px 0 85px;
  }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    grid-auto-rows: 135px;
  }

  .gallery-photo {
    border-radius: 2px;
  }

  .gallery-photo-large,
  .gallery-photo-wide,
  .gallery-photo-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}
/* =========================
   MODAL LARGADAS
========================= */
.modal-start-grid {
  max-width: 980px;
}

.modal-start-header {
  margin-bottom: 18px;
}

.modal-start-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(100,181,246,.12);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modal-start-header h3 {
  margin-bottom: 8px;
}

.modal-start-header p {
  margin: 0;
  color: #667085;
}

.start-table-wrapper {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
}

.start-table {
  width: 100%;
  border-collapse: collapse;
}

.start-table thead {
  background: var(--dark);
}

.start-table th {
  padding: 14px 16px;
  text-align: left;
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.start-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf1f5;
  vertical-align: middle;
  font-size: 14px;
}

.start-table tbody tr:last-child td {
  border-bottom: none;
}

.start-table tbody tr:nth-child(odd) {
  background: #fafafa;
}

.start-table strong {
  display: block;
  color: var(--dark);
}

/* coluna dos horários */
.start-time-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}


.start-times span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 66px;
  padding: 8px 12px;

  border-radius: 999px;
  background: rgba(100,181,246,.12);

  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

/* mobile */
@media (max-width: 640px) {
  .start-table thead {
    display: none;
  }

  .start-table,
  .start-table tbody,
  .start-table tr,
  .start-table td {
    display: block;
    width: 100%;
  }

  .start-table tr {
    padding: 14px;
    border-bottom: 1px solid #edf1f5;
  }

  .start-table td {
    padding: 6px 0;
    border: none;
  }

  .start-time-group {
    align-items: flex-start;
    margin-top: 8px;
  }

  .start-battery-label {
    text-align: left;
  }

  .start-times {
    justify-content: flex-start;
  }
}
/* cabeçalho preto */
.start-table thead tr {
  background: #111111;
}

.start-table thead th {
  background: #111111;
  color: white;
  border-color: #222;
}

/* alinhamentos */
.start-table td:nth-child(2),
.start-table td:nth-child(3),
.start-table th:nth-child(2),
.start-table th:nth-child(3) {
  text-align: center;
}

/* coluna dos horários */
.start-times {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

/* item horário */
.start-time-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* texto acima */
.start-battery-label {
  min-height: 24px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  text-align: center;

  color: #5d6775;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* cápsula horário */
.start-time-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 66px;
  height: 34px;

  padding: 0 14px;

  border-radius: 999px;
  background: rgba(100,181,246,.12);

  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}
@media (max-width: 767px) {

  /* espaço para sticky */
  body {
    padding-bottom: 115px;
  }

  /* seta voltar topo acima do sticky */
  .aux-goto-top-btn.aux-align-btn-right {
    bottom: 120px !important;
  }
}
/* ===== RODAPÉ ===== */
.site-footer {
  width: 100%;
  background: #f2f2f2;
  text-align: center;
  padding-top: 25px;
  font-family: Arial, sans-serif;
}

/* Área do ícone */
.footer-social {
  padding-bottom: 20px;
}

/* Link do Instagram */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Ícone */
.footer-social img {
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

/* Barra azul inferior */
.footer-bottom {
  width: 100%;
  background: #8ed8f8;
  color: #333;
  font-size: 13px;
  padding: 14px 10px;
  border-top: 1px dashed #7cc7e7;
  box-sizing: border-box;
}


.alt-profile-box {
  width: 100%;
  background: #fff;
}

.alt-profile-title {
  padding: 22px 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #050b14;
  text-transform: uppercase;
  border-bottom: 1px solid #edf1f5;
}

.alt-profile-inner {
  padding: 26px 22px 16px;
}

.alt-profile-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 18px;
}

.alt-profile-route {
  font-size: 10px;
  font-weight: 800;
  color: #aaa;
  text-transform: uppercase;
  line-height: 1.3;
}

.alt-profile-highlights {
  display: flex;
  align-items: center;
  gap: 22px;
}

.alt-profile-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64b5f6;
}

.alt-profile-highlight-icon {
  font-size: 26px;
  line-height: 1;
}

.alt-profile-highlight small {
  display: block;
  font-size: 8px;
  font-weight: 900;
  color: #536273;
  text-transform: uppercase;
}

.alt-profile-highlight strong {
  display: block;
  margin-top: 2px;
  font-size: 15px;
  font-weight: 600;
  color: #64b5f6;
  line-height: 1.05;
}

.alt-profile-divider {
  width: 1px;
  height: 38px;
  background: #d9e2ec;
}

.alt-chart-label {
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 900;
  color: #0f1c2e;
  text-transform: uppercase;
}

.alt-profile-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.alt-mini-info {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr .8fr .8fr .8fr .8fr;
  gap: 0;
  margin-top: 14px;
  border: 1px solid #e6eef7;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.alt-mini-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border-right: 1px solid #dfe8f2;
  min-height: 62px;
}

.alt-mini-item:last-child {
  border-right: none;
}

.alt-mini-icon {
  color: #64b5f6;
  font-size: 24px;
  flex-shrink: 0;
}

.alt-profile-highlight-icon,
.alt-mini-icon {
  color: #64b5f6;
}

.alt-profile-highlight-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.alt-mini-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.alt-mini-item small {
  display: block;
  font-size: 7px;
  font-weight: 900;
  color: #536273;
  text-transform: uppercase;
  line-height: 1.15;
}

.alt-mini-item strong {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  color: #7d7d7d;
  line-height: 1.15;
}

.alt-big-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  border: 1px solid #e6eef7;
  border-radius: 12px;
  overflow: hidden;
}

.alt-big-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 24px 22px;
  border-right: 1px solid #e6eef7;
}

.alt-big-card:last-child {
  border-right: none;
}

.alt-big-icon {
  width: 42px;
  flex-shrink: 0;
  color: #0078ff;
  font-size: 28px;
  text-align: center;
}

.alt-big-label {
  font-size: 13px;
  font-weight: 900;
  color: #4a5a6d;
  text-transform: uppercase;
  line-height: 1.35;
}

.alt-big-value {
  margin-top: 8px;
  font-size: 25px;
  font-weight: 400;
  color: #0078ff;
  line-height: 1.1;
}

@media (max-width: 900px) {
  .alt-profile-top,
  .alt-profile-highlights {
    flex-direction: column;
  }

  .alt-mini-info,
  .alt-big-cards {
    grid-template-columns: 1fr 1fr;
  }

  .alt-mini-item,
  .alt-big-card {
    border-right: none;
    border-bottom: 1px solid #e6eef7;
  }
}

/* =========================
   HOSPEDAGENS PARCEIRAS
========================= */
.partner-hotels-section {
  padding: 34px 0;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(100, 181, 246, .26),
      transparent 32%
    ),
    linear-gradient(135deg, #111 0%, #1f2d3d 55%, #29445f 100%);
}

.partner-hotels-box {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  min-height: 150px;
  padding: 32px 38px;

  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}
.partner-hotels-content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 24px;
}

.partner-hotels-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);

  color: var(--primary);
}

.partner-hotels-icon svg {
  width: 38px;
  height: 38px;
}

.partner-hotels-text span {
  display: block;
  margin-bottom: 7px;

  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.partner-hotels-text h2 {
  margin: 0;

  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-hotels-text p {
  max-width: 680px;
  margin: 9px 0 0;

  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.55;
}

.partner-hotels-button {
  position: relative;
  z-index: 2;
  flex-shrink: 0;

  margin: 0;
  padding: 16px 26px;

  border: 2px solid var(--primary);
  border-radius: 12px;
  background: var(--primary);
  color: #fff;

  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;

  cursor: pointer;
  transition: .25s ease;
}

.partner-hotels-button:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: #fff;
  color: #1f2d3d;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}


/* conteúdo provisório do modal */
.hotels-modal-intro {
  margin-bottom: 20px;
  padding: 18px;

  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--light);
}

.hotels-modal-placeholder {
  padding: 38px 24px;

  border: 2px dashed #dce4ec;
  border-radius: 16px;

  color: #667085;
  text-align: center;
}

.hotels-modal-placeholder strong {
  display: block;
  margin-bottom: 6px;

  color: var(--dark);
  font-size: 17px;
}


/* responsivo */
@media (max-width: 768px) {
  .partner-hotels-section {
    padding: 22px 0;
  }

  .partner-hotels-box {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;

    padding: 26px 22px;
  }

  .partner-hotels-content {
    align-items: flex-start;
    gap: 16px;
  }

  .partner-hotels-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .partner-hotels-icon svg {
    width: 30px;
    height: 30px;
  }

  .partner-hotels-text h2 {
    font-size: 22px;
  }

  .partner-hotels-text p {
    font-size: 13px;
  }

  .partner-hotels-button {
    width: 100%;
  }
}

/* =========================
   MODAL DE HOSPEDAGENS
========================= */
.hotels-modal-content {
  width: min(1180px, 100%);
  max-width: 1180px;
  padding: 38px;
  background: #f6f8fa;
}

.hotels-modal-header {
  position: relative;
  overflow: hidden;

  margin-bottom: 28px;
  padding: 34px;

  border-radius: 18px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(100,181,246,.26),
      transparent 38%
    ),
    linear-gradient(135deg, #111, #1f2d3d 65%, #29445f);

  color: #fff;
}
.hotels-modal-tag {
  position: relative;
  z-index: 2;

  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;

  border-radius: 999px;
  background: rgba(100,181,246,.16);
  color: var(--primary);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.hotels-modal-header h2 {
  position: relative;
  z-index: 2;

  margin: 0 0 10px;

  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.hotels-modal-header p {
  position: relative;
  z-index: 2;

  max-width: 700px;
  margin: 0;

  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.65;
}


/* CARD DA HOSPEDAGEM */
.hotel-card {
  display: grid;
  grid-template-columns: minmax(360px, 42%) minmax(0, 58%);
  gap: 0;

  overflow: hidden;

  border: 1px solid #e4eaf0;
  border-radius: 20px;
  background: #fff;

  box-shadow: 0 18px 50px rgba(15,35,65,.08);
}


/* GALERIA */
.hotel-gallery {
  padding: 16px;
  background: #edf2f6;
}

.hotel-main-image {
  position: relative;
  overflow: hidden;

  width: 100%;
  height: 390px;

  padding: 0;
  border: 0;
  border-radius: 14px;

  background: #dce4ec;
  cursor: zoom-in;
}

.hotel-main-image::after {
  content: "Ampliar foto";
  position: absolute;
  right: 14px;
  bottom: 14px;

  padding: 8px 12px;

  border-radius: 999px;
  background: rgba(0,0,0,.62);
  color: #fff;

  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(5px);
  transition: .25s ease;
}

.hotel-main-image:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.hotel-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform .4s ease;
}

.hotel-main-image:hover img {
  transform: scale(1.025);
}

.hotel-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;

  margin-top: 10px;
}

.hotel-thumbnail {
  overflow: hidden;

  height: 72px;
  padding: 0;

  border: 2px solid transparent;
  border-radius: 9px;
  background: #dce4ec;

  cursor: pointer;
  transition: .2s ease;
}

.hotel-thumbnail:hover,
.hotel-thumbnail.active {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.hotel-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .hotel-gallery-thumbnails {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }

  .hotel-thumbnail {
    height: 48px;
  }
}

/* CONTEÚDO */
.hotel-content {
  padding: 30px;
}

.hotel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 20px;
}

.hotel-location-tag {
  display: inline-flex;

  margin-bottom: 8px;
  padding: 6px 10px;

  border-radius: 999px;
  background: rgba(100,181,246,.13);
  color: #1976d2;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hotel-heading h3 {
  margin: 0 0 6px;

  color: var(--dark);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.hotel-short-location {
  margin: 0;

  color: #667085;
  font-size: 13px;
  font-weight: 600;
}

.hotel-discount-badge {
  min-width: 92px;
  flex-shrink: 0;

  padding: 13px 12px;

  border-radius: 14px;
  background: var(--primary);
  color: #fff;

  text-align: center;
}

.hotel-discount-badge small {
  display: block;
  margin-bottom: 3px;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hotel-discount-badge strong {
  display: block;

  font-size: 20px;
  font-weight: 900;
}

.hotel-description {
  margin: 0 0 13px !important;

  color: #4b5563 !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}


/* COMODIDADES */
.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin: 20px 0;
}

.hotel-amenities span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 11px;

  border: 1px solid #e1e8ef;
  border-radius: 999px;
  background: #f8fafc;

  color: #445166;
  font-size: 10px;
  font-weight: 800;
}

.hotel-amenities span::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
}


/* BENEFÍCIO E CUPOM */
.hotel-benefit-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;

  margin: 22px 0;
  padding: 18px;

  border: 1px solid rgba(100,181,246,.28);
  border-radius: 15px;
  background:
    linear-gradient(
      135deg,
      rgba(100,181,246,.11),
      rgba(100,181,246,.03)
    );
}

.hotel-benefit-text span {
  display: block;
  margin-bottom: 6px;

  color: #1976d2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.hotel-benefit-text p {
  margin: 0 !important;

  color: #344054 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.hotel-coupon {
  min-width: 190px;

  padding: 12px 14px;

  border: 1px dashed var(--primary);
  border-radius: 12px;
  background: #fff;

  text-align: center;
}

.hotel-coupon small {
  display: block;

  color: #7b8490;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hotel-coupon strong {
  display: block;
  overflow-wrap: anywhere;

  margin: 5px 0 8px;

  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
}

.hotel-coupon button {
  padding: 6px 12px;

  border: 0;
  border-radius: 7px;
  background: var(--primary);
  color: #fff;

  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;

  cursor: pointer;
}


/* CONTATOS */
.hotel-contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;

  margin-bottom: 20px;
}

.hotel-contact-item {
  padding: 13px 15px;

  border: 1px solid #e4eaf0;
  border-radius: 12px;
  background: #fff;
}

.hotel-contact-item small {
  display: block;
  margin-bottom: 5px;

  color: #7b8490;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.hotel-contact-item strong,
.hotel-contact-item a {
  display: block;

  color: var(--dark);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  text-decoration: none;
}

.hotel-contact-item a:hover {
  color: var(--primary);
}

.hotel-contact-item span {
  display: block;
  margin-top: 2px;

  color: #667085;
  font-size: 11px;
}


/* BOTÕES */
.hotel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hotel-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 11px 16px;

  border: 2px solid var(--primary);
  border-radius: 10px;

  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;

  transition: .22s ease;
}

.hotel-action-primary {
  background: var(--primary);
  color: #fff;
}

.hotel-action-outline {
  background: transparent;
  color: var(--primary);
}

.hotel-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(100,181,246,.22);
}

.hotel-action-outline:hover {
  background: var(--primary);
  color: #fff;
}

.hotel-reservation-note {
  margin: 12px 0 0 !important;

  color: #667085 !important;
  font-size: 10px !important;
}

.hotel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 78px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border: 1px solid #e4eaf0;
  border-radius: 12px;
  background: #fff;
}

.hotel-logo img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}


/* DIVISOR */
.hotels-divider {
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 30px 0;
}

.hotels-divider::before,
.hotels-divider::after {
  content: "";
  flex: 1;

  height: 1px;
  background: #dce4ec;
}

.hotels-divider span {
  color: #7b8490;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* AVISO FINAL */
.hotels-final-note {
  margin-top: 26px;
  padding: 16px 18px;

  border: 1px solid #dfe6ed;
  border-radius: 12px;
  background: #fff;

  color: #667085;
  font-size: 11px;
  line-height: 1.6;
}

.hotels-final-note strong {
  color: var(--dark);
}


/* MODAL DE FOTO */
.hotel-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;
  background: rgba(0,0,0,.92);

  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.hotel-photo-modal.active {
  opacity: 1;
  visibility: visible;
}

.hotel-photo-modal img {
  max-width: 94vw;
  max-height: 90vh;

  border-radius: 14px;
  object-fit: contain;

  transform: scale(.94);
  transition: .3s ease;
}

.hotel-photo-modal.active img {
  transform: scale(1);
}

.hotel-photo-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;

  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;

  font-size: 24px;
  cursor: pointer;
}


/* TABLET */
@media (max-width: 920px) {
  .hotel-card {
    grid-template-columns: 1fr;
  }

  .hotel-main-image {
    height: 430px;
  }
}


/* MOBILE */
@media (max-width: 640px) {
  .hotels-modal-content {
    padding: 54px 10px 18px;
  }

  .hotels-modal-header {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .hotels-modal-header h2 {
    font-size: 28px;
  }

  .hotel-gallery {
    padding: 9px;
  }

  .hotel-main-image {
    height: 245px;
  }

  .hotel-gallery-thumbnails {
    gap: 5px;
  }

  .hotel-thumbnail {
    height: 52px;
  }

  .hotel-content {
    padding: 21px 17px;
  }

  .hotel-heading {
    flex-direction: column;
  }

  .hotel-discount-badge {
    width: 100%;
  }

  .hotel-benefit-box {
    grid-template-columns: 1fr;
  }

  .hotel-coupon {
    width: 100%;
    min-width: 0;
  }

  .hotel-contact-grid {
    grid-template-columns: 1fr;
  }

  .hotel-actions {
    flex-direction: column;
  }

  .hotel-action {
    width: 100%;
  }

  .hotel-photo-modal {
    padding: 12px;
  }
}

.hotel-address-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.hotel-address-link strong,
.hotel-address-link span {
  transition: color .2s ease;
}

.hotel-address-link em {
  display: inline-block;
  margin-top: 8px;

  color: var(--primary);
  font-size: 9px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;

  transition: transform .2s ease;
}

.hotel-address-link:hover strong,
.hotel-address-link:hover span {
  color: var(--primary);
}

.hotel-address-link:hover em {
  transform: translateX(3px);
}

/* =========================================
   CORREÇÃO DE ALTURA E ROLAGEM DO MODAL
========================================= */

#modalHospedagens {
  align-items: flex-start !important;
  justify-content: center !important;

  overflow-y: auto !important;

  padding: 55px 20px 55px !important;

  box-sizing: border-box;
  overscroll-behavior: contain;
}

#modalHospedagens .hotels-modal-content {
  position: relative;

  width: min(1180px, 100%);
  max-width: 1180px;

  max-height: calc(100vh - 110px);
  max-height: calc(100dvh - 110px);

  margin: auto;

  overflow-y: auto;
  overflow-x: hidden;

  border-radius: 20px;

  scrollbar-width: thin;
  scrollbar-color: var(--primary) #e8edf2;
}

/* Barra de rolagem no Chrome e Edge */
#modalHospedagens .hotels-modal-content::-webkit-scrollbar {
  width: 8px;
}

#modalHospedagens .hotels-modal-content::-webkit-scrollbar-track {
  background: #e8edf2;
  border-radius: 20px;
}

#modalHospedagens .hotels-modal-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 20px;
}

/* =========================================================
   MODAL — ENVIO DE DOCUMENTOS
========================================================= */

#modalDocumentos {
  --documentos-primary: #10afe3;
  --documentos-primary-light: #d9f4fc;
  --documentos-dark: #111111;
  --documentos-text: #333333;

  position: fixed;
  inset: 0;
  z-index: 999999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(0, 0, 0, 0.62);

  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

#modalDocumentos.active {
  display: flex;
}

#modalDocumentos .documentos-modal-content {
  position: relative;

  width: min(920px, 100%);
  max-width: 920px;
  max-height: calc(100dvh - 48px);

  margin: auto;
  padding: 58px 28px 28px;

  overflow-y: auto;
  overflow-x: hidden;

  background: #f1f2f4;
  border-radius: 22px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);

  scrollbar-width: thin;
  scrollbar-color: var(--documentos-primary) #dfe8ed;

  -webkit-overflow-scrolling: touch;
}

#modalDocumentos .documentos-modal-content::-webkit-scrollbar {
  width: 8px;
}

#modalDocumentos .documentos-modal-content::-webkit-scrollbar-track {
  background: #dfe8ed;
  border-radius: 999px;
}

#modalDocumentos .documentos-modal-content::-webkit-scrollbar-thumb {
  background: var(--documentos-primary);
  border-radius: 999px;
}

#modalDocumentos .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 30;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 0;

  border: none;
  border-radius: 50%;

  background: #ffffff !important;
  color: var(--documentos-dark);

  font-size: 26px;
  line-height: 1;

  cursor: pointer;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

#modalDocumentos .modal-close:hover {
  background: var(--documentos-primary-light) !important;
  transform: scale(1.05);
}

#modalDocumentos .documentos-tutorial {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 0 0;

  font-family: Arial, Helvetica, sans-serif;
  color: var(--documentos-dark);
}

#modalDocumentos .documentos-header {
  display: grid;
  grid-template-columns: minmax(30px, 15%) minmax(0, 70%) minmax(30px, 15%);
  align-items: center;
  gap: 14px;

  margin-bottom: 24px;
}

#modalDocumentos .documentos-header-line {
  display: block;
  width: 100%;
  height: 3px;

  background: var(--documentos-primary);
}

#modalDocumentos .documentos-header-title {
  text-align: center;
}

#modalDocumentos .documentos-header-title h2 {
  margin: 0;

  color: var(--documentos-dark);

  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

#modalDocumentos .documentos-header-title p {
  margin: 6px 0 0;

  color: var(--documentos-dark);

  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}

#modalDocumentos .documentos-header-title strong {
  color: var(--documentos-primary);
  font-weight: 900;
}

#modalDocumentos .documentos-step {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(240px, 40%);
  align-items: stretch;

  margin-bottom: 18px;

  overflow: hidden;

  border: 1px solid var(--documentos-primary-light);
  border-radius: 14px;

  background: #ffffff;

  box-shadow: 0 3px 12px rgba(16, 175, 227, 0.08);
}

#modalDocumentos .documentos-step-number {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px 8px;

  background: var(--documentos-primary);
  color: #ffffff;

  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

#modalDocumentos .documentos-step-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 24px 20px;
}

#modalDocumentos .documentos-step-copy h3 {
  margin: 0;

  color: var(--documentos-dark);

  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
}

#modalDocumentos .documentos-step-copy p {
  margin: 10px 0 0;

  color: var(--documentos-text);

  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

#modalDocumentos .documentos-step-image {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 14px;

  background: #ffffff;
}

#modalDocumentos .documentos-step-image img {
  display: block;

  width: 100%;
  max-width: 270px;
  height: auto;

  margin: 0;

  border: 0;
  border-radius: 8px;
}

#modalDocumentos .documentos-action {
  padding: 8px 0 10px;
  text-align: center;
}

#modalDocumentos .documentos-system-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 15px 32px;

  border-radius: 9px;

  background: var(--documentos-primary);
  color: #ffffff;

  text-decoration: none;

  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;

  box-shadow: 0 8px 20px rgba(16, 175, 227, 0.24);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

#modalDocumentos .documentos-system-button:hover {
  background: #079ccb;
  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 12px 26px rgba(16, 175, 227, 0.32);
}

@media (max-width: 760px) {
  #modalDocumentos {
    align-items: flex-start;
    padding: 8px;
  }

  #modalDocumentos .documentos-modal-content {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 16px);

    margin: 0;
    padding: 58px 14px 22px;

    border-radius: 17px;
  }

  #modalDocumentos .documentos-tutorial {
    padding-top: 10px;
  }

  #modalDocumentos .documentos-header {
    grid-template-columns: 35px minmax(0, 1fr) 35px;
    gap: 9px;
  }

  #modalDocumentos .documentos-header-title h2 {
    font-size: 19px;
  }

  #modalDocumentos .documentos-header-title p {
    font-size: 14px;
  }

  #modalDocumentos .documentos-step {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  #modalDocumentos .documentos-step-number {
    grid-column: 1;
    grid-row: 1 / span 2;

    font-size: 30px;
  }

  #modalDocumentos .documentos-step-copy {
    grid-column: 2;
    grid-row: 1;

    padding: 20px 16px 10px;
  }

  #modalDocumentos .documentos-step-copy h3 {
    font-size: 15px;
  }

  #modalDocumentos .documentos-step-copy p {
    font-size: 14px;
  }

  #modalDocumentos .documentos-step-image {
    grid-column: 2;
    grid-row: 2;

    justify-content: flex-start;

    padding: 8px 16px 20px;
  }

  #modalDocumentos .documentos-step-image img {
    max-width: 100%;
  }

  #modalDocumentos .documentos-system-button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  #modalDocumentos .documentos-header {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
  }

  #modalDocumentos .documentos-step {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  #modalDocumentos .documentos-step-number {
    font-size: 25px;
  }

  #modalDocumentos .documentos-step-copy {
    padding-left: 13px;
    padding-right: 13px;
  }

  #modalDocumentos .documentos-step-image {
    padding-left: 13px;
    padding-right: 13px;
  }
}

/* =========================
   MODAL DE KIT — BOTAO FECHAR FIXO
========================= */
#kitFullModal .modal-content.kit-modal-fixed {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

#kitFullModal .modal-content.kit-modal-fixed .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

#kitFullModal .kit-modal-scroll {
  overflow-y: auto;
  padding: 58px 30px 30px;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 640px) {
  #kitFullModal .kit-modal-scroll {
    padding: 58px 18px 22px;
  }
}

/* =========================
   MODAL DE KIT — COMPOSICAO EDITORIAL DOS LOTES
========================= */
#kitFullModal { padding: clamp(12px, 2.2vw, 28px); background: rgba(5, 10, 17, .78); backdrop-filter: blur(8px); }
#kitFullModal .modal-content.kit-modal-fixed { width: min(1120px, 100%); max-width: 1120px; max-height: calc(100dvh - clamp(24px, 4.4vw, 56px)); border: 1px solid rgba(255,255,255,.18); border-radius: 26px; background: #fff; }
#kitFullModal .modal-content.kit-modal-fixed .modal-close { top: 18px; right: 18px; width: 44px; height: 44px; background: rgba(255,255,255,.92) !important; box-shadow: 0 8px 24px rgba(0,0,0,.14); }
#kitFullModal .kit-modal-scroll { padding: 0; }
#kitFullModal .modal-title { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.kit-lot-modal { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); min-height: 440px; }
.kit-lot-visual { position: sticky; top: 0; min-height: 440px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: clamp(24px, 4vw, 44px); background: #fff; border-right: 1px solid #edf0f2; }
.kit-lot-visual::before,
.kit-lot-visual::after { display: none; }
.kit-lot-image { position: relative; z-index: 1; width: 100%; max-height: 370px; display: block; object-fit: contain; filter: drop-shadow(0 16px 20px rgba(16,43,58,.11)); }
.kit-lot-modal.is-ended .kit-lot-image { filter: grayscale(.28) drop-shadow(0 22px 24px rgba(16,43,58,.13)); }

.kit-lot-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 54px clamp(28px, 4vw, 48px) 34px; }
.kit-lot-topline { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 12px; }
.kit-lot-name, .kit-lot-status { display: inline-flex; align-items: center; min-height: 28px; padding: 7px 11px; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .08em; line-height: 1; text-transform: uppercase; }
.kit-lot-name { background: var(--primary); color: #071218; }
.kit-lot-status { border: 1px solid #d8e0e4; color: #66747b; }
.kit-lot-modal.is-current .kit-lot-status { border-color: #dbe900; background: #eef817; color: #111; }
.kit-lot-deadline { display: grid; grid-template-columns: 25px minmax(0,1fr); gap: 8px; align-items: center; margin: 0 0 20px; padding: 0 0 17px; border: 0; border-bottom: 1px solid #e8edef; border-radius: 0; background: transparent; }
.kit-lot-deadline-icon { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 0; background: transparent; color: var(--primary); font-size: 17px; box-shadow: none; }
.kit-lot-deadline small, .kit-lot-deadline strong { display: block; }
.kit-lot-deadline small { margin-bottom: 2px; color: #7a868c; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.kit-lot-deadline strong { color: var(--dark); font-size: 15px; font-weight: 900; }
.kit-lot-body { min-width: 0; }
.kit-lot-body > .kit-modal-box > h3:first-child { display: none; }
.kit-lot-body .kit-modal-box h4 { margin-top: 20px; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; }
.kit-lot-body .kit-modal-highlight, .kit-lot-body .kit-modal-compare { padding: 16px 18px; border-radius: 14px; }
.kit-lot-body .kit-modal-highlight { border: 0; background: #ecf8fc; }
.kit-lot-body .kit-modal-compare { background: #fafafa; }
.kit-lot-body .kit-modal-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.kit-lot-body .kit-modal-list li { position: relative; margin: 0; padding: 9px 10px 9px 30px; border-radius: 9px; background: #f6f8f9; color: #3f4b51; font-size: 13px; line-height: 1.35; }
.kit-lot-body .kit-modal-list li::before { content: "✓"; position: absolute; left: 10px; top: 9px; color: var(--primary); font-weight: 950; }
.kit-modal-ended-text > p { margin: 0 0 16px; color: var(--dark); font-size: 17px; font-weight: 850; line-height: 1.45; }

@media (max-width: 900px) {
  #kitFullModal .modal-content.kit-modal-fixed { max-height: calc(100dvh - 28px); }
  .kit-lot-modal { grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr); min-height: 430px; }
  .kit-lot-visual { min-height: 430px; padding: 28px; }
  .kit-lot-copy { padding: 52px 28px 30px; }
}

@media (max-width: 700px) {
  #kitFullModal { align-items: flex-end; padding: 0; }
  #kitFullModal .modal-content.kit-modal-fixed { width: 100%; max-height: 94dvh; margin: auto 0 0; border-radius: 24px 24px 0 0; }
  #kitFullModal .modal-content.kit-modal-fixed .modal-close { position: fixed; top: calc(6dvh + 12px); right: 14px; }
  .kit-lot-modal { display: block; min-height: 0; }
  .kit-lot-visual { position: relative; min-height: 0; height: clamp(210px, 31dvh, 270px); padding: 26px 28px 16px; border-right: 0; border-bottom: 1px solid #edf0f2; }
  .kit-lot-image { width: min(100%, 430px); height: 100%; max-height: none; }
  .kit-lot-copy { padding: 22px 20px 30px; }
  .kit-lot-topline { margin-bottom: 11px; }
  .kit-lot-deadline { margin-bottom: 18px; padding-bottom: 14px; }
}

.dynamic-register-btn.is-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
  color: #fff;
  background: #687076;
  opacity: .82;
  pointer-events: none;
}
