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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #f8fafc;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 45%), radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.12), transparent 55%), linear-gradient(160deg, #040b1a 0%, #081734 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  color-scheme: dark;
  transition: background 260ms ease, color 200ms ease;
}

main {
  padding-top: clamp(9rem, 20vw, 13.5rem);
}

@media (max-width: 640px) {
  main {
    padding-top: clamp(7.5rem, 24vw, 10rem);
  }
}

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

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

ul {
  padding-left: 1.2rem;
}

.container {
  width: min(100% - 3rem, 1160px);
  margin-inline: auto;
}

.bubble-container {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bubble-container span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(125, 211, 252, 0.45);
  box-shadow: inset 0 0 18px rgba(56, 189, 248, 0.2), 0 0 32px rgba(37, 99, 235, 0.18);
  opacity: 0;
  animation: bubbleRise var(--duration, 30s) linear infinite;
  animation-delay: var(--delay, 0s);
  filter: blur(0.5px);
}

@keyframes bubbleRise {
  0% {
    transform: translateY(10vh) scale(0.6);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    transform: translateY(-110vh) scale(1.2);
    opacity: 0;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.75rem;
  border-radius: 999px;
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease, background-color 250ms ease;
  cursor: pointer;
  border: none;
  position: relative;
  font-size: 1rem;
}

.button:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.65);
  outline-offset: 3px;
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button--primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #f8fafc;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.3);
}

.button--primary:hover {
  background: linear-gradient(135deg, #2b6df1, #4b8ffc);
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.42);
  transform: translateY(-3px);
}

.button--outline {
  background: transparent;
  border: 1px solid rgba(56, 189, 248, 0.6);
  color: #f8fafc;
}

.button--outline:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.9);
  transform: translateY(-3px);
}

.button--pulse {
  animation: pulse 4s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.45);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(56, 189, 248, 0);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 1.75rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(5, 12, 28, 0.92) 0%, rgba(5, 14, 32, 0.78) 65%, rgba(5, 14, 32, 0) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: padding 260ms ease, backdrop-filter 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100% - 3rem, 1160px);
  height: 1px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.25), rgba(14, 165, 233, 0.1));
  opacity: 0.75;
}

.site-header--compact {
  padding: 0.9rem 0 1.2rem;
  background: linear-gradient(180deg, rgba(4, 11, 26, 0.92) 0%, rgba(4, 11, 26, 0.92) 100%);
  box-shadow: 0 18px 35px rgba(4, 11, 26, 0.45);
}

@media (max-width: 640px) {
  .site-header {
    padding: 1.25rem 0 1.75rem;
  }

  .site-header--compact {
    padding: 0.75rem 0 1.1rem;
  }
}

.hero-section {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(3rem, 9vw, 5.5rem);
}

.hero__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  width: min(100% - 3rem, 1160px);
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  border-radius: 999px;
  background: rgba(12, 27, 55, 0.25);
  border: 1px solid rgba(96, 165, 250, 0.15);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  position: relative;
  z-index: 10;
  transition: padding 200ms ease, border-color 200ms ease, background 200ms ease;
}

.hero__nav--form {
  justify-content: space-between;
}

.hero__back-button {
  min-width: 0;
  padding: 0.85rem 1.9rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.hero__nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero__nav {
    padding: 0.85rem 1.25rem;
    gap: 0.75rem;
  }

  .hero__nav-actions {
    gap: 0.75rem;
  }

  .hero__nav--form {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__back-button {
    width: 100%;
    justify-content: center;
  }
}

.site-header--compact .hero__nav {
  padding: 1.05rem 1.35rem;
  background: rgba(12, 27, 55, 0.45);
  border-color: rgba(96, 165, 250, 0.28);
}

.hero__brand-text {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(248, 250, 252, 0.85);
  transition: color 200ms ease;
}

.hero__brand:hover .hero__brand-text {
  color: #f8fafc;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  min-width: 0;
}

.hero__brand-logo-wrapper {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 128px;
  height: 92px;
  transform: translateY(-18px);
  transition: transform 260ms ease, width 260ms ease, height 260ms ease;
  filter: drop-shadow(0 20px 40px rgba(8, 16, 35, 0.55));
}

.hero__brand-logo {
  width: 100%;
  height: auto;
  transition: transform 260ms ease;
}

.site-header--compact .hero__brand-logo-wrapper {
  width: 68px;
  height: 68px;
  transform: translateY(0);
  filter: drop-shadow(0 12px 26px rgba(8, 16, 35, 0.45));
}

.site-header--compact .hero__brand-logo {
  transform: scale(0.92);
}

@media (max-width: 640px) {
  .hero__brand-logo-wrapper {
    width: 85px;
    height: 74px;
    transform: translateY(0px);
  }

  .site-header--compact .hero__brand-logo-wrapper {
    width: 60px;
    height: 60px;
  }

  .hero__brand-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
}

.hero__nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero__nav-links .theme-toggle {
  margin-left: 1.75rem;
}

.hero__nav-links a {
  position: relative;
  padding: 0.25rem 0;
}

.hero__nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.8), rgba(37, 99, 235, 0.8));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.hero__nav-links a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 640px) {
  .hero__nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(12, 27, 55, 0.65);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    min-width: 220px;
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .hero__nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    background: rgba(7, 18, 44, 0.96);
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 26px 48px rgba(7, 18, 44, 0.45);
  }

  .hero__nav-links .theme-toggle {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
    justify-content: center;
    padding: 0.6rem 0 0;
    border-top: 1px solid rgba(59, 130, 246, 0.25);
  }
}

