:root {
  --yellow: #ffd200;
  --black: #000;
  --dark: #070707;
  --soft: #f6f6f4;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --footer: #071119;
  --shadow: 0 22px 70px rgba(0, 0, 0, .18);
}
* {
  box-sizing: border-box;
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, .94);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  transition: .28s ease;
  overflow: visible;
}
.site-header.is-scrolled {
  top: 0;
  background: rgba(0, 0, 0, .98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  transition: .28s ease;
}
.site-header.is-scrolled .header-inner {
  min-height: 66px;
}
.brand {
  width: 230px;
  min-width: 230px;
  height: 104px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 5;
  margin-top: -32px;
  margin-bottom: -32px;
  transition: .28s ease;
}
.brand img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 210px;
  max-height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .45));
  transition: opacity .26s ease, transform .28s ease, width .28s ease, max-height .28s ease;
}
.brand .logo-full {
  opacity: 1;
}
.brand .logo-reduced {
  opacity: 0;
}
.site-header.is-scrolled .brand {
  width: 175px;
  min-width: 175px;
  height: 78px;
  margin-top: -18px;
  margin-bottom: -18px;
}
.site-header.is-scrolled .brand .logo-full {
  opacity: 0;
  transform: translateY(-50%) scale(.96);
  width: 158px;
  max-height: 90px;
}
.site-header.is-scrolled .brand .logo-reduced {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  width: 158px;
  max-height: 90px;
}
.main-nav {
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}
.main-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .02em;
  position: relative;
  transition: .2s ease;
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  opacity: 0;
  transform: scaleX(.35);
  transition: .22s ease;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--yellow);
}
.main-nav a:hover:after, .main-nav a.active:after {
  opacity: 1;
  transform: scaleX(1);
}
.header-actions {
  width: 230px;
  min-width: 230px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.btn-main {
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(255, 210, 0, .26);
  transition: .22s ease;
  white-space: nowrap;
}
.btn-main:hover {
  background: #ffe252;
  color: #000;
  transform: translateY(-2px);
}
.btn-outline-white {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .58);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: .22s ease;
  white-space: nowrap;
}
.btn-outline-white:hover {
  color: #000;
  background: #fff;
}
.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.mobile-panel {
  display: none;
  padding: 4px 0 18px;
}
.mobile-panel.open {
  display: block;
}
.mobile-panel nav {
  display: grid;
  gap: 8px;
}
.mobile-panel a {
  min-height: 50px;
  border-radius: 16px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .09);
  font-weight: 850;
}
.hero {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.hero-home {
  height: 520px;
  min-height: 520px;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .65s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.banner-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-dots {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .48);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}
.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  transition: .2s ease;
}
.hero-dots button.active {
  width: 34px;
  background: var(--yellow);
}
.search-strip {
  margin-top: -52px;
  position: relative;
  z-index: 10;
  padding: 0 0 76px;
}
.search-card {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 28px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, .10);
  padding: 22px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.search-head {
  width: 280px;
  flex: 0 0 280px;
  padding-left: 4px;
}
.search-head span {
  display: block;
  color: #b28e00;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.search-head strong {
  display: block;
  color: #000;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 950;
}
.search-field {
  min-height: 66px;
  width: 100%;
  border: 1px solid rgba(17, 24, 39, .10);
  background: #f7f7f6;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 10px 16px;
  margin: 0;
  transition: .2s ease;
}
.search-field:focus-within {
  border-color: rgba(255, 210, 0, .85);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 210, 0, .18);
}
.search-field i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--yellow);
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  font-size: 15px;
}
.search-field span {
  display: block;
  color: #6b7280;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1;
  margin-bottom: 5px;
}
.search-field input, .search-field select {
  width: 100%;
  height: 24px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #000;
  font-size: 14px;
  font-weight: 750;
  padding: 0;
}
.search-field select {
  cursor: pointer;
}
.search-field input::placeholder {
  color: #9ca3af;
  font-weight: 650;
}
.search-button {
  min-height: 66px;
  padding: 0 28px;
}
.events-section {
  padding: 0 0 76px;
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.section-title small {
  display: block;
  color: #b28e00;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 950;
  text-transform: uppercase;
  color: #000;
}
.event-card {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .06);
  transition: .24s ease;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .10);
}
.event-cover {
  aspect-ratio: 1 / 1;
  height: auto;
  position: relative;
  background-size: cover;
  background-position: center;
}
.event-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .72));
}
.event-date {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  width: 78px;
  height: 78px;
  border-radius: 23px;
  background: var(--yellow);
  color: #000;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 950;
  line-height: 1;
}
.event-date strong {
  display: block;
  font-size: 30px;
  letter-spacing: -.06em;
}
.event-date span {
  font-size: 11px;
  letter-spacing: .12em;
}
.event-body {
  padding: 24px;
}
.event-body h3 {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.event-info {
  display: grid;
  gap: 12px;
  color: #374151;
  font-size: 14px;
  font-weight: 650;
  margin-bottom: 22px;
}
.event-info span {
  display: flex;
  align-items: center;
  gap: 11px;
}
.event-info i {
  width: 18px;
  color: #000;
  text-align: center;
}
/* Contato */
.hero-contact {
  min-height: 560px;
  padding: 178px 0 72px;
  display: flex;
  align-items: center;
  background: #000;
}
.hero-contact:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 210, 0, .18), transparent 28%), radial-gradient(circle at 88% 8%, rgba(255, 255, 255, .08), transparent 24%);
  pointer-events: none;
}
.hero-contact .container {
  position: relative;
  z-index: 2;
}
.contact-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.hero-contact h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .88;
  font-weight: 950;
  text-transform: uppercase;
}
.hero-contact p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}
body.page-contact .hero-contact h1 {
  max-width: 1100px;
}
body.page-contact .hero-contact h1 span {
  display: block;
}
body.page-contact .hero-contact p {
  max-width: none;
  white-space: nowrap;
}
.contact-section {
  padding: 70px 0;
  background: #fff;
}
.contact-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .07);
  padding: 30px;
}
.contact-card h2 {
  margin: 0 0 10px;
  color: #000;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 950;
  text-transform: uppercase;
}
.contact-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}
.form-label-custom {
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.form-control-custom {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 18px;
  background: #f8f8f7;
  outline: 0;
  padding: 0 16px;
  color: #000;
  font-size: 15px;
  font-weight: 650;
  transition: .2s ease;
}
.textarea-control {
  min-height: 132px;
  padding-top: 15px;
  resize: vertical;
}
.form-control-custom:focus {
  border-color: rgba(255, 210, 0, .85);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 210, 0, .18);
}
.contact-info-list {
  display: grid;
  gap: 14px;
}
.contact-info-item {
  min-height: 82px;
  border-radius: 22px;
  background: #f7f7f6;
  border: 1px solid rgba(17, 24, 39, .08);
  padding: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.contact-info-item strong {
  display: block;
  color: #000;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-info-item span, .contact-info-item a {
  color: #4b5563;
  font-weight: 650;
  line-height: 1.4;
}
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.contact-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #000;
  font-size: 20px;
  transition: .2s ease;
}
.contact-social a:hover {
  background: #000;
  color: var(--yellow);
  transform: translateY(-3px);
}
.faq-accordion {
  display: grid;
  gap: 14px;
}
.faq-accordion .faq-item {
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 42px rgba(0, 0, 0, .06);
}
.faq-accordion .accordion-button {
  min-height: 64px;
  padding: 18px 22px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: #000;
  color: #fff;
}
.faq-accordion .accordion-button::after {
  filter: grayscale(1);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1);
}
.faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(255, 210, 0, .22);
}
.faq-accordion .accordion-body {
  padding: 20px 22px 22px;
  color: #374151;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  border-top: 1px solid rgba(255, 210, 0, .55);
  background: linear-gradient(180deg, rgba(255, 210, 0, .08), #fff 46%);
}
.map-box {
  height: 320px;
  border-radius: 30px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
  position: relative;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
}
/* Footer */
.footer {
  background: var(--footer);
  color: #fff;
  padding: 0;
  margin-top: 30px;
}
.footer-accent {
  height: 5px;
  background: var(--yellow);
}
.footer-grid {
  padding: 52px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.footer-brand img {
  width: 180px;
  opacity: .96;
  margin-bottom: 26px;
}
.footer-brand p {
  max-width: 360px;
  color: #fff;
  line-height: 1.55;
  font-weight: 650;
  margin: 0;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: #fff;
  font-weight: 550;
}
.footer-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}
.footer-col a, .footer-col span {
  color: #fff;
  transition: .2s ease;
  line-height: 1.35;
}
.footer-col a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}
.footer-contact span {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--yellow);
  margin-top: 2px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #000;
  font-size: 20px;
}
.footer-social a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding: 30px 0 10px;
}
.footer-bottom p {
  margin: 0 0 8px;
  color: #fff;
  font-weight: 600;
}
.footer-bottom small {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}
/* Responsivo */
@media(max-width:1199.98px) {
  .header-actions {
    width: 190px;
    min-width: 190px;
  }
  .brand {
    width: 190px;
    min-width: 190px;
  }
}
@media(max-width:991.98px) {
  .site-header {
    top: 18px;
    left: 12px;
    right: 12px;
    border-radius: 24px;
  }
  .site-header.is-scrolled {
    top: 8px;
  }
  .header-inner {
    min-height: 72px;
    padding: 0 12px;
  }
  .site-header.is-scrolled .header-inner {
    min-height: 64px;
  }
  .brand {
    width: 154px;
    min-width: 154px;
    height: 92px;
    margin-top: -24px;
    margin-bottom: -24px;
  }
  .brand img {
    width: 145px;
    max-height: 100px;
  }
  .site-header.is-scrolled .brand {
    width: 128px;
    min-width: 128px;
    height: 74px;
    margin-top: -16px;
    margin-bottom: -16px;
  }
  .site-header.is-scrolled .brand .logo-full, .site-header.is-scrolled .brand .logo-reduced {
    width: 118px;
    max-height: 76px;
  }
  .header-actions {
    width: auto;
    min-width: auto;
  }
  .hero-home {
    height: 430px;
    min-height: 430px;
  }
  .search-strip {
    margin-top: -28px;
    padding-bottom: 56px;
  }
  .search-card {
    display: block;
    padding: 18px;
    border-radius: 24px;
  }
  .search-head {
    width: 100%;
    margin-bottom: 16px;
  }
  .search-head strong {
    font-size: 24px;
  }
  .events-section {
    padding-bottom: 56px;
  }
  .section-title {
    display: block;
  }
  .section-title .btn {
    margin-top: 18px;
  }
  .hero-contact {
    min-height: 520px;
    padding: 142px 0 54px;
  }
  .contact-card {
    border-radius: 26px;
    padding: 24px;
  }
}
@media(max-width:575.98px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header {
    top: 14px;
    left: 10px;
    right: 10px;
    border-radius: 22px;
  }
  .header-inner {
    min-height: 68px;
    gap: 10px;
  }
  .brand {
    width: 132px;
    min-width: 132px;
    height: 84px;
  }
  .brand img {
    width: 126px;
    max-height: 90px;
  }
  .site-header.is-scrolled .brand {
    width: 110px;
    min-width: 110px;
    height: 68px;
  }
  .site-header.is-scrolled .brand .logo-full, .site-header.is-scrolled .brand .logo-reduced {
    width: 104px;
  }
  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }
  .mobile-panel {
    padding: 0 12px 14px;
  }
  .hero-home {
    height: 360px;
    min-height: 360px;
  }
  .hero-dots {
    bottom: 18px;
  }
  .search-card {
    padding: 16px;
  }
  .search-field {
    min-height: 60px;
    border-radius: 19px;
  }
  .search-button, .btn-main {
    width: 100%;
  }
  .section-title h2 {
    font-size: 34px;
  }
  .event-cover {
    height: auto;
  }
  .hero-contact {
    min-height: 520px;
    padding: 142px 0 46px;
  }
  .hero-contact h1 {
    font-size: 42px;
  }
  .hero-contact p {
    font-size: 16px;
  }
  body.page-contact .hero-contact p {
    white-space: normal;
  }
  .contact-card h2 {
    font-size: 28px;
  }
  .contact-submit {
    width: 100%;
  }
  .map-box {
    height: 260px;
  }
  .footer-brand img {
    width: 170px;
  }
  .footer-bottom {
    text-align: left;
  }
}
/* Área do Atleta */
.athlete-page {
  background: #fff;
}
.athlete-hero {
  min-height: 420px;
  padding: 164px 0 70px;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.athlete-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 30%, rgba(255, 210, 0, .20), transparent 30%), radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .08), transparent 24%);
  pointer-events: none;
}
.athlete-hero .container {
  position: relative;
  z-index: 2;
}
.athlete-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.athlete-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 950;
  text-transform: uppercase;
}
.athlete-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}
.athlete-section {
  padding: 70px 0;
  background: #fff;
}
.athlete-login-wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.athlete-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .08);
  overflow: hidden;
}
.athlete-panel-dark {
  background: #000;
  color: #fff;
  padding: 34px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.athlete-panel-dark:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 210, 0, .25), transparent 30%), radial-gradient(circle at 80% 90%, rgba(255, 255, 255, .08), transparent 28%);
  pointer-events: none;
}
.athlete-panel-dark > * {
  position: relative;
  z-index: 2;
}
.athlete-panel-dark img {
  width: 210px;
  margin-bottom: 34px;
}
.athlete-panel-dark h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 950;
  text-transform: uppercase;
}
.athlete-panel-dark p {
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  margin: 0 0 28px;
}
.athlete-benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.athlete-benefit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: center;
}
.athlete-benefit i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #000;
}
.athlete-benefit strong {
  display: block;
  color: #fff;
  font-weight: 950;
  margin-bottom: 2px;
}
.athlete-benefit span {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}
.athlete-form-card {
  padding: 34px;
}
.athlete-form-title {
  margin-bottom: 28px;
}
.athlete-form-title span {
  display: block;
  color: #b28e00;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.athlete-form-title h2 {
  margin: 0;
  color: #000;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.065em;
  font-weight: 950;
  text-transform: uppercase;
}
.athlete-form-title p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
  margin: 12px 0 0;
}
.athlete-form {
  display: grid;
  gap: 16px;
}
.input-with-button {
  display: grid;
  grid-template-columns: 1fr 56px;
}
.input-with-button .form-control-custom {
  border-radius: 18px 0 0 18px;
}
.input-action {
  min-height: 54px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-left: 0;
  background: #fff;
  border-radius: 0 18px 18px 0;
  display: grid;
  place-items: center;
  color: #000;
  transition: .2s ease;
}
.input-action:hover {
  background: var(--yellow);
}
.athlete-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}
.athlete-links a, .athlete-links button {
  border: 0;
  background: transparent;
  padding: 0;
  color: #111827;
  font-weight: 750;
}
.athlete-links a:hover, .athlete-links button:hover {
  color: #b28e00;
}
.athlete-register-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-weight: 650;
}
.athlete-register-note a {
  color: #000;
  font-weight: 950;
}
.athlete-register-note a:hover {
  color: #b28e00;
}
.athlete-modal .modal-content {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
}
.athlete-modal .modal-header {
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
}
.athlete-modal .modal-title {
  color: #000;
  font-weight: 950;
  letter-spacing: -.04em;
}
.athlete-modal .modal-body {
  padding: 22px 24px;
}
.athlete-modal .modal-footer {
  border-top: 1px solid var(--line);
  padding: 18px 24px;
}
.athlete-register-layout {
  max-width: 1180px;
  margin: 0 auto;
}
.register-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .08);
  overflow: hidden;
}
.register-head {
  padding: 34px 34px 28px;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.register-head:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(255, 210, 0, .22), transparent 30%);
  pointer-events: none;
}
.register-head > * {
  position: relative;
  z-index: 2;
}
.register-head span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.register-head h2 {
  margin: 0;
  font-size: 42px;
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 950;
  text-transform: uppercase;
}
.register-head p {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
  line-height: 1.55;
}
.register-body {
  padding: 34px;
}
.form-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.form-section-title i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #000;
  color: var(--yellow);
}
.form-section-title h3 {
  margin: 0;
  color: #000;
  font-size: 24px;
  letter-spacing: -.045em;
  font-weight: 950;
  text-transform: uppercase;
}
.form-check-custom {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #111827;
  font-weight: 650;
}
.form-check-custom input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.form-check-custom a {
  font-weight: 950;
  color: #000;
}
.form-check-custom a:hover {
  color: #b28e00;
}
.register-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
@media(max-width:991.98px) {
  .athlete-hero {
    min-height: 390px;
    padding: 136px 0 54px;
  }
  .athlete-login-wrap {
    grid-template-columns: 1fr;
  }
  .athlete-panel-dark, .athlete-form-card, .register-body, .register-head {
    padding: 24px;
  }
  .athlete-panel-dark img {
    width: 170px;
  }
  .athlete-panel-dark h2, .athlete-form-title h2 {
    font-size: 30px;
  }
  .register-head h2 {
    font-size: 34px;
  }
}
@media(max-width:575.98px) {
  .athlete-hero {
    min-height: 390px;
    padding: 130px 0 46px;
  }
  .athlete-hero h1 {
    font-size: 40px;
  }
  .athlete-hero p {
    font-size: 15px;
  }
  .athlete-section {
    padding: 42px 0;
  }
  .athlete-panel, .register-card {
    border-radius: 26px;
  }
  .athlete-form-card, .athlete-panel-dark, .register-body, .register-head {
    padding: 20px;
  }
  .athlete-links {
    display: grid;
    justify-content: stretch;
  }
  .athlete-links a, .athlete-links button {
    text-align: center;
  }
  .form-section-title h3 {
    font-size: 21px;
  }
}
/* Área do atleta compacta: sem hero e com topo reduzido */
body.athlete-compact .site-header {
  top: 0;
  background: rgba(0, 0, 0, .98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}
body.athlete-compact .header-inner {
  min-height: 66px;
}
body.athlete-compact .brand {
  width: 175px;
  min-width: 175px;
  height: 78px;
  margin-top: -18px;
  margin-bottom: -18px;
}
body.athlete-compact .brand .logo-full {
  opacity: 0;
  transform: translateY(-50%) scale(.96);
  width: 158px;
  max-height: 90px;
}
body.athlete-compact .brand .logo-reduced {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  width: 158px;
  max-height: 90px;
}
body.athlete-compact .athlete-section {
  padding-top: 116px;
}
@media(max-width:991.98px) {
  body.athlete-compact .site-header {
    top: 8px;
  }
  body.athlete-compact .header-inner {
    min-height: 64px;
  }
  body.athlete-compact .brand {
    width: 128px;
    min-width: 128px;
    height: 74px;
    margin-top: -16px;
    margin-bottom: -16px;
  }
  body.athlete-compact .brand .logo-full, body.athlete-compact .brand .logo-reduced {
    width: 118px;
    max-height: 76px;
  }
  body.athlete-compact .athlete-section {
    padding-top: 106px;
  }
}
@media(max-width:575.98px) {
  body.athlete-compact .athlete-section {
    padding-top: 98px;
  }
}
/* Página Inscrição */
.registration-page {
  background: #fff
}
.registration-section {
  padding: 128px 0 72px;
  background: #fff
}
.registration-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 30px;
  align-items: start
}
.event-main-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .08)
}
.event-visual {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #121212, #000);
  overflow: hidden
}
.event-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .18)), url('https://images.unsplash.com/photo-1546483875-ad9014c88eba?auto=format&fit=crop&w=1400&q=85') center/cover;
  opacity: .92
}
.event-visual:after {
  content: "FOR LIFE";
  position: absolute;
  left: 36px;
  bottom: 18px;
  color: rgba(255, 255, 255, .08);
  font-size: 112px;
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.08em;
  white-space: nowrap
}
.event-visual-content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: #fff
}
.event-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}
.event-pill {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(10px)
}
.event-pill.yellow {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow)
}
.event-logo-mark {
  width: 168px;
  opacity: .92;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, .44))
}
.event-hero-copy {
  max-width: 620px
}
.event-hero-copy small {
  display: block;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 12px
}
.event-hero-copy h1 {
  margin: 0;
  font-size: clamp(46px, 6.6vw, 86px);
  line-height: .86;
  letter-spacing: -.075em;
  font-weight: 950;
  text-transform: uppercase
}
.event-hero-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650
}
.event-side-card {
  position: sticky;
  top: 94px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .08);
  overflow: hidden
}
.event-side-head {
  padding: 28px;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden
}
.event-side-head:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 12%, rgba(255, 210, 0, .24), transparent 32%);
  pointer-events: none
}
.event-side-head > * {
  position: relative;
  z-index: 2
}
.event-side-head span {
  display: inline-flex;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  align-items: center;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 15px
}
.event-side-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 950;
  text-transform: uppercase
}
.event-side-body {
  padding: 24px
}
.event-meta-list {
  display: grid;
  gap: 14px;
  margin-bottom: 22px
}
.event-meta-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border-radius: 20px;
  background: #f7f7f6;
  border: 1px solid rgba(17, 24, 39, .08)
}
.event-meta-item i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #000;
  color: var(--yellow)
}
.event-meta-item strong {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 2px
}
.event-meta-item span {
  display: block;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650
}
.interested-card {
  margin: 18px 0;
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff
}
.interested-card i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 210, 0, .17);
  color: #d59000
}
.interested-card strong {
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.04em;
  text-transform: uppercase
}
.interested-card span {
  display: block;
  color: #4b5563;
  font-size: 13px;
  font-weight: 650
}
.event-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px
}
.event-share a {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  transition: .2s ease
}
.event-share a:hover {
  background: var(--yellow);
  color: #000;
  transform: translateY(-2px)
}
.quick-info-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}
.quick-info-card {
  min-height: 112px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center
}
.quick-info-card i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 210, 0, .16);
  color: #d59000;
  font-size: 20px
}
.quick-info-card strong {
  display: block;
  color: #000;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 6px
}
.quick-info-card span {
  display: block;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650
}
.registration-content {
  padding: 70px 0;
  background: #fff
}
.registration-title {
  text-align: center;
  margin-bottom: 32px
}
.registration-title small {
  display: block;
  color: #b28e00;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px
}
.registration-title h2 {
  margin: 0;
  color: #000;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 950;
  text-transform: uppercase
}
.categories-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .06);
  background: #fff
}
.categories-table {
  margin: 0;
  min-width: 760px
}
.categories-table thead th {
  background: #000;
  color: #fff;
  border: 0;
  padding: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em
}
.categories-table tbody td {
  padding: 16px 18px;
  vertical-align: middle;
  color: #111827;
  font-weight: 650;
  border-color: #eef0f2
}
.categories-table tbody tr:nth-child(even) {
  background: #f8f8f7
}
.price-tag {
  color: #d59000;
  font-weight: 950;
  white-space: nowrap
}
.products-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 30px;
  align-items: start
}
.size-card, .product-card-registration {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .06)
}
.size-card-header {
  padding: 18px 22px;
  background: #000;
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  text-align: center
}
.size-preview {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #f7f7f6
}
.size-illustration {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1.2;
  border-radius: 24px;
  background: linear-gradient(90deg, transparent 49%, rgba(0, 0, 0, .10) 49% 51%, transparent 51%), linear-gradient(#fff, #fff);
  border: 1px dashed rgba(17, 24, 39, .24);
  display: grid;
  place-items: center;
  color: #111827;
  font-weight: 950;
  text-align: center;
  padding: 20px
}
.product-card-registration {
  display: grid;
  grid-template-columns: 330px 1fr
}
.product-cover {
  min-height: 390px;
  background: url('https://images.unsplash.com/photo-1521369909029-2afed882baee?auto=format&fit=crop&w=900&q=80') center/cover
}
.product-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center
}
.product-info h3 {
  margin: 0 0 12px;
  color: #000;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 950;
  text-transform: uppercase
}
.product-info p {
  color: #4b5563;
  line-height: 1.55;
  font-weight: 650;
  margin: 0 0 20px
}
.product-price {
  display: block;
  color: #d59000;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -.06em;
  margin-bottom: 20px
}
.qty-control {
  width: max-content;
  display: grid;
  grid-template-columns: 48px 54px 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px
}
.qty-control button, .qty-control span {
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  color: #000;
  font-weight: 950
}
.qty-control button {
  color: #d59000
}
.qty-control span {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line)
}
.sticky-mobile-cta {
  display: none
}
@media(max-width:1199.98px) {
  .registration-shell {
    grid-template-columns: 1fr
  }
  .event-side-card {
    position: relative;
    top: auto
  }
  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .products-layout {
    grid-template-columns: 1fr
  }
}
@media(max-width:991.98px) {
  .registration-section {
    padding: 112px 0 52px
  }
  .event-visual, .event-visual-content {
    min-height: 450px
  }
  .event-visual:after {
    font-size: 72px
  }
  .product-card-registration {
    grid-template-columns: 1fr
  }
  .product-cover {
    min-height: 300px
  }
}
@media(max-width:575.98px) {
  .registration-section {
    padding: 100px 0 42px
  }
  .event-main-card, .event-side-card, .categories-card, .size-card, .product-card-registration {
    border-radius: 24px
  }
  .event-visual, .event-visual-content {
    min-height: 420px
  }
  .event-visual-content {
    padding: 24px
  }
  .event-logo-mark {
    width: 128px
  }
  .event-hero-copy h1 {
    font-size: 42px
  }
  .event-visual:after {
    font-size: 54px;
    left: 22px
  }
  .event-side-head, .event-side-body {
    padding: 22px
  }
  .quick-info-grid {
    grid-template-columns: 1fr
  }
  .registration-content {
    padding: 52px 0
  }
  .product-info {
    padding: 22px
  }
  .product-info h3 {
    font-size: 23px
  }
  .sticky-mobile-cta {
    position: fixed;
    z-index: 2600;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: block
  }
  body.registration-page {
    padding-bottom: 82px
  }
}
/* Ajustes finais página inscrição */
.registration-shell {
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: start;
}
.event-main-card {
  border-radius: 34px;
}
.event-visual {
  min-height: 520px;
  background: #000;
}
.event-visual:before, .event-visual:after {
  display: none !important;
}
.event-visual-content {
  min-height: 520px;
  padding: 0;
  display: block;
}
.event-carousel {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #000;
}
.event-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .45s ease;
}
.event-carousel-slide.active {
  opacity: 1;
}
.event-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-status-floating {
  position: absolute;
  z-index: 5;
  left: 24px;
  top: 24px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(255, 210, 0, .26);
}
.event-carousel-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .50);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
}
.event-carousel-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  transition: .2s ease;
}
.event-carousel-dots button.active {
  width: 34px;
  background: var(--yellow);
}
.quick-info-grid {
  margin-top: 26px;
}
.quick-info-card {
  min-height: 122px;
  border: 2px solid #000;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
  background: #fff;
}
.quick-info-card i {
  background: #000;
  color: var(--yellow);
}
.quick-info-card strong {
  font-size: 20px;
}
.quick-info-card span {
  color: #111827;
  font-size: 14px;
}
.categories-table thead th:last-child, .categories-table tbody td:last-child {
  display: none;
}
.categories-table {
  min-width: 650px;
}
.categories-table tbody td {
  font-size: 15px;
}
.products-layout {
  display: block;
}
.product-grid-registration {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card-registration {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}
.product-cover {
  min-height: 300px;
}
.product-info {
  padding: 24px;
  display: block;
}
.product-info h3 {
  font-size: 23px;
}
.product-info p {
  font-size: 14px;
}
.product-price {
  font-size: 28px;
}
.qty-control {
  margin: 0 auto 18px;
}
@media(max-width:1199.98px) {
  .product-grid-registration {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width:991.98px) {
  .event-carousel, .event-visual, .event-visual-content {
    height: 430px;
    min-height: 430px;
  }
}
@media(max-width:575.98px) {
  .event-carousel, .event-visual, .event-visual-content {
    height: 340px;
    min-height: 340px;
  }
  .event-status-floating {
    left: 16px;
    top: 16px;
    min-height: 34px;
    font-size: 11px;
  }
  .quick-info-card {
    min-height: 104px;
  }
  .product-grid-registration {
    grid-template-columns: 1fr;
  }
  .product-cover {
    min-height: 260px;
  }
}
/* Correção layout topo da inscrição */
.registration-section {
  padding: 128px 0 54px !important;
  overflow: hidden;
}
.registration-shell {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 430px !important;
  gap: 30px !important;
  align-items: start !important;
}
.event-main-card {
  width: 100%;
}
.event-side-card {
  width: 100%;
  position: sticky;
  top: 94px;
}
.event-side-card .btn-main, .event-side-card .btn {
  min-height: 54px;
}
.event-meta-list {
  gap: 12px;
}
.event-meta-item {
  min-height: 72px;
  border-radius: 22px;
}
.interested-card {
  min-height: 86px;
}
.quick-info-grid {
  margin-top: 28px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100%;
}
.quick-info-card {
  min-width: 0;
  border: 2px solid #000 !important;
}
@media(max-width:1199.98px) {
  .registration-shell {
    grid-template-columns: 1fr !important;
  }
  .event-side-card {
    position: relative !important;
    top: auto !important;
  }
  .quick-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media(max-width:575.98px) {
  .registration-section {
    padding-top: 100px !important;
  }
  .quick-info-grid {
    grid-template-columns: 1fr !important;
  }
  .event-side-card {
    border-radius: 24px;
  }
}
/* Contagem regressiva inscrição */
.countdown-card {
  margin-bottom: 18px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, .10);
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
}
.countdown-head {
  padding: 16px 18px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.countdown-head i {
  color: var(--yellow);
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 16px;
}
.countdown-item {
  min-height: 66px;
  border-radius: 18px;
  background: #f7f7f6;
  border: 1px solid rgba(17, 24, 39, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.countdown-item strong {
  display: block;
  color: #000;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 950;
}
.countdown-item span {
  display: block;
  margin-top: 5px;
  color: #6b7280;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
@media(max-width:575.98px) {
  .countdown-grid {
    gap: 6px;
    padding: 12px;
  }
  .countdown-item {
    min-height: 58px;
    border-radius: 15px;
  }
  .countdown-item strong {
    font-size: 20px;
  }
  .countdown-item span {
    font-size: 8px;
  }
}
/* =========================================================
   Ajustes globais mobile-first de alinhamento e responsividade
   ========================================================= */
html {
  scroll-behavior: smooth;
}
body {
  min-width: 320px;
}
img, iframe {
  max-width: 100%;
}
.btn-main, button, a {
  touch-action: manipulation;
}
.btn-main {
  min-height: 48px;
}
/* Cards de informações do evento: texto padronizado/alinhado */
.quick-info-grid {
  align-items: stretch !important;
}
.quick-info-card {
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 14px !important;
  height: 100% !important;
  min-height: 126px !important;
  padding: 18px !important;
}
.quick-info-card i {
  align-self: center !important;
  flex: 0 0 auto !important;
}
.quick-info-card div {
  min-width: 0;
}
.quick-info-card strong {
  display: block !important;
  min-height: 24px;
  margin: 0 0 6px !important;
  line-height: 1.05 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.quick-info-card span {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
  line-height: 1.35 !important;
}
/* Produtos: alturas, textos e botões sempre alinhados */
.product-grid-registration {
  align-items: stretch !important;
}
.product-card-registration {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}
.product-cover {
  height: 300px !important;
  min-height: 300px !important;
  flex: 0 0 auto !important;
  background-size: cover !important;
  background-position: center !important;
}
.product-info {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 24px !important;
}
.product-info h3 {
  min-height: 56px;
  margin: 0 0 12px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.05 !important;
}
.product-info p {
  min-height: 44px;
  margin: 0 0 18px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  margin-top: auto !important;
  margin-bottom: 18px !important;
}
.qty-control {
  margin: 0 auto 18px !important;
  flex: 0 0 auto;
}
.product-info .btn-main {
  margin-top: 0 !important;
  width: 100% !important;
  min-height: 52px;
  flex: 0 0 auto;
}
/* Tabela mais amigável no mobile */
.categories-card.table-responsive {
  -webkit-overflow-scrolling: touch;
}
.categories-table td, .categories-table th {
  white-space: nowrap;
}
.categories-table td:first-child, .categories-table th:first-child {
  white-space: normal;
  min-width: 260px;
}
/* Ajustes mobile-first */
@media(max-width:1199.98px) {
  .registration-shell {
    grid-template-columns: 1fr !important;
  }
  .event-side-card {
    position: relative !important;
    top: auto !important;
  }
  .quick-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .product-grid-registration {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media(max-width:991.98px) {
  .registration-section {
    padding-top: 112px !important;
  }
  .quick-info-card {
    min-height: 116px !important;
  }
  .product-cover {
    height: 270px !important;
    min-height: 270px !important;
  }
  .footer-grid {
    padding-top: 42px !important;
  }
}
@media(max-width:767.98px) {
  .section-title, .registration-title {
    text-align: left !important;
  }
  .registration-title h2, .section-title h2 {
    font-size: 34px !important;
    line-height: .95 !important;
  }
  .quick-info-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .quick-info-card {
    min-height: 96px !important;
    border-radius: 22px !important;
  }
  .quick-info-card strong {
    white-space: normal;
    min-height: auto;
  }
  .quick-info-card span {
    min-height: auto;
  }
  .product-grid-registration {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .product-cover {
    height: 250px !important;
    min-height: 250px !important;
  }
  .product-info h3 {
    min-height: auto;
  }
  .product-info p {
    min-height: auto;
  }
  .categories-table {
    min-width: 720px !important;
  }
}
@media(max-width:575.98px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .registration-section {
    padding-top: 98px !important;
    padding-bottom: 36px !important;
  }
  .event-carousel, .event-visual, .event-visual-content {
    height: 330px !important;
    min-height: 330px !important;
  }
  .event-side-head h2 {
    font-size: 28px !important;
  }
  .event-meta-item {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    min-height: 70px !important;
    padding: 12px !important;
  }
  .interested-card {
    align-items: flex-start !important;
  }
  .countdown-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .countdown-item {
    padding: 6px 2px;
  }
  .quick-info-card {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    padding: 16px !important;
  }
  .quick-info-card i {
    width: 48px !important;
    height: 48px !important;
  }
  .product-card-registration {
    border-radius: 24px !important;
  }
  .product-cover {
    height: 230px !important;
    min-height: 230px !important;
  }
  .product-info {
    padding: 20px !important;
  }
  .product-price {
    font-size: 28px !important;
  }
  .footer-bottom {
    text-align: left !important;
  }
}
/* =========================================================
   DEFINITIVO: topo reduzido em todas as páginas internas
   Exceto index.html
   ========================================================= */
body.internal-page .site-header, body.athlete-compact .site-header {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0 !important;
  background: rgba(0, 0, 0, .98) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28) !important;
}
body.internal-page .header-inner, body.athlete-compact .header-inner {
  min-height: 66px !important;
}
body.internal-page .brand, body.athlete-compact .brand {
  width: 175px !important;
  min-width: 175px !important;
  height: 78px !important;
  margin-top: -18px !important;
  margin-bottom: -18px !important;
}
body.internal-page .brand .logo-full, body.athlete-compact .brand .logo-full {
  opacity: 0 !important;
  transform: translateY(-50%) scale(.96) !important;
  width: 158px !important;
  max-height: 90px !important;
}
body.internal-page .brand .logo-reduced, body.athlete-compact .brand .logo-reduced {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
  width: 158px !important;
  max-height: 90px !important;
}
body.internal-page .registration-section, body.internal-page .contact-section, body.internal-page .athlete-section {
  padding-top: 116px !important;
}
body.internal-page .hero-contact {
  min-height: auto !important;
  padding: 96px 0 48px !important;
  align-items: flex-start !important;
}
body.internal-page .athlete-hero {
  padding-top: 116px !important;
}
@media(max-width:991.98px) {
  body.internal-page .site-header, body.athlete-compact .site-header {
    top: 8px !important;
    left: 12px !important;
    right: 12px !important;
    border-radius: 24px !important;
  }
  body.internal-page .header-inner, body.athlete-compact .header-inner {
    min-height: 64px !important;
  }
  body.internal-page .brand, body.athlete-compact .brand {
    width: 128px !important;
    min-width: 128px !important;
    height: 74px !important;
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }
  body.internal-page .brand .logo-full, body.internal-page .brand .logo-reduced, body.athlete-compact .brand .logo-full, body.athlete-compact .brand .logo-reduced {
    width: 118px !important;
    max-height: 76px !important;
  }
  body.internal-page .registration-section, body.internal-page .contact-section, body.internal-page .athlete-section {
    padding-top: 106px !important;
  }
  body.internal-page .hero-contact {
    padding: 90px 0 42px !important;
  }
  body.internal-page .athlete-hero {
    padding-top: 106px !important;
  }
}
@media(max-width:575.98px) {
  body.internal-page .registration-section, body.internal-page .contact-section, body.internal-page .athlete-section {
    padding-top: 98px !important;
  }
  body.internal-page .hero-contact {
    padding: 84px 0 36px !important;
  }
  body.internal-page .athlete-hero {
    padding-top: 98px !important;
  }
}
/* Ajuste título do evento acima da imagem */
.event-title-banner {
  margin-bottom: 22px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .10);
}
.event-title-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 210, 0, .22), transparent 28%), linear-gradient(90deg, rgba(255, 210, 0, .10), transparent 45%);
  pointer-events: none;
}
.event-title-banner > * {
  position: relative;
  z-index: 2;
}
.event-title-banner .event-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.event-title-banner h1 {
  margin: 0;
  max-width: 100%;
  color: #fff;
  font-size: clamp(38px, 5.8vw, 74px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.event-title-banner p {
  max-width: 780px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}
.event-side-head {
  display: none !important;
}
.event-side-card {
  padding-top: 0 !important;
}
@media(max-width:575.98px) {
  .event-title-banner {
    border-radius: 24px;
    padding: 22px;
    margin-bottom: 16px;
  }
  .event-title-banner h1 {
    font-size: 38px;
  }
  .event-title-banner p {
    font-size: 14px;
  }
}
.event-left-column {
  min-width: 0;
}
/* =========================================================
   Correção definitiva da página de inscrição
   ========================================================= */
.registration-page {
  background: #fff
}
.registration-section {
  padding: 116px 0 56px !important;
  background: #fff !important;
  overflow: visible !important
}
.registration-top-title {
  margin-bottom: 24px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .10)
}
.registration-top-title:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 12%, rgba(255, 210, 0, .22), transparent 28%), linear-gradient(90deg, rgba(255, 210, 0, .10), transparent 45%);
  pointer-events: none
}
.registration-top-title > * {
  position: relative;
  z-index: 2
}
.registration-top-title span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px
}
.registration-top-title h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere
}
.registration-top-title p {
  max-width: 840px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650
}
.registration-shell-fixed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 30px;
  align-items: start
}
.registration-left, .registration-right {
  min-width: 0
}
.registration-right {
  position: sticky;
  top: 92px
}
.registration-main-carousel {
  width: 100%;
  max-width: 860px;
  height: auto;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .08);
  border: 1px solid var(--line);
  position: relative
}
.registration-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .45s ease
}
.registration-slide.active {
  position: relative;
  inset: auto;
  opacity: 1
}
.registration-slide img {
  width: 100%;
  height: auto;
  object-fit: contain
}
.registration-status {
  position: absolute;
  z-index: 5;
  left: 24px;
  top: 24px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(255, 210, 0, .26)
}
.registration-carousel-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .50);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px)
}
.registration-carousel-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  transition: .2s ease
}
.registration-carousel-dots button.active {
  width: 34px;
  background: var(--yellow)
}
.registration-side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .08);
  overflow: hidden
}
.registration-side-body {
  padding: 24px
}
.registration-info-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%
}
.registration-info-card {
  min-height: 126px;
  border: 2px solid #000;
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08)
}
.registration-info-card i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #000;
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 20px
}
.registration-info-card strong {
  display: block;
  color: #000;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}
.registration-info-card span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650
}
.registration-categories .categories-table thead th:last-child, .registration-categories .categories-table tbody td:last-child {
  display: none !important
}
.product-grid-registration {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important
}
.product-card-registration {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important
}
.product-cover {
  height: 300px !important;
  min-height: 300px !important;
  flex: 0 0 auto !important;
  background-size: cover !important;
  background-position: center !important
}
.product-info {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 24px !important
}
.product-info h3 {
  min-height: 56px;
  margin: 0 0 12px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.05 !important
}
.product-info p {
  min-height: 44px;
  margin: 0 0 18px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}