.hero__menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.35rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.hero__menu-button span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 999px;
  background-color: rgba(56, 189, 248, 0.9);
  background-image: linear-gradient(90deg, rgba(56, 189, 248, 0.9), rgba(37, 99, 235, 0.9));
  transition: transform 200ms ease, opacity 200ms ease;
}

@media (max-width: 640px) {
  .hero__menu-button {
    display: flex;
  }
}

.hero__menu-button.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hero__menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.hero__menu-button.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 999px;
  transition: filter 200ms ease, transform 200ms ease;
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.65);
  outline-offset: 4px;
}

.theme-toggle__track {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 1.7rem;
  border-radius: 999px;
  padding: 0 0.45rem;
  background: rgba(11, 30, 60, 0.75);
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.18);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.theme-toggle__thumb {
  position: absolute;
  top: 50%;
  left: 0.45rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.4);
  transform: translate(0, -50%);
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.theme-toggle__icon {
  position: absolute;
  top: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  transform: translateY(-50%) scale(0.95);
  opacity: 0.55;
  transition: opacity 200ms ease, transform 200ms ease;
}

.theme-toggle__icon--sun {
  left: 0.55rem;
  background: radial-gradient(circle at 50% 50%, #fde68a 0%, #facc15 55%, #f97316 100%);
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.45);
}

.theme-toggle__icon--moon {
  right: 0.55rem;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #cbd5f5 45%, #94a3b8 100%);
  box-shadow: 0 0 8px rgba(148, 163, 184, 0.4);
  opacity: 0.85;
  transform: translateY(-50%) scale(1);
}

.theme-toggle:hover .theme-toggle__thumb {
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.42);
}

.hero__banner {
  width: min(100% - 3rem, 1160px);
  margin: 0 auto;
  padding: 4.25rem 3.75rem;
  background: rgba(12, 27, 55, 0.42);
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 30px;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  box-shadow: 0 38px 80px rgba(8, 18, 40, 0.55);
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 1fr);
  gap: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(59, 130, 246, 0.35), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.18), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero__banner {
    grid-template-columns: 1fr;
    padding: 3.25rem 2.5rem;
    gap: 2.25rem;
  }
}

@media (max-width: 640px) {
  .hero__banner {
    width: min(100% - 2rem, 1160px);
    padding: 2.75rem 1.75rem;
  }
}

.hero__banner-main {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .hero__banner-main {
    gap: 1.75rem;
  }
}

.hero__banner-copy {
  display: grid;
  gap: 1.75rem;
  max-width: 520px;
}

.hero__banner-copy h1 {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2.85rem, 4.5vw, 4.1rem);
  line-height: 1.08;
  margin: 0;
}

.hero__subtitle {
  color: #93adc7;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.7);
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__banner-details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  align-content: start;
}

@media (max-width: 640px) {
  .hero__banner-details {
    gap: 1.25rem;
  }
}

.hero__detail-card {
  padding: 1.9rem;
  border-radius: 20px;
  background: rgba(8, 20, 44, 0.88);
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 20px 45px rgba(7, 12, 28, 0.35);
  display: grid;
  gap: 0.85rem;
}

.hero__detail-card h3 {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.25rem;
  color: #f8fafc;
}

.hero__detail-card p {
  margin: 0;
  color: #93adc7;
  line-height: 1.65;
  font-size: 0.98rem;
}

.hero__detail-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(148, 163, 184, 0.65);
}

.hero__detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: #93adc7;
  font-size: 0.96rem;
  line-height: 1.6;
}

.hero__detail-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.hero__detail-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(56, 189, 248, 0.85));
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
  flex-shrink: 0;
}

.hero__detail-card--highlight {
  background: linear-gradient(135deg, rgba(12, 27, 55, 0.9), rgba(37, 99, 235, 0.38));
  border-color: rgba(59, 130, 246, 0.4);
  grid-column: 1 / -1;
}

.hero-section,
.section {
  scroll-margin-top: clamp(8rem, 18vw, 12rem);
}

.section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

.section--highlight .container {
  background: rgba(12, 27, 55, 0.32);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  padding: 3.5rem;
  box-shadow: 0 30px 70px rgba(8, 22, 48, 0.4);
}

@media (max-width: 640px) {
  .section--highlight .container {
    padding: 2.5rem 1.8rem;
  }
}

.section--inverse {
  background: rgba(11, 22, 44, 0.65);
}

.section--support .section__header,
.section--speakers .section__header {
  max-width: 760px;
}

.support-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.75rem;
  padding: 3.5rem;
  border-radius: 26px;
  background: rgba(8, 22, 48, 0.88);
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: 0 28px 65px rgba(5, 12, 28, 0.45);
}

.support-card__content {
  display: grid;
  gap: 1.5rem;
  max-width: 640px;
}

.support-card__content h3 {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.35rem;
}

.support-card__content p {
  margin: 0;
  color: #93adc7;
  line-height: 1.7;
  font-size: 1.02rem;
}

.support-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: #e2e8f0;
  font-size: 0.98rem;
}

.support-card__list li {
  position: relative;
  padding-left: 1.4rem;
}

.support-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(56, 189, 248, 0.85));
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.45);
}

.support-card__pix {
  margin-top: 0.5rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  padding: 0.85rem 1.2rem;
  border-radius: 14px;
  background: rgba(13, 34, 70, 0.75);
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.18);
}

.support-card__pix-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: rgba(148, 163, 184, 0.85);
}

.support-card__pix-key {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: #f8fafc;
  word-break: break-all;
}

.support-card__cta {
  align-self: center;
  flex-shrink: 0;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2rem;
}

@media (max-width: 900px) {
  .support-card {
    flex-direction: column;
    padding: 3rem;
  }

  .support-card__cta {
    align-self: flex-start;
  }

  .speakers-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  .support-card {
    padding: 2.5rem 1.75rem;
    gap: 2rem;
  }

  .support-card__cta {
    width: 100%;
  }

  .support-card__pix {
    width: 100%;
    justify-content: space-between;
  }

  .speakers-grid {
    gap: 1.5rem;
  }
}

.speaker-card {
  display: grid;
  gap: 1.5rem;
  padding: 2.4rem;
  border-radius: 22px;
  background: rgba(9, 22, 46, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.24);
  box-shadow: 0 26px 56px rgba(7, 12, 28, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 70px rgba(7, 12, 28, 0.45);
  border-color: rgba(56, 189, 248, 0.35);
}

.speaker-card__media {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(59, 130, 246, 0.45), rgba(14, 165, 233, 0.25));
  border: 2px solid rgba(148, 163, 184, 0.35);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(7, 18, 44, 0.45);
}

.speaker-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-card__content {
  display: grid;
  gap: 0.75rem;
}

.speaker-card__content h3 {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.25rem;
  color: #f8fafc;
}

.speaker-card__content p {
  margin: 0;
  color: #93adc7;
  line-height: 1.65;
  font-size: 1rem;
}

.section--gallery {
  background: radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.25), transparent 55%), radial-gradient(circle at 82% 12%, rgba(14, 165, 233, 0.22), transparent 50%);
  overflow: hidden;
}

.section--gallery .section__header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .section--gallery .container {
    width: min(100% - 3rem, 1360px);
  }

  .section--gallery .gallery-carousel {
    --gallery-card-ratio: 10 / 9;
  }
}

.gallery-carousel {
  position: relative;
  padding: clamp(1rem, 2vw, 1.5rem);
  --gallery-gap: clamp(0.85rem, 2vw, 1.35rem);
  isolation: isolate;
}

.gallery-carousel__viewport {
  overflow: hidden;
  border-radius: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid rgba(59, 130, 246, 0.32);
  background: rgba(3, 10, 24, 0.85);
  box-shadow: 0 36px 80px rgba(4, 11, 26, 0.6);
  padding: clamp(1rem, 2.5vw, 1.75rem);
}

.gallery-carousel__track {
  display: flex;
  gap: var(--gallery-gap);
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 480ms ease;
  will-change: transform;
}

.gallery-carousel__slide {
  flex: 0 0 calc((100% - (var(--gallery-gap) * 2)) / 3);
  min-width: 0;
}

@media (max-width: 1024px) {
  .gallery-carousel__slide {
    flex-basis: calc((100% - var(--gallery-gap)) / 2);
  }
}

@media (max-width: 640px) {
  .section--gallery .section__header {
    text-align: left;
  }

  .gallery-carousel__slide {
    flex-basis: 100%;
  }
}

.gallery-card {
  position: relative;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  aspect-ratio: var(--gallery-card-ratio, 4 / 3);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.45), rgba(14, 165, 233, 0.35));
  box-shadow: 0 24px 60px rgba(5, 12, 28, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.55), rgba(2, 6, 23, 0.1));
  opacity: 0.35;
  transition: opacity 260ms ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
  max-width: 110%;
  max-height: 110%;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card:hover::after {
  opacity: 0.18;
}

.gallery-carousel__controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  pointer-events: none;
  z-index: 2;
}

.gallery-carousel__control {
  position: relative;
  width: clamp(3rem, 3.8vw, 3.8rem);
  height: clamp(3rem, 3.8vw, 3.8rem);
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, rgba(2, 10, 24, 0.95), rgba(15, 23, 42, 0.85));
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 180ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  pointer-events: auto;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-carousel__control::after {
  content: '';
  position: absolute;
  inset: -0.4rem;
  border-radius: inherit;
  border: 1px solid rgba(59, 130, 246, 0.35);
  opacity: 0.8;
  transition: opacity 200ms ease, transform 200ms ease;
}

.gallery-carousel__control span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
}

.gallery-carousel__control:hover {
  background: linear-gradient(135deg, rgba(14, 23, 42, 0.95), rgba(37, 99, 235, 0.75));
  color: #e0f2fe;
  transform: translateY(-2px) scale(1.02);
}

.gallery-carousel__control:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.35);
}

.gallery-carousel__control:focus-visible::after,
.gallery-carousel__control:hover::after {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .gallery-carousel__controls {
    padding: 0 clamp(0.5rem, 2vw, 1rem);
  }
}

@media (max-width: 768px) {
  .gallery-carousel {
    padding-inline: 0;
  }

  .gallery-carousel__viewport {
    padding: 1rem;
    border-radius: 1.5rem;
  }

  .gallery-carousel__controls {
    position: static;
    margin-top: 1.25rem;
    justify-content: center;
    gap: 1rem;
    pointer-events: auto;
  }
}

.section--cta {
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.12), transparent 65%);
}