.product-price {
  margin-top: auto !important;
  margin-bottom: 18px !important
}
.qty-control {
  margin: 0 auto 18px !important
}
.product-info .btn-main {
  width: 100% !important;
  min-height: 52px
}
@media(max-width:1199.98px) {
  .registration-shell-fixed {
    grid-template-columns: 1fr
  }
  .registration-right {
    position: relative;
    top: auto
  }
  .registration-info-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
  .product-grid-registration {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }
}
@media(max-width:991.98px) {
  .registration-section {
    padding-top: 106px !important
  }
  .registration-main-carousel {
    height: auto
  }
}
@media(max-width:767.98px) {
  .registration-info-cards {
    grid-template-columns: 1fr
  }
  .product-grid-registration {
    grid-template-columns: 1fr !important
  }
  .registration-info-card strong {
    white-space: normal
  }
}
@media(max-width:575.98px) {
  .registration-section {
    padding-top: 98px !important;
    padding-bottom: 38px !important
  }
  .registration-top-title {
    border-radius: 24px;
    padding: 22px;
    margin-bottom: 16px
  }
  .registration-top-title h1 {
    font-size: 34px
  }
  .registration-top-title p {
    font-size: 14px
  }
  .registration-main-carousel {
    height: auto;
    border-radius: 24px
  }
  .registration-status {
    left: 16px;
    top: 16px;
    min-height: 34px;
    font-size: 11px
  }
  .registration-side-card {
    border-radius: 24px
  }
  .registration-side-body {
    padding: 18px
  }
  .countdown-grid {
    gap: 6px;
    padding: 12px
  }
  .countdown-item {
    min-height: 58px;
    border-radius: 15px
  }
  .countdown-item strong {
    font-size: 20px
  }
  .countdown-item span {
    font-size: 8px
  }
  .registration-info-card {
    min-height: 96px;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px
  }
  .registration-info-card i {
    width: 48px;
    height: 48px
  }
  .product-cover {
    height: 230px !important;
    min-height: 230px !important
  }
}
/* Redesign das categorias do evento */
.categories-card {
  display: none !important;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .07);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  transition: .22s ease;
}
.category-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 210, 0, .22), transparent 26%), linear-gradient(90deg, rgba(0, 0, 0, .03), transparent 50%);
  pointer-events: none;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: #000;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .11);
}
.category-card > * {
  position: relative;
  z-index: 2;
}
.category-main {
  min-width: 0;
}
.category-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  background: #000;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.category-main h3 {
  margin: 0 0 12px;
  color: #000;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 950;
  text-transform: uppercase;
}
.category-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.category-meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f5f5f4;
  color: #374151;
  font-size: 12px;
  font-weight: 800;
}
.category-meta i {
  color: #d59000;
}
.category-price {
  min-width: 150px;
  min-height: 126px;
  border-radius: 26px;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.category-price small {
  display: block;
  color: rgba(255, 255, 255, .60);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.category-price strong {
  display: block;
  color: var(--yellow);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.07em;
  font-weight: 950;
}
.category-price span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
  font-weight: 700;
}
.category-note {
  margin-top: 18px;
  border-radius: 24px;
  background: #000;
  color: #fff;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.category-note i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.category-note strong {
  display: block;
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.category-note span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}
@media(max-width:991.98px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
@media(max-width:575.98px) {
  .category-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 20px;
  }
  .category-main h3 {
    font-size: 22px;
  }
  .category-price {
    width: 100%;
    min-height: 104px;
    border-radius: 22px;
  }
  .category-note {
    align-items: flex-start;
    border-radius: 22px;
    padding: 18px;
  }
}
/* Categorias: tabela premium compacta para muitos itens */
.category-grid, .category-note {
  display: none !important;
}
.premium-categories {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .07);
}
.category-toolbar {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.category-tabs {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar {
  display: none;
}
.category-tab {
  min-height: 38px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 999px;
  background: #fff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}
.category-tab.active {
  background: #000;
  color: var(--yellow);
  border-color: #000;
}
.category-search {
  min-width: 260px;
  height: 42px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  background: #f7f7f6;
}
.category-search i {
  color: #d59000;
}
.category-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: #000;
}
.premium-table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.premium-category-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}
.premium-category-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #000;
  color: #fff;
  padding: 16px 18px;
  border: 0;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}