.section--form {
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1), transparent 70%);
}

.form-card {
  background: rgba(8, 22, 48, 0.92);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 26px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 32px 80px rgba(5, 12, 28, 0.46);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.form-card__header {
  display: grid;
  gap: 0.75rem;
}

.form-card__header h2 {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
}

.form-card__header p {
  margin: 0;
  color: #93adc7;
  line-height: 1.8;
  font-size: 1.02rem;
}

.registration-form {
  display: grid;
  gap: 1.5rem;
}

.registration-form .button {
  justify-self: start;
}

@media (max-width: 640px) {
  .registration-form .button {
    width: 100%;
  }

  .modal__content {
    width: min(100% - 1.5rem, 420px);
    padding: 1.6rem;
  }

  .modal__actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.form__field {
  display: grid;
  gap: 0.6rem;
}

.form__field label {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
}

.form__required-badge {
  color: #f87171;
  font-size: 0.9rem;
  margin-left: 0.25rem;
  font-weight: 600;
}

.form__field--invalid input {
  border-color: rgba(248, 113, 113, 0.75);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.25);
}

.form__field--invalid input:focus-visible {
  border-color: rgba(248, 113, 113, 0.9);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.35);
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"],
.registration-form input[type="number"] {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(7, 16, 34, 0.78);
  color: #f8fafc;
  font-size: 1rem;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease, transform 200ms ease;
}

.registration-form input[type="text"]:focus-visible,
.registration-form input[type="email"]:focus-visible,
.registration-form input[type="tel"]:focus-visible,
.registration-form input[type="number"]:focus-visible {
  outline: none;
  border-color: rgba(59, 130, 246, 0.85);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.32);
  background: rgba(7, 16, 34, 0.94);
  transform: translateY(-1px);
}

.registration-form input[type="number"]::-webkit-inner-spin-button,
.registration-form input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.registration-form input[type="number"] {
  -moz-appearance: textfield;
}

.form__hint {
  margin: -0.35rem 0 0;
  color: rgba(148, 163, 184, 0.78);
  font-size: 0.88rem;
}

.form__fieldset {
  margin: 0;
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  background: rgba(7, 16, 34, 0.8);
  display: grid;
  gap: 1.1rem;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.05);
}

.form__fieldset legend {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  padding: 0 0.35rem;
  color: #f8fafc;
}

.form__fieldset--invalid {
  border-color: rgba(248, 113, 113, 0.65);
  box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.2);
}

.form__fieldset--invalid .form__option {
  border-color: rgba(248, 113, 113, 0.35);
}

.form__options {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form__option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: rgba(4, 12, 28, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.16);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease, transform 200ms ease;
  cursor: pointer;
}

.form__option:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(7, 18, 40, 0.9);
  box-shadow: 0 18px 40px rgba(4, 12, 28, 0.45);
  transform: translateY(-2px);
}

.form__option input[type="radio"] {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #3b82f6;
  flex-shrink: 0;
}

.form__option span {
  color: #e2e8f0;
  font-size: 0.98rem;
}

.form__option--inline {
  width: fit-content;
}

.form__field--nested {
  margin-top: 0.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: 16px;
  background: rgba(4, 12, 28, 0.72);
  border: 1px dashed rgba(148, 163, 184, 0.28);
  gap: 0.55rem;
}

.form__field[hidden],
.form__message[hidden] {
  display: none !important;
}

.form__fieldset--captcha {
  display: grid;
  gap: 0.75rem;
}

.form__captcha {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form__captcha input {
  flex: 1;
}

.form__captcha-refresh {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background: rgba(4, 12, 28, 0.85);
  color: #93c5fd;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.form__captcha-refresh:hover {
  border-color: rgba(96, 165, 250, 0.6);
  background: rgba(7, 18, 40, 0.95);
  color: #bfdbfe;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(4, 12, 28, 0.45);
}

.form__captcha-refresh:focus-visible {
  outline: none;
  border-color: rgba(59, 130, 246, 0.85);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.form__captcha-refresh span {
  transform: rotate(10deg);
}

.form__message {
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: rgba(22, 163, 74, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.32);
  color: #bbf7d0;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: none;
}

.form__message:not([hidden]) {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: -1;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
  visibility: hidden;
}

.modal.is-open {
  z-index: 100;
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 24, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.modal__content {
  position: relative;
  z-index: 1;
  background: rgba(8, 22, 48, 0.96);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 24px;
  padding: clamp(1.75rem, 3vw, 2.35rem);
  width: min(100% - 2.5rem, 520px);
  box-shadow: 0 32px 80px rgba(5, 12, 28, 0.55);
  display: grid;
  gap: 1.5rem;
}

.modal__body {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.7;
  display: grid;
  gap: 0.75rem;
}

.modal__body strong {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  color: #bfdbfe;
}

.modal__list {
  margin: 0;
  padding-left: 1.25rem;
  color: #f8fafc;
  font-size: 0.97rem;
  display: grid;
  gap: 0.4rem;
}

.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.4);
  background: rgba(4, 12, 28, 0.8);
  color: #bfdbfe;
  font-size: 1.6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease, color 200ms ease;
}

.modal__close:hover {
  border-color: rgba(96, 165, 250, 0.75);
  background: rgba(7, 18, 40, 0.92);
  color: #e0f2fe;
  transform: translateY(-2px);
}

.modal__close:focus-visible {
  outline: none;
  border-color: rgba(59, 130, 246, 0.85);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

body.modal-open {
  overflow: hidden;
}

.section__header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__header h2 {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section__header p {
  color: #93adc7;
  font-size: 1.05rem;
  line-height: 1.8;
}

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

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(9, 21, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.12);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.05);
  min-height: 220px;
}

.feature-card h3 {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-card p {
  color: #93adc7;
  line-height: 1.7;
}

.schedule {
  position: relative;
  margin-top: 3.5rem;
  padding: 1rem 0 1.5rem;
}

.schedule__line {
  position: absolute;
  top: 0;
  bottom: -0.05rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.35), rgba(15, 23, 42, 0.1));
  opacity: 0.65;
}

.schedule__progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.95), rgba(56, 189, 248, 0.6));
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.45);
  transition: height 120ms ease-out;
}

.schedule__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.0rem;
}

.schedule__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 0;
}

.schedule__item--terminal::after {
  content: '';
  position: absolute;
  bottom: -0.05rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.6rem;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.35), rgba(15, 23, 42, 0.05));
  pointer-events: none;
  display: block;
}

.schedule__item::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.35);
  border: 4px solid rgba(8, 15, 32, 0.85);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  z-index: 2;
}

.schedule__stack {
  position: relative;
  display: grid;
  gap: 1.1rem;
  width: min(100%, 420px);
}

.schedule__card {
  width: 100%;
  padding: 2rem;
  border-radius: 18px;
  background: rgba(7, 20, 44, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 25px 55px rgba(7, 12, 26, 0.35);
  display: grid;
  gap: 1.05rem;
  position: relative;
  z-index: 1;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.schedule__card--main::after {
  content: '';
  position: absolute;
  top: 2.6rem;
  height: 2px;
  border-radius: 999px;
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: width 200ms ease, opacity 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.schedule__card--sub {
  padding: 1.45rem 1.6rem;
  border-radius: 16px;
  background: rgba(9, 22, 46, 0.82);
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: 0 18px 42px rgba(7, 12, 26, 0.28);
  gap: 0.75rem;
  width: min(100%, 320px);
}

.schedule__time {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.8);
}

.schedule__title {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0;
}

.schedule__title--sub {
  font-size: 1.05rem;
}

.schedule__meta {
  margin: 0;
  color: #93adc7;
  line-height: 1.65;
  font-size: 0.98rem;
}

.schedule__list-inline {
  margin: 0;
  padding-left: 1.1rem;
  color: #93adc7;
  line-height: 1.65;
  display: grid;
  gap: 0.55rem;
  font-size: 0.98rem;
}

.schedule__item--interval .schedule__card--main {
  background: rgba(5, 15, 34, 0.88);
  border-color: rgba(148, 163, 184, 0.25);
}

.schedule__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.05rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
  background: rgba(15, 37, 72, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.schedule__meta--subtle {
  color: rgba(148, 163, 184, 0.7);
  font-size: 0.9rem;
}

.schedule__item.is-active::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(56, 189, 248, 0.85));
  transform: translate(-50%, 0) scale(1.2);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.7);
}

.schedule__item.is-active .schedule__card--main {
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 30px 70px rgba(8, 18, 40, 0.45);
  transform: translateY(-4px);
}

.schedule__item.is-active .schedule__card--main::after {
  opacity: 0.85;
}

.schedule__item.is-active .schedule__card--sub {
  border-color: rgba(56, 189, 248, 0.2);
}

.schedule__item.is-current::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 1), rgba(56, 189, 248, 0.95));
  transform: translate(-50%, 0) scale(1.32);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.85);
}

.schedule__item.is-current .schedule__card--main {
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 40px 90px rgba(8, 18, 40, 0.55);
  transform: translateY(-6px);
}

.schedule__item.is-current .schedule__card--main::after {
  opacity: 1;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.4), rgba(37, 99, 235, 0.75));
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.55);
}

.schedule__item.is-current .schedule__card--sub {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 28px 60px rgba(7, 12, 26, 0.36);
  transform: translateY(-3px);
}

.schedule__item.is-current:nth-child(even) .schedule__card--main::after {
  background: linear-gradient(270deg, rgba(56, 189, 248, 0.4), rgba(37, 99, 235, 0.75));
}

@media (min-width: 900px) {
  .schedule__item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: calc(50% + 3rem);
  }

  .schedule__item:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 3rem);
  }

  .schedule__item:nth-child(odd) .schedule__stack {
    align-items: flex-end;
  }

  .schedule__item:nth-child(even) .schedule__stack {
    align-items: flex-start;
  }

  .schedule__card--main::after {
    width: 3rem;
    opacity: 0.55;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.22), rgba(37, 99, 235, 0.48));
    right: -3rem;
    left: auto;
  }

  .schedule__item:nth-child(even) .schedule__card--main::after {
    left: -3rem;
    right: auto;
    background: linear-gradient(270deg, rgba(56, 189, 248, 0.22), rgba(37, 99, 235, 0.48));
  }

  .schedule__card--sub {
    width: min(100%, 320px);
  }

  .schedule__item:nth-child(odd) .schedule__card--sub {
    margin-right: 1.85rem;
  }

  .schedule__item:nth-child(even) .schedule__card--sub {
    margin-left: 1.85rem;
  }
}