.premium-category-table tbody td {
  padding: 15px 18px;
  border-bottom: 1px solid #eef0f2;
  vertical-align: middle;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
}
.premium-category-table tbody tr:nth-child(even) {
  background: #fafafa;
}
.premium-category-table tbody tr:hover {
  background: rgba(255, 210, 0, .09);
}
.category-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
}
.category-mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #000;
  color: var(--yellow);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.category-mini-icon i {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow) !important;
  font-size: 16px;
  line-height: 1;
}
.category-name-cell strong {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
}
.category-name-cell span {
  display: flex;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
	align-content: center;
  justify-content: center;
}
.lot-badge, .age-badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}
.lot-badge {
  background: rgba(255, 210, 0, .18);
  color: #8a6900;
}
.age-badge {
  background: #f3f4f6;
  color: #374151;
}
.table-price {
  color: #d59000;
  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
}
.table-fee {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}
.table-status {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #168348;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}
.premium-category-footer {
  padding: 14px 18px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 650;
}
.premium-category-footer i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #000;
  flex: 0 0 auto;
}
@media(max-width:767.98px) {
  .premium-categories {
    border-radius: 24px;
  }
  .category-toolbar {
    display: grid;
    gap: 12px;
  }
  .category-search {
    width: 100%;
    min-width: 0;
  }
  .premium-category-table {
    min-width: 760px;
  }
  .premium-category-footer {
    align-items: flex-start;
    line-height: 1.45;
  }
}
/* Centralizar ícones de compartilhamento na lateral da inscrição */
.registration-side-body .event-share {
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
}
.registration-side-body .event-share a {
  flex: 0 0 auto;
}
/* Contagem regressiva inteligente */
.countdown-card.is-hidden {
  display: none !important;
}
.countdown-grid {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap;
}
.countdown-item {
  flex: 0 0 70px;
}
.countdown-item.is-hidden {
  display: none !important;
}
@media(max-width:575.98px) {
  .countdown-item {
    flex: 1 1 54px;
    max-width: 72px;
  }
}
/* Contagem regressiva sempre em uma linha */
.countdown-grid {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(0, 1fr) !important;
  grid-template-columns: none !important;
  gap: 8px !important;
  justify-content: stretch !important;
  align-items: stretch !important;
  flex-wrap: nowrap !important;
}
.countdown-item {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: unset !important;
  min-height: 66px;
  padding: 6px 2px;
}
.countdown-item strong {
  font-size: clamp(17px, 2.1vw, 24px) !important;
}
.countdown-item span {
  font-size: clamp(7px, .75vw, 9px) !important;
}
@media(max-width:575.98px) {
  .countdown-grid {
    gap: 5px !important;
    padding: 10px !important;
  }
  .countdown-item {
    min-height: 54px !important;
    border-radius: 14px !important;
  }
  .countdown-item strong {
    font-size: 18px !important;
  }
  .countdown-item span {
    font-size: 7px !important;
    letter-spacing: .02em !important;
  }
}
/* Status de inscrição - modelos prontos */
.registration-status {
  color: #000 !important;
}
.registration-status.status-open {
  background: #18c76f !important;
  color: #03140a !important;
  box-shadow: 0 14px 28px rgba(24, 199, 111, .28) !important;
}
.registration-status.status-soon {
  background: var(--yellow) !important;
  color: #000 !important;
  box-shadow: 0 14px 28px rgba(255, 210, 0, .26) !important;
}
.registration-status.status-closed {
  background: #ff3b30 !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(255, 59, 48, .28) !important;
}
.registration-status.status-closed i {
  color: #fff !important;
}
/* Home - cards de evento clicáveis com status */
.event-card-link {
  display: block;
  height: 100%;
  color: inherit;
}
.event-card-link:hover {
  color: inherit;
}
.event-card-link .event-card {
  cursor: pointer;
}
.event-card-link .btn-main {
  pointer-events: none;
}
.home-event-status {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}
.home-event-status.status-open {
  background: #18c76f;
  color: #03140a;
}
.home-event-status.status-soon {
  background: var(--yellow);
  color: #000;
}
.home-event-status.status-closed {
  background: #ff3b30;
  color: #fff;
}
.event-info .home-event-status i {
  color: currentColor;
  width: auto;
}
/* Home - status sobre a imagem mantendo data */
.event-cover {
  position: relative;
}
.event-cover .home-event-status {
  position: absolute;
  z-index: 4;
  left: 18px;
  bottom: 18px;
  min-height: 34px;
  padding: 0 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .20);
}
.event-cover .event-date {
  z-index: 5;
}
.event-body .home-event-status {
  display: none !important;
}
@media(max-width:575.98px) {
  .event-cover .home-event-status {
    left: 14px;
    bottom: 14px;
    min-height: 32px;
    font-size: 11px;
  }
}
/* Status padronizado no canto superior direito */
.event-cover .home-event-status {
  left: auto !important;
  right: 18px !important;
  top: 18px !important;
  bottom: auto !important;
  z-index: 6 !important;
}
.registration-status {
  left: auto !important;
  right: 24px !important;
  top: 24px !important;
  bottom: auto !important;
  z-index: 6 !important;
}
.event-cover .event-date {
  left: 18px !important;
  top: 18px !important;
  z-index: 6 !important;
}
@media(max-width:575.98px) {
  .event-cover .home-event-status {
    right: 14px !important;
    top: 14px !important;
    bottom: auto !important;
    max-width: calc(100% - 110px);
    white-space: normal;
    text-align: center;
    line-height: 1.1;
    padding: 7px 10px;
  }
  .registration-status {
    right: 16px !important;
    top: 16px !important;
    max-width: calc(100% - 32px);
  }
  .event-cover .event-date {
    left: 14px !important;
    top: 14px !important;
  }
}
/* Estado normal da home: logo grande com sombra externa */
body.page-home .site-header:not(.is-scrolled) {
  top: 34px !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
body.page-home .site-header:not(.is-scrolled) .header-inner {
  min-height: 86px !important;
  overflow: visible !important;
}
body.page-home .site-header:not(.is-scrolled) .brand {
  width: 230px !important;
  min-width: 230px !important;
  height: 104px !important;
  margin-top: -32px !important;
  margin-bottom: -32px !important;
  overflow: visible !important;
}
body.page-home .site-header:not(.is-scrolled) .brand .logo-full {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
  width: 210px !important;
  max-height: 118px !important;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .45)) !important;
}
body.page-home .site-header:not(.is-scrolled) .brand .logo-reduced {
  opacity: 0 !important;
  transform: translateY(-50%) scale(.92) !important;
}
body.page-home .site-header:not(.is-scrolled) .brand::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  left: 50%;
  bottom: -58px;
  width: 300px;
  height: 98px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .44) 32%, rgba(0, 0, 0, .18) 58%, rgba(0, 0, 0, 0) 82%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 1;
}
body.page-home .site-header:not(.is-scrolled) .brand img {
  z-index: 3;
}
/* Estado com scroll da home: menu compacto colado no topo + logo reduzido */
body.page-home .site-header.is-scrolled {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: rgba(0, 0, 0, .98) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28) !important;
}
body.page-home .site-header.is-scrolled .header-inner {
  min-height: 66px !important;
}
body.page-home .site-header.is-scrolled .brand {
  width: 175px !important;
  min-width: 175px !important;
  height: 78px !important;
  margin-top: -18px !important;
  margin-bottom: -18px !important;
  overflow: visible !important;
}
body.page-home .site-header.is-scrolled .brand .logo-full {
  opacity: 0 !important;
  transform: translateY(-50%) scale(.96) !important;
  width: 158px !important;
  max-height: 90px !important;
}
body.page-home .site-header.is-scrolled .brand .logo-reduced {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
  width: 158px !important;
  max-height: 90px !important;
}
body.page-home .site-header.is-scrolled .brand::before, body.page-home .site-header.is-scrolled .brand::after {
  display: none !important;
}
@media(max-width:991.98px) {
  body.page-home .site-header:not(.is-scrolled) {
    top: 18px !important;
    left: 12px !important;
    right: 12px !important;
    border-radius: 24px !important;
  }
  body.page-home .site-header:not(.is-scrolled) .header-inner {
    min-height: 72px !important;
  }
  body.page-home .site-header:not(.is-scrolled) .brand {
    width: 154px !important;
    min-width: 154px !important;
    height: 92px !important;
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }
  body.page-home .site-header:not(.is-scrolled) .brand .logo-full {
    width: 145px !important;
    max-height: 100px !important;
  }
  body.page-home .site-header:not(.is-scrolled) .brand::after {
    bottom: -42px;
    width: 210px;
    height: 72px;
    filter: blur(15px);
  }
  body.page-home .site-header.is-scrolled {
    top: 8px !important;
    left: 12px !important;
    right: 12px !important;
    border-radius: 24px !important;
  }
  body.page-home .site-header.is-scrolled .header-inner {
    min-height: 64px !important;
  }
  body.page-home .site-header.is-scrolled .brand {
    width: 128px !important;
    min-width: 128px !important;
    height: 74px !important;
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }
  body.page-home .site-header.is-scrolled .brand .logo-full, body.page-home .site-header.is-scrolled .brand .logo-reduced {
    width: 118px !important;
    max-height: 76px !important;
  }
}
@media(max-width:575.98px) {
  body.page-home .site-header:not(.is-scrolled) {
    top: 14px !important;
    left: 10px !important;
    right: 10px !important;
    border-radius: 22px !important;
  }
  body.page-home .site-header:not(.is-scrolled) .brand {
    width: 132px !important;
    min-width: 132px !important;
    height: 84px !important;
  }
  body.page-home .site-header:not(.is-scrolled) .brand .logo-full {
    width: 126px !important;
    max-height: 90px !important;
  }
  body.page-home .site-header:not(.is-scrolled) .brand::after {
    bottom: -36px;
    width: 180px;
    height: 58px;
    filter: blur(13px);
  }
}
/* HEADER FINAL HOME */
body.page-home .site-header {
  top: 34px;
}
body.page-home .site-header:not(.is-scrolled) {
  left: 0;
  right: 0;
  border-radius: 0;
  overflow: visible;
}
body.page-home .site-header:not(.is-scrolled) .header-inner {
  min-height: 86px;
  overflow: visible;
}
body.page-home .site-header:not(.is-scrolled) .brand {
  width: 230px;
  min-width: 230px;
  height: 104px;
  margin-top: -32px;
  margin-bottom: -32px;
  overflow: visible;
}
body.page-home .site-header:not(.is-scrolled) .brand .logo-full {
  opacity: 1;
  width: 210px;
  max-height: 118px;
  transform: translateY(-50%) scale(1);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .45));
}
body.page-home .site-header:not(.is-scrolled) .brand .logo-reduced {
  opacity: 0;
  transform: translateY(-50%) scale(.92);
}
body.page-home .site-header:not(.is-scrolled) .brand:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -46px;
  width: 270px;
  height: 78px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .40) 35%, rgba(0, 0, 0, .16) 60%, rgba(0, 0, 0, 0) 82%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 1;
}
body.page-home .site-header:not(.is-scrolled) .brand img {
  z-index: 3;
}
body.page-home .site-header.is-scrolled {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0 !important;
  background: rgba(0, 0, 0, .98) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28) !important;
  overflow: visible !important;
}
body.page-home .site-header.is-scrolled .header-inner {
  min-height: 66px !important;
}
body.page-home .site-header.is-scrolled .brand {
  width: 175px !important;
  min-width: 175px !important;
  height: 78px !important;
  margin-top: -18px !important;
  margin-bottom: -18px !important;
}
body.page-home .site-header.is-scrolled .brand .logo-full {
  opacity: 0 !important;
  width: 158px !important;
  max-height: 90px !important;
  transform: translateY(-50%) scale(.96) !important;
}
body.page-home .site-header.is-scrolled .brand .logo-reduced {
  opacity: 1 !important;
  width: 158px !important;
  max-height: 90px !important;
  transform: translateY(-50%) scale(1) !important;
}
body.page-home .site-header.is-scrolled .brand:before, body.page-home .site-header.is-scrolled .brand:after {
  display: none !important;
}
.hero-home {
  overflow: hidden !important;
}
.hero-dots {
  bottom: 24px !important;
  z-index: 30 !important;
}
.search-strip {
  margin-top: -34px !important;
  z-index: 10 !important;
}
.hero-arrow {
  position: absolute;
  z-index: 31;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(0, 0, 0, .46);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  transition: .2s ease;
}
.hero-arrow:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}
.hero-arrow.prev {
  left: 28px
}
.hero-arrow.next {
  right: 28px
}
@media(max-width:991.98px) {
  body.page-home .site-header:not(.is-scrolled) {
    top: 18px;
    left: 12px;
    right: 12px;
    border-radius: 24px;
  }
  body.page-home .site-header:not(.is-scrolled) .header-inner {
    min-height: 72px;
  }
  body.page-home .site-header:not(.is-scrolled) .brand {
    width: 154px;
    min-width: 154px;
    height: 92px;
    margin-top: -24px;
    margin-bottom: -24px;
  }
  body.page-home .site-header:not(.is-scrolled) .brand .logo-full {
    width: 145px;
    max-height: 100px;
  }
  body.page-home .site-header:not(.is-scrolled) .brand:after {
    bottom: -34px;
    width: 190px;
    height: 60px;
    filter: blur(13px);
  }
  body.page-home .site-header.is-scrolled {
    top: 8px !important;
    left: 12px !important;
    right: 12px !important;
    border-radius: 24px !important;
  }
  body.page-home .site-header.is-scrolled .header-inner {
    min-height: 64px !important;
  }
  body.page-home .site-header.is-scrolled .brand {
    width: 128px !important;
    min-width: 128px !important;
    height: 74px !important;
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }
  body.page-home .site-header.is-scrolled .brand .logo-full, body.page-home .site-header.is-scrolled .brand .logo-reduced {
    width: 118px !important;
    max-height: 76px !important
  }
  .hero-arrow {
    width: 46px;
    height: 46px
  }
  .hero-arrow.prev {
    left: 16px
  }
  .hero-arrow.next {
    right: 16px
  }
}
@media(max-width:575.98px) {
  body.page-home .site-header:not(.is-scrolled) {
    top: 14px;
    left: 10px;
    right: 10px;
    border-radius: 22px;
  }
  body.page-home .site-header:not(.is-scrolled) .brand {
    width: 132px;
    min-width: 132px;
    height: 84px;
  }
  body.page-home .site-header:not(.is-scrolled) .brand .logo-full {
    width: 126px;
    max-height: 90px;
  }
  body.page-home .site-header:not(.is-scrolled) .brand:after {
    bottom: -30px;
    width: 160px;
    height: 50px;
    filter: blur(12px)
  }
  .hero-dots {
    bottom: 18px !important
  }
  .hero-arrow {
    width: 42px;
    height: 42px
  }
  .hero-arrow.prev {
    left: 10px
  }
  .hero-arrow.next {
    right: 10px
  }
}
#siteHeader.site-header.scrolled {
  background: rgba(0, 0, 0, .98) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}