@media (max-width: 899px) {

  .schedule__line,
  .schedule__progress {
    left: 1.6rem;
    transform: none;
  }

  .schedule__item {
    padding-left: 3.2rem;
  }

  .schedule__item::before {
    left: 1.6rem;
    transform: translate(-50%, 0);
  }

  .schedule__stack {
    width: 100%;
  }

  .schedule__card--main::after {
    display: none;
  }

  .schedule__card--sub {
    margin-left: 1.2rem;
    width: calc(100% - 1.2rem);
  }
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-info {
  background: rgba(12, 27, 55, 0.3);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.location-info p {
  color: #93adc7;
  line-height: 1.8;
}

.location-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 25px 55px rgba(7, 12, 26, 0.45);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

@media (max-width: 640px) {
  .location-map iframe {
    min-height: 280px;
  }
}

.section--cta .cta-card {
  background: rgba(12, 27, 55, 0.35);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 26px;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 40px 80px rgba(8, 10, 25, 0.55);
}

@media (max-width: 1024px) {
  .section--cta .cta-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section--cta .cta-card {
    padding: 2.75rem 1.75rem;
  }
}

.section--cta .cta-card__content {
  max-width: 640px;
}

.section--cta .cta-card__content h2 {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.section--cta .cta-card__content p {
  color: #93adc7;
  line-height: 1.75;
  font-size: 1.05rem;
}

.section--cta .section__footer {
  margin-top: 3rem;
  text-align: center;
  color: rgba(148, 163, 184, 0.7);
  font-size: 0.95rem;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2.5rem;
  background: rgba(5, 13, 28, 0.85);
  border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.22), transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__brand {
  display: grid;
  gap: 1.25rem;
  max-width: 480px;
}

.footer__brand p {
  color: rgba(148, 163, 184, 0.75);
  line-height: 1.7;
}

.footer__brand-name {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f8fafc;
  font-size: 0.9rem;
}

.footer__contact {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.footer__contact h3 {
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #f8fafc;
  opacity: 0.85;
  transition: opacity 180ms ease;
}

.footer__contact a:hover {
  opacity: 1;
}

.footer__contact-icon {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.footer__copyright {
  text-align: center;
  margin-top: 3rem;
  color: rgba(148, 163, 184, 0.55);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* Light theme overrides */
body[data-theme="light"] {
  color: #1e293b;
  background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.16), transparent 55%), radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.14), transparent 60%), linear-gradient(160deg, #f8fbff 0%, #eef2ff 100%);
  color-scheme: light;
}

body[data-theme="light"] .bubble-container span {
  border: 1.5px solid rgba(99, 102, 241, 0.28);
  box-shadow: inset 0 0 18px rgba(99, 102, 241, 0.18), 0 0 32px rgba(37, 99, 235, 0.18);
}

body[data-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 65%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .site-header::after {
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.35), rgba(203, 213, 225, 0.2));
  opacity: 0.85;
}

body[data-theme="light"] .site-header--compact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

body[data-theme="light"] .hero__nav {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(203, 213, 225, 0.6);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .hero__nav-links a {
  color: #0f172a;
}

body[data-theme="light"] .hero__nav-links a::after {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.9), rgba(14, 165, 233, 0.85));
}

body[data-theme="light"] .hero__menu-button span {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.85), rgba(14, 165, 233, 0.85));
}

@media (max-width: 640px) {
  body[data-theme="light"] .hero__nav-links {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(203, 213, 225, 0.65);
  }

  body[data-theme="light"] .hero__nav-links.is-open {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(148, 163, 184, 0.65);
    box-shadow: 0 26px 48px rgba(148, 163, 184, 0.28);
  }

  body[data-theme="light"] .hero__nav-links .theme-toggle {
    border-top: 1px solid rgba(203, 213, 225, 0.9);
  }
}

body[data-theme="light"] .hero__brand-text {
  color: rgba(30, 41, 59, 0.85);
}

body[data-theme="light"] .hero__brand:hover .hero__brand-text {
  color: #0f172a;
}

body[data-theme="light"] .hero__brand-logo-wrapper {
  filter: drop-shadow(0 16px 32px rgba(15, 23, 42, 0.18));
}

body[data-theme="light"] .hero__banner {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(203, 213, 225, 0.75);
  box-shadow: 0 30px 65px rgba(15, 23, 42, 0.16);
}

body[data-theme="light"] .hero__banner::before {
  background: radial-gradient(circle at 18% 20%, rgb(233 242 255), transparent 55%), radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.18), transparent 60%);
  mix-blend-mode: normal;
}

body[data-theme="light"] .hero__subtitle,
body[data-theme="light"] .hero__detail-card p,
body[data-theme="light"] .hero__detail-list,
body[data-theme="light"] .section__header p,
body[data-theme="light"] .feature-card p,
body[data-theme="light"] .schedule__meta,
body[data-theme="light"] .schedule__list-inline,
body[data-theme="light"] .section--cta .cta-card__content p,
body[data-theme="light"] .footer__brand p {
  color: #475569;
}

body[data-theme="light"] .hero__eyebrow,
body[data-theme="light"] .hero__detail-eyebrow,
body[data-theme="light"] .schedule__time,
body[data-theme="light"] .schedule__meta--subtle,
body[data-theme="light"] .section--cta .section__footer {
  color: #64748b;
}

body[data-theme="light"] .hero__detail-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.75);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .hero__detail-card h3,
body[data-theme="light"] .feature-card h3,
body[data-theme="light"] .schedule__title,
body[data-theme="light"] .section--cta .cta-card__content h2,
body[data-theme="light"] .footer__contact h3 {
  color: #0f172a;
}

body[data-theme="light"] .hero__detail-card--highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(219, 234, 254, 0.9));
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 22px 54px rgba(59, 130, 246, 0.18);
}

body[data-theme="light"] .hero__detail-list li::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(14, 165, 233, 0.85));
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
}

body[data-theme="light"] .button--primary {
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.25);
}

body[data-theme="light"] .button--primary:hover {
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.32);
}

body[data-theme="light"] .button--outline {
  color: #1e293b;
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.08);
}

body[data-theme="light"] .button--outline:hover {
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(37, 99, 235, 0.5);
}

body[data-theme="light"] .support-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.14);
}

body[data-theme="light"] .support-card__content p {
  color: #475569;
}

body[data-theme="light"] .support-card__list {
  color: #1e293b;
}

body[data-theme="light"] .support-card__list li::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(14, 165, 233, 0.85));
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.35);
}

body[data-theme="light"] .support-card__pix {
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.15);
}

body[data-theme="light"] .support-card__pix-label {
  color: rgba(100, 116, 139, 0.85);
}

body[data-theme="light"] .support-card__pix-key {
  color: #1e293b;
}

body[data-theme="light"] .speaker-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow: 0 24px 52px rgba(148, 163, 184, 0.22);
}

body[data-theme="light"] .speaker-card:hover {
  box-shadow: 0 30px 60px rgba(148, 163, 184, 0.24);
  border-color: rgba(59, 130, 246, 0.4);
}

body[data-theme="light"] .speaker-card__media {
  background: radial-gradient(circle at 35% 35%, rgba(96, 165, 250, 0.35), rgba(191, 219, 254, 0.25));
  border-color: rgba(203, 213, 225, 0.8);
  box-shadow: 0 16px 32px rgba(148, 163, 184, 0.25);
}

body[data-theme="light"] .speaker-card__content h3 {
  color: #0f172a;
}

body[data-theme="light"] .speaker-card__content p {
  color: #475569;
}

body[data-theme="light"] .section--highlight .container {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.7);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .section--inverse {
  background: rgba(241, 245, 249, 0.85);
}

body[data-theme="light"] .section--cta {
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.14), transparent 65%);
}

body[data-theme="light"] .feature-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(203, 213, 225, 0.7);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}

body[data-theme="light"] .location-info {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(203, 213, 225, 0.7);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .location-info p {
  color: #475569;
}

body[data-theme="light"] .location-map {
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

body[data-theme="light"] .schedule__line {
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.35), rgba(203, 213, 225, 0.1));
  opacity: 0.85;
}

body[data-theme="light"] .schedule__progress {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.9), rgba(14, 165, 233, 0.65));
  box-shadow: 0 0 22px rgba(37, 99, 235, 0.28);
}

body[data-theme="light"] .schedule__item::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.45), rgba(14, 165, 233, 0.45));
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.25);
}

body[data-theme="light"] .schedule__card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .schedule__card--sub {
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid rgba(203, 213, 225, 0.7);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}

body[data-theme="light"] .schedule__item--interval .schedule__card--main {
  background: rgba(241, 245, 249, 0.95);
  border-color: rgba(148, 163, 184, 0.4);
}

body[data-theme="light"] .schedule__pill {
  color: #0f172a;
  background: rgba(226, 232, 240, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

body[data-theme="light"] .schedule__item.is-active::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(14, 165, 233, 0.8));
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.45);
}

body[data-theme="light"] .schedule__item.is-active .schedule__card--main {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.18);
}

body[data-theme="light"] .schedule__item.is-active .schedule__card--sub {
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.12);
}

body[data-theme="light"] .schedule__item.is-current::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 1), rgba(14, 165, 233, 0.92));
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.55);
}

body[data-theme="light"] .schedule__item.is-current .schedule__card--main {
  border-color: rgba(37, 99, 235, 0.65);
  box-shadow: 0 32px 72px rgba(37, 99, 235, 0.2);
}

body[data-theme="light"] .schedule__item.is-current .schedule__card--sub {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 26px 50px rgba(37, 99, 235, 0.14);
}

body[data-theme="light"] .schedule__card--main::after {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.28), rgba(37, 99, 235, 0.5));
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.3);
}

body[data-theme="light"] .schedule__item:nth-child(even) .schedule__card--main::after {
  background: linear-gradient(270deg, rgba(59, 130, 246, 0.28), rgba(37, 99, 235, 0.5));
}

body[data-theme="light"] .section--cta .cta-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

body[data-theme="light"] .footer {
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .footer::before {
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.18), transparent 65%);
  opacity: 0.6;
}

body[data-theme="light"] .footer__brand-name {
  color: #1e293b;
}

body[data-theme="light"] .section--gallery {
  background: radial-gradient(circle at 18% 20%, rgba(59, 130, 246, 0.15), transparent 55%), radial-gradient(circle at 82% 12%, rgba(14, 165, 233, 0.12), transparent 50%);
}

body[data-theme="light"] .gallery-carousel__viewport {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(203, 213, 225, 0.8);
  box-shadow: 0 32px 72px rgba(15, 23, 42, 0.18);
}