.menu-toggle {
  display: flex;
}
body.internal-page main {
  min-height: calc(100vh - 320px);
}

/* Mobile final pass */
@media(max-width:767.98px) {
  html, body {
    overflow-x: hidden !important;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .site-header,
  body.page-home .site-header,
  body.page-home .site-header:not(.is-scrolled),
  body.page-home .site-header.is-scrolled {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
  }

  .header-inner,
  .site-header.is-scrolled .header-inner,
  body.page-home .site-header:not(.is-scrolled) .header-inner,
  body.page-home .site-header.is-scrolled .header-inner {
    min-height: 60px !important;
    padding: 0 10px !important;
    gap: 10px !important;
  }

  .brand,
  .site-header.is-scrolled .brand,
  body.page-home .site-header:not(.is-scrolled) .brand,
  body.page-home .site-header.is-scrolled .brand {
    width: 116px !important;
    min-width: 116px !important;
    height: 60px !important;
    margin: 0 !important;
  }

  .brand img,
  .site-header.is-scrolled .brand .logo-full,
  .site-header.is-scrolled .brand .logo-reduced,
  body.page-home .site-header:not(.is-scrolled) .brand .logo-full,
  body.page-home .site-header.is-scrolled .brand .logo-full,
  body.page-home .site-header.is-scrolled .brand .logo-reduced {
    width: 108px !important;
    max-height: 52px !important;
    transform: translateY(-50%) scale(1) !important;
  }

  body.page-home .site-header:not(.is-scrolled) .brand:before,
  body.page-home .site-header:not(.is-scrolled) .brand:after,
  body.page-home .site-header.is-scrolled .brand:before,
  body.page-home .site-header.is-scrolled .brand:after {
    display: none !important;
  }

  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    border-radius: 13px !important;
    font-size: 18px !important;
  }

  .mobile-panel {
    padding: 0 10px 12px !important;
  }

  .mobile-panel nav {
    gap: 6px !important;
  }

  .mobile-panel a {
    min-height: 44px !important;
    border-radius: 12px !important;
    padding: 0 13px !important;
    font-size: 13px !important;
  }

  .btn-main {
    min-height: 46px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero-home {
    height: 320px !important;
    min-height: 320px !important;
  }

  .hero-arrow {
    display: none !important;
  }

  .hero-dots {
    bottom: 14px !important;
    padding: 7px !important;
  }

  .search-strip {
    margin-top: -18px !important;
    padding-bottom: 40px !important;
  }

  .search-card {
    border-radius: 20px !important;
    padding: 16px !important;
  }

  .search-head strong,
  .section-title h2,
  .event-body h3,
  .hero-contact h1,
  .contact-card h2,
  .registration-top-title h1,
  body.pagamento .title-section h2 {
    letter-spacing: 0 !important;
  }

  .search-head strong {
    font-size: 22px !important;
  }

  .search-field {
    min-height: 58px !important;
    border-radius: 18px !important;
  }

  .search-button,
  .btn-main {
    width: 100%;
  }

  .header-actions .btn-main {
    width: auto !important;
    padding: 0 16px !important;
  }

  .section-title {
    margin-bottom: 22px !important;
  }

  .section-title h2 {
    font-size: 30px !important;
    line-height: 1 !important;
  }

  .event-card {
    border-radius: 22px !important;
  }

  .event-cover {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
  }

  .event-date {
    left: 12px !important;
    top: 12px !important;
    width: 58px !important;
    height: 58px !important;
    border-radius: 16px !important;
  }

  .event-date strong {
    font-size: 22px !important;
  }

  .event-date span {
    font-size: 9px !important;
  }

  .event-cover .home-event-status {
    top: 12px !important;
    right: 12px !important;
    max-width: calc(100% - 88px) !important;
    min-height: 32px !important;
    padding: 0 10px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    white-space: normal !important;
  }

  .event-body {
    padding: 18px !important;
  }

  .event-body h3 {
    font-size: 19px !important;
    line-height: 1.1 !important;
  }

  body.internal-page .hero-contact,
  .hero-contact {
    min-height: auto !important;
    padding: 88px 0 36px !important;
    align-items: flex-start !important;
  }

  .contact-kicker {
    min-height: 30px !important;
    margin-bottom: 14px !important;
    font-size: 10px !important;
  }

  .hero-contact h1 {
    font-size: 34px !important;
    line-height: .96 !important;
  }

  .hero-contact p,
  body.page-contact .hero-contact p {
    max-width: 100% !important;
    margin-top: 16px !important;
    white-space: normal !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .contact-section {
    padding: 38px 0 !important;
  }

  .contact-card {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .contact-card h2 {
    font-size: 25px !important;
    line-height: 1.04 !important;
  }

  .contact-submit {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  .contact-info-item {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 15px !important;
    border-radius: 18px !important;
  }

  .contact-info-icon {
    width: 42px !important;
    height: 42px !important;
  }

  .faq-accordion {
    gap: 10px !important;
  }

  .faq-accordion .faq-item {
    border-radius: 18px !important;
  }

  .faq-accordion .accordion-button {
    min-height: 56px !important;
    padding: 15px 16px !important;
    font-size: 14px !important;
  }

  .faq-accordion .accordion-body {
    padding: 16px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .registration-section {
    padding-top: 78px !important;
    padding-bottom: 36px !important;
  }

  .registration-top-title {
    border-radius: 22px !important;
    padding: 20px 18px !important;
    margin-bottom: 16px !important;
  }

  .registration-top-title span {
    min-height: 30px !important;
    font-size: 10px !important;
    margin-bottom: 12px !important;
  }

  .registration-top-title h1 {
    font-size: 30px !important;
    line-height: .96 !important;
    overflow-wrap: anywhere !important;
  }

  .registration-top-title p {
    margin-top: 12px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .registration-shell-fixed,
  .registration-shell {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .registration-main-carousel {
    max-width: 100% !important;
    border-radius: 20px !important;
  }

  .registration-status {
    left: 12px !important;
    top: 12px !important;
    max-width: calc(100% - 24px) !important;
    min-height: 32px !important;
    padding: 0 11px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    white-space: normal !important;
  }

  .registration-carousel-dots {
    bottom: 10px !important;
    padding: 6px !important;
  }

  .registration-side-card {
    border-radius: 22px !important;
  }

  .registration-side-body {
    padding: 16px !important;
  }

  .registration-info-card {
    min-height: auto !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .registration-info-card i {
    width: 44px !important;
    height: 44px !important;
  }

  .premium-categories {
    border-radius: 22px !important;
  }

  .category-toolbar {
    padding: 14px !important;
    display: grid !important;
    gap: 12px !important;
  }

  .category-tabs {
    width: 100% !important;
  }

  .category-search {
    width: 100% !important;
    min-width: 0 !important;
  }

  .premium-table-wrap {
    overflow: visible !important;
  }

  .premium-category-table,
  .premium-category-table thead,
  .premium-category-table tbody,
  .premium-category-table tr,
  .premium-category-table th,
  .premium-category-table td {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .premium-category-table thead {
    display: none !important;
  }

  .premium-category-table tbody tr {
    padding: 14px !important;
    border-bottom: 1px solid #eef0f2 !important;
  }

  .premium-category-table tbody tr:last-child {
    border-bottom: 0 !important;
  }

  .premium-category-table tbody td {
    padding: 6px 0 !important;
    border-bottom: 0 !important;
  }

  .category-name-cell {
    min-width: 0 !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .category-mini-icon {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .category-name-cell strong {
    font-size: 14px !important;
  }

  .table-price {
    display: inline-block !important;
    margin-top: 2px !important;
  }

  .premium-category-footer {
    padding: 14px !important;
    align-items: flex-start !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body.pagamento .py-20 {
    padding-top: 86px !important;
    padding-bottom: 36px !important;
  }

  body.pagamento .title-section {
    margin-bottom: 24px !important;
  }

  body.pagamento .title-section h2 {
    font-size: 26px !important;
    line-height: 1.12 !important;
  }

  body.pagamento .card {
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  body.pagamento .card-body {
    padding: 18px !important;
  }

  body.pagamento .card-body > .d-flex.align-items-center.justify-content-between {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  body.pagamento .input-group {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  body.pagamento .input-group > .form-floating,
  body.pagamento .input-group > .btn {
    width: 100% !important;
  }

  body.pagamento #formasPagamento {
    gap: 8px !important;
  }

  body.pagamento #formasPagamento .nav-item,
  body.pagamento #formasPagamento .nav-link {
    width: 100% !important;
  }

  body.pagamento .card-wrapper {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.pagamento .produto-thumb {
    width: 100% !important;
    max-width: 170px !important;
  }
}

@media(max-width:575.98px) {
  .hero-home {
    height: 300px !important;
    min-height: 300px !important;
  }

  .section-title h2 {
    font-size: 28px !important;
  }

  .registration-top-title h1,
  .hero-contact h1 {
    font-size: 30px !important;
  }

  .map-box {
    height: 240px !important;
    border-radius: 22px !important;
  }
}