body[data-theme="light"] .gallery-card {
  background: rgba(226, 232, 240, 0.85);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

body[data-theme="light"] .gallery-card--portrait {
  background: rgba(191, 219, 254, 0.85);
}

body[data-theme="light"] .gallery-card::after {
  background: linear-gradient(135deg, rgba(59, 71, 106, 0.35), rgba(255, 255, 255, 0));
  opacity: 0.25;
}

body[data-theme="light"] .gallery-card:hover::after {
  opacity: 0.12;
}

body[data-theme="light"] .gallery-carousel__control {
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .gallery-carousel__control:hover {
  background: rgba(241, 245, 249, 0.95);
  color: #0f172a;
}

body[data-theme="light"] .gallery-carousel__control::after {
  border-color: rgba(148, 163, 184, 0.5);
}

body[data-theme="light"] .section--form {
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08), transparent 68%);
}

body[data-theme="light"] .form-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.7);
  box-shadow: 0 32px 72px rgba(15, 23, 42, 0.14);
}

body[data-theme="light"] .form-card__header p {
  color: #475569;
}

body[data-theme="light"] .form__field label,
body[data-theme="light"] .form__fieldset legend {
  color: #0f172a;
}

body[data-theme="light"] .registration-form input[type="text"],
body[data-theme="light"] .registration-form input[type="email"],
body[data-theme="light"] .registration-form input[type="tel"],
body[data-theme="light"] .registration-form input[type="number"] {
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(203, 213, 225, 0.8);
  color: #0f172a;
}

body[data-theme="light"] .registration-form input[type="text"]:focus-visible,
body[data-theme="light"] .registration-form input[type="email"]:focus-visible,
body[data-theme="light"] .registration-form input[type="tel"]:focus-visible,
body[data-theme="light"] .registration-form input[type="number"]:focus-visible {
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
  background: #ffffff;
}

body[data-theme="light"] .form__hint {
  color: rgba(71, 85, 105, 0.75);
}

body[data-theme="light"] .form__fieldset {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.78);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}

body[data-theme="light"] .form__option {
  background: rgba(248, 250, 252, 0.95);
  border-color: rgba(203, 213, 225, 0.85);
  color: #0f172a;
  box-shadow: none;
}

body[data-theme="light"] .form__option:hover {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: rgba(248, 250, 252, 1);
}

body[data-theme="light"] .form__option span {
  color: #0f172a;
}

body[data-theme="light"] .form__required-badge {
  color: #dc2626;
}

body[data-theme="light"] .form__field--invalid input {
  border-color: rgba(248, 113, 113, 0.6);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.18);
}

body[data-theme="light"] .form__fieldset--invalid {
  border-color: rgba(248, 113, 113, 0.55);
  box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.16);
}

body[data-theme="light"] .form__fieldset--invalid .form__option {
  border-color: rgba(248, 113, 113, 0.38);
}

body[data-theme="light"] .form__field--nested {
  background: rgba(248, 250, 252, 0.96);
  border-color: rgba(203, 213, 225, 0.75);
}

body[data-theme="light"] .form__captcha-refresh {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(248, 250, 252, 0.96);
  color: #1d4ed8;
}

body[data-theme="light"] .form__captcha-refresh:hover {
  border-color: rgba(59, 130, 246, 0.55);
  background: rgba(237, 242, 255, 1);
  color: #1d4ed8;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

body[data-theme="light"] .form__message {
  background: rgba(22, 163, 74, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.32);
  color: #0f5132;
}

body[data-theme="light"] .modal__overlay {
  background: rgba(148, 163, 184, 0.45);
}

body[data-theme="light"] .modal__content {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(203, 213, 225, 0.75);
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.25);
}

body[data-theme="light"] .modal__body {
  color: #1e293b;
}

body[data-theme="light"] .modal__body strong {
  color: #1d4ed8;
}

body[data-theme="light"] .modal__list {
  color: #0f172a;
}

body[data-theme="light"] .modal__close {
  border-color: rgba(148, 163, 184, 0.55);
  background: rgba(248, 250, 252, 0.96);
  color: #1e293b;
}

body[data-theme="light"] .modal__close:hover {
  border-color: rgba(59, 130, 246, 0.6);
  background: rgba(237, 242, 255, 1);
  color: #1e3a8a;
}

body[data-theme="light"] .footer__contact a {
  color: #1d4ed8;
  opacity: 0.78;
}

body[data-theme="light"] .footer__contact a:hover {
  opacity: 1;
}

body[data-theme="light"] .footer__copyright {
  color: #94a3b8;
}

body[data-theme="light"] .theme-toggle__track {
  background: rgba(248, 250, 252, 0.95);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

body[data-theme="light"] .theme-toggle__thumb {
  transform: translate(1.4rem, -50%);
  background: linear-gradient(135deg, #facc15, #f97316);
  box-shadow: 0 12px 20px rgba(249, 196, 81, 0.32);
}

body[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 0.95;
  transform: translateY(-50%) scale(1.05);
}

body[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 0.35;
  transform: translateY(-50%) scale(0.9);
  box-shadow: 0 0 6px rgba(148, 163, 184, 0.2);
}

@media (max-width: 420px) {
  .hero__banner {
    padding: 2.4rem 1.5rem;
  }

  .button {
    width: 100%;
  }
}
.gallery-card--portrait {
  padding: clamp(0.35rem, 1vw, 0.75rem);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.32), rgba(37, 99, 235, 0.32));
}

.gallery-card--portrait img {
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: none;
}

.gallery-card:hover.gallery-card--portrait img {
  transform: none;
}
