@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
.bg-primary {
  background-color: #4930e0;
  color: #1d1f20;
}

.bg-secondary {
  background-color: #f1e45e;
  color: #1d1f20;
}

.bg-dark {
  background-color: #1d1f20;
  color: #ffffff;
}

.bg-light {
  background-color: #ffffff;
  color: #1d1f20;
}

.bg-blue-700 {
  background-color: #26158d;
  color: #ffffff;
}

.bg-blue-500 {
  background-color: #4930e0;
  color: #ffffff;
}

.bg-blue-400 {
  background-color: #6d59e6;
  color: #ffffff;
}

.bg-blue-300 {
  background-color: #9182ec;
  color: #1d1f20;
}

.bg-blue-100 {
  background-color: #bcd8f5;
  color: #1d1f20;
}

.bg-yellow-700 {
  background-color: #b6a710;
  color: #ffffff;
}

.bg-yellow-500 {
  background-color: #f1e45e;
  color: #1d1f20;
}

.bg-yellow-400 {
  background-color: #f4e97d;
  color: #1d1f20;
}

.bg-yellow-300 {
  background-color: #f6ee9b;
  color: #1d1f20;
}

.bg-yellow-100 {
  background-color: #f8f64c;
  color: #1d1f20;
}

.bg-black-900 {
  background-color: #1d1f20;
  color: #ffffff;
}

.bg-black-700 {
  background-color: #545454;
  color: #ffffff;
}

.bg-black-500 {
  background-color: #8d8d8d;
  color: #ffffff;
}

.bg-black-400 {
  background-color: #aaaaaa;
  color: #1d1f20;
}

.bg-black-300 {
  background-color: #c6c6c6;
  color: #1d1f20;
}

.bg-white-100 {
  background-color: #ffffff;
  color: #1d1f20;
}

.bg-light-blue {
  background-color: #89b9c8;
  color: #1d1f20;
}

.bg-orange {
  background-color: #e77637;
  color: #ffffff;
}

.bg-purple {
  background-color: #be46dc;
  color: #ffffff;
}

.bg-purple-dark {
  background-color: #7b1d94;
  color: #ffffff;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #26158d 0%, #4930e0 100%);
  color: #ffffff;
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, #b6a710 0%, #f1e45e 100%);
  color: #1d1f20;
}

.bg-gradient-dark {
  background: linear-gradient(to bottom, #1a1a2e 0%, #2e1a4b 100%);
  color: #ffffff;
}

.bg-gradient-accent {
  background: linear-gradient(135deg, #be46dc 0%, #7b1d94 100%);
  color: #ffffff;
}

.text-primary {
  color: #4930e0;
}

.text-secondary {
  color: #f1e45e;
}

.text-light {
  color: #ffffff;
}

.text-dark {
  color: #1d1f20;
}

.text-blue-700 {
  color: #26158d;
}

.text-blue-500 {
  color: #4930e0;
}

.text-yellow-500 {
  color: #f1e45e;
}

.text-black-900 {
  color: #1d1f20;
}

.text-black-700 {
  color: #545454;
}

.text-white-100 {
  color: #ffffff;
}

.border-primary {
  border-color: #4930e0;
}

.border-secondary {
  border-color: #f1e45e;
}

.border-dark {
  border-color: #1d1f20;
}

.border-light {
  border-color: #ffffff;
}

.hover-effect-primary {
  transition: background-color 0.3s ease;
}
.hover-effect-primary:hover {
  background-color: #26158d;
}

.hover-effect-secondary {
  transition: background-color 0.3s ease;
}
.hover-effect-secondary:hover {
  background-color: #b6a710;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 2rem;
  font-weight: 400;
  color: #ffffff;
  background: linear-gradient(to bottom, #1a1a2e 0%, #2e1a4b 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

h1 {
  font-family: "Jost", sans-serif;
  font-size: 150px;
  line-height: 12rem;
  font-weight: 700;
  letter-spacing: 1%;
  color: #ffffff;
}

h2 {
  font-family: "Jost", sans-serif;
  font-size: 96px;
  line-height: 8rem;
  font-weight: 700;
  letter-spacing: 1%;
  color: #f1e45e;
}

h3 {
  font-family: "Jost", sans-serif;
  font-size: 72px;
  line-height: 6rem;
  font-weight: 600;
  letter-spacing: 1%;
  color: #ffffff;
}

h4 {
  font-family: "Jost", sans-serif;
  font-size: 48px;
  line-height: 4rem;
  font-weight: 600;
  letter-spacing: 1%;
  color: #ffffff;
}

h5 {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  line-height: 2rem;
  font-weight: 600;
  letter-spacing: 1%;
  color: #ffffff;
}

h6 {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.67rem;
  font-weight: 400;
  letter-spacing: 1%;
  color: #ffffff;
}

.heading {
  font-family: "Anton", sans-serif;
  font-size: 60px;
  line-height: 5rem;
  color: #ffffff;
}

.subheading {
  font-family: "Anton", sans-serif;
  font-size: 36px;
  line-height: 3rem;
  color: #ffffff;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 2rem;
  font-weight: 400;
  margin-top: 1rem;
  color: #ffffff;
}

.text-strong {
  font-weight: 700;
}

.text-small {
  font-size: 14px;
  line-height: 1.167rem;
}

.text-small-strong {
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 700;
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.8;
}

.link-underline {
  text-decoration: underline;
}

button {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background-color: #4930e0;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}
button:hover {
  background-color: rgb(52, 28.7857142857, 192.2142857143);
}

input,
textarea,
select {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 700;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  width: 100%;
  margin-top: 0.5rem;
  background: transparent;
  color: #ffffff;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

ul,
ol {
  list-style: none;
}

.text-dark {
  color: #1d1f20 !important;
}

.bg-light {
  background: #ffffff;
  color: #1d1f20;
}
.bg-light a {
  color: #4930e0;
}
.bg-light input,
.bg-light textarea,
.bg-light select {
  color: #1d1f20;
  border-color: rgba(29, 31, 32, 0.1);
  background: #f9f9f9;
}

.title-hero {
  font-family: "Jost", sans-serif;
  font-size: 150px;
  line-height: 12rem;
  font-weight: 700;
  letter-spacing: 1%;
  color: #f1e45e;
}

.title-page {
  font-family: "Jost", sans-serif;
  font-size: 96px;
  line-height: 8rem;
  font-weight: 700;
  letter-spacing: 1%;
}

.section-title {
  font-family: "Jost", sans-serif;
  font-size: 72px;
  line-height: 6rem;
  font-weight: 600;
  letter-spacing: 1%;
}

.subtitle {
  font-family: "Jost", sans-serif;
  font-size: 48px;
  line-height: 4rem;
  font-weight: 600;
  letter-spacing: 1%;
}

.minor-title {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  line-height: 2rem;
  font-weight: 600;
  letter-spacing: 1%;
}

.micro-title {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.67rem;
  font-weight: 400;
  letter-spacing: 1%;
}

.body-base {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 2rem;
  font-weight: 400;
}

.body-base-strong {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 2rem;
  font-weight: 700;
}

.body-small {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 400;
}

.body-small-strong {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
  border: none;
  outline: none;
}
.btn .icon-left {
  margin-right: 0.5rem;
}
.btn .icon-right {
  margin-left: 0.5rem;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(73, 48, 224, 0.25);
}
.btn:disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
  border: none;
  outline: none;
  background-color: #4930e0;
  color: #ffffff;
}
.btn--primary .icon-left {
  margin-right: 0.5rem;
}
.btn--primary .icon-right {
  margin-left: 0.5rem;
}
.btn--primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(73, 48, 224, 0.25);
}
.btn--primary:disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.btn--primary:hover:not(:disabled) {
  background-color: #26158d;
}
.btn--primary:disabled {
  background-color: #9182ec;
  color: #ffffff;
  opacity: 0.5;
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
  border: none;
  outline: none;
  background-color: transparent;
  color: #4930e0;
  border: 1px solid #4930e0;
}
.btn--secondary .icon-left {
  margin-right: 0.5rem;
}
.btn--secondary .icon-right {
  margin-left: 0.5rem;
}
.btn--secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(73, 48, 224, 0.25);
}
.btn--secondary:disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.btn--secondary:hover:not(:disabled) {
  background-color: rgba(73, 48, 224, 0.1);
  color: #26158d;
  border-color: #26158d;
}
.btn--secondary:disabled {
  color: #9182ec;
  border-color: #9182ec;
  opacity: 0.5;
}
.btn--tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
  border: none;
  outline: none;
  background-color: #f1e45e;
  color: #1d1f20;
}
.btn--tertiary .icon-left {
  margin-right: 0.5rem;
}
.btn--tertiary .icon-right {
  margin-left: 0.5rem;
}
.btn--tertiary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(73, 48, 224, 0.25);
}
.btn--tertiary:disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.btn--tertiary:hover:not(:disabled) {
  background-color: #b6a710;
}
.btn--tertiary:disabled {
  background-color: #f6ee9b;
  color: #545454;
  opacity: 0.5;
}
.btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
  border: none;
  outline: none;
  background-color: transparent;
  color: #ffffff;
}
.btn--ghost .icon-left {
  margin-right: 0.5rem;
}
.btn--ghost .icon-right {
  margin-left: 0.5rem;
}
.btn--ghost:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(73, 48, 224, 0.25);
}
.btn--ghost:disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.btn--ghost:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn--ghost:disabled {
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
}
.btn--large {
  padding: 0.75rem 1.5rem;
}
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 14px;
}
.btn--disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--icon-only {
  padding: 0.75rem;
  aspect-ratio: 1;
}
.btn--icon-only.btn--small {
  padding: 0.5rem;
}

.btn-group {
  display: inline-flex;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.btn-group .btn:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.btn-group .btn:not(:last-child) {
  border-right: none;
}

.bg-dark .btn--secondary {
  color: #ffffff;
  border-color: #ffffff;
}
.bg-dark .btn--secondary:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-light .btn--ghost {
  color: #4930e0;
}
.bg-light .btn--ghost:hover:not(:disabled) {
  background-color: rgba(73, 48, 224, 0.1);
}
.bg-light .btn--ghost:disabled {
  color: rgba(73, 48, 224, 0.5);
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background-color: #be46dc;
  color: #ffffff;
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
}
.scroll-top:hover {
  transform: scale(1.1);
  background-color: rgb(168.3863636364, 38.0227272727, 200.9772727273);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}
.modal.active .modal__content {
  animation: fadeInUp 0.4s ease forwards;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(29, 31, 32, 0.7);
}
.modal__content {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
  position: relative;
  background-color: #1d1f20;
  color: #ffffff;
  padding: 2rem 5rem;
  border-radius: 8px;
  text-align: center;
  z-index: 1;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.modal__text {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}
.modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal__close:hover {
  opacity: 0.8;
  background: none;
}

.header {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  height: 125vh;
  z-index: 0;
}
.header__wave {
  position: absolute;
  width: 100%;
}
.header__wave img {
  display: block;
  width: 100%;
  height: auto;
}
.header__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translate(-50%, -16%) scale(1.8);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(29, 31, 32, 0.6);
  z-index: 0;
}
.header__navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(29, 31, 32, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 3rem;
  max-height: fit-content;
}
.header__navbar .header__countdown-group {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.header__navbar .header__countdown-group.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header__navbar .header__countdown-group .header__countdown {
  display: flex;
  background: #1d1f20;
  border-radius: 7.5px;
  overflow: hidden;
}
.header__navbar .header__countdown-group .header__countdown .countdown__item {
  padding: 0.375rem 1.125rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.67rem;
  font-weight: 400;
  letter-spacing: 1%;
  text-transform: uppercase;
}
.header__navbar .header__countdown-group .header__countdown .countdown__item .countdown__number {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  line-height: 2rem;
  font-weight: 600;
  letter-spacing: 1%;
  font-weight: bold;
}
.header__navbar .header__countdown-group .header__countdown .countdown__item .countdown__label {
  font-size: 1rem;
}
.header__navbar .header__countdown-group .header__countdown .countdown__separator {
  width: 0.75px;
  height: 24.75px;
  background: rgb(255, 255, 255);
  margin: auto 0;
}
.header__navbar .header__countdown-group .header__countdown-text {
  margin-top: 0;
  align-self: center;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.67rem;
  font-weight: 400;
  letter-spacing: 1%;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
}
.header__navbar .header__countdown-group .header__countdown-text strong {
  font-weight: bold;
}
.header__navbar .header__logo {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  margin: 0;
}
.header__navbar .header__logo img {
  max-height: 3rem;
}
.header__navbar .header__logo.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header__navbar .header__nav .nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__navbar .header__nav .nav__list .nav__item .nav__link {
  background-color: rgb(29, 31, 32);
  padding: 0 10px;
  font-size: 1.1rem;
  text-decoration: none;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
.header__navbar .header__nav .nav__list .nav__item .nav__link--off {
  padding: 0 10px;
  font-size: 1.1rem;
  text-decoration: none;
  color: rgba(245, 245, 245, 0.4862745098);
  font-weight: 500;
  text-transform: uppercase;
}
.header__navbar .header__nav .nav__list .nav__item .nav__link:hover {
  opacity: 0.8;
}
.header__navbar .nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 40px;
  border: none;
  cursor: pointer;
  z-index: 999;
  padding: 0.625rem 1rem;
  background: #f1e45e;
  border-radius: 0;
  gap: 3px;
}
.header__navbar .nav__toggle .nav__toggle-line {
  width: 18px;
  height: 3px;
  background-color: rgb(29, 31, 32);
  border-radius: 2px;
  transition: transform 0.6s ease-in-out, opacity 0.4s ease-in-out;
  transform-origin: center;
}
.header__navbar .nav__toggle--open .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) scaleX(1.1) translate(5px, 5px);
}
.header__navbar .nav__toggle--open .nav__toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0.1s;
}
.header__navbar .nav__toggle--open .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) scaleX(1.1) translate(5px, -5px);
}
.header__navbar .ticket_btn {
  background-color: #4930e0;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 245, 245, 0.4862745098);
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.167rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 2rem;
  text-decoration: none;
}
.header__navbar .ticket_btn:hover {
  opacity: 0.9;
}
.header__hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 64vh;
  text-align: center;
  padding: 6rem 2rem 2rem 2rem;
  margin-top: 40px;
  margin-bottom: 10%;
}
.header__hero .hero__content {
  max-width: 800px;
}
.header__hero .hero__content .hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.header__hero .hero__content .hero__title-img {
  max-width: 100%;
  width: 630px;
  height: auto;
}
.header__hero .hero__content .hero__subtitle {
  font-size: 2.2rem;
  margin-top: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-weight: 900;
}
.header__hero .hero__content .hero__date {
  margin-top: 2rem;
  font-size: 1.5rem;
  align-items: center;
}
.header__hero .hero__content .hero__date .hero__date-text {
  position: relative;
  display: inline-block;
}
.header__hero .hero__content .hero__date .hero__date-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 6px;
  background: linear-gradient(270deg, #F1E45E 0%, #EC7637 25.48%, #BE4EDC 52.88%, #4930E0 75%, #89B9C8 100%);
}
.header__hero .hero__content .hero__divider {
  margin: 1.5rem auto 0;
  height: 6px;
  background: linear-gradient(270deg, #F1E45E 0%, #EC7637 25.48%, #BE4EDC 52.88%, #4930E0 75%, #89B9C8 100%);
}
.header__hero .hero__countdown {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.header__hero .hero__countdown .countdown__container {
  position: relative;
  display: flex;
  gap: 2rem;
  padding: 0.5rem 3rem;
  background-color: #1d1f20;
  border-radius: 9px;
  z-index: 1;
}
.header__hero .hero__countdown .countdown__container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(270deg, #F1E45E 0%, #EC7637 25.48%, #BE4EDC 52.88%, #4930E0 75%, #89B9C8 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.header__hero .hero__countdown .countdown__container .countdown__value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header__hero .hero__countdown .countdown__container .countdown__value .countdown__number {
  font-family: "Jost", sans-serif;
  font-size: 48px;
  line-height: 4rem;
  font-weight: 600;
  letter-spacing: 1%;
}
.header__hero .hero__countdown .countdown__container .countdown__value .countdown__label {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.67rem;
  font-weight: 400;
  letter-spacing: 1%;
  text-transform: uppercase;
}
.header__hero .hero__countdown .countdown__container .countdown__separator {
  width: 1px;
  background-color: #ffffff;
  opacity: 0.8;
  margin: 0 0.5rem;
}

.main {
  position: relative;
  background: linear-gradient(180deg, #1D1F20 29.81%, #271E7D 100%);
  width: 100vw;
  z-index: 2;
}
.main .galeria-section {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.main .galeria-section .grid_galeria-1 {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 15px;
  margin-top: -10rem;
  position: relative;
  margin-bottom: -14rem;
  width: 100%;
  overflow: hidden;
  /* Estilos generales para todas las imágenes */
}
.main .galeria-section .grid_galeria-1 img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%; /* Asegura que las imágenes no excedan su tamaño contenedor */
}
.main .galeria-section .grid_galeria-1 .div1 {
  grid-column: 2/span 6;
  grid-row: 1/span 2;
}
.main .galeria-section .grid_galeria-1 .container_titulo-grid {
  grid-column: 7/span 17;
  grid-row: 1;
  margin: 60px 0 0 50px;
}
.main .galeria-section .grid_galeria-1 .container_titulo-grid h1 {
  font-family: "Jost", sans-serif;
  font-size: 150px;
  line-height: 12rem;
  font-weight: 700;
  letter-spacing: 1%;
  color: #f1e45e;
  text-transform: uppercase;
}
.main .galeria-section .grid_galeria-1 .div3 {
  grid-column: 4/span 11;
  grid-row: 2/span 2;
  margin-top: 2rem;
}
.main .galeria-section .grid_galeria-1 .div4 {
  grid-column: 15/span 7;
  grid-row: 2/span 2;
}
.main .galeria-section .grid_galeria-1 .div4 img {
  transform: rotate(1.99deg);
}
.main .galeria-section .grid_galeria-1 .div5 {
  grid-column: 20/span 5;
  grid-row: 2/span 1;
  margin-top: 14rem;
  margin-left: 1.2rem;
}
.main .galeria-section .grid_galeria-1 .div6 {
  grid-column: 1/span 7;
  grid-row: 2/span 2;
  margin-top: 46rem;
}
.main .galeria-section .grid_galeria-1 .div7 {
  grid-column: 8/span 11;
  grid-row: 2/span 2;
  margin-top: 41rem;
}
.main .galeria-section .grid_galeria-1 .div8 {
  grid-column: 9/span 14;
  grid-row: 3;
  margin-top: 2rem;
}
.main .banner_post-grid {
  position: relative;
  width: 100%;
  height: 50vw;
  max-height: 662px;
  min-height: 120px;
  overflow: hidden;
  z-index: 2;
  margin-bottom: -310px;
}
.main .banner_post-grid .texto_banner_post-grid {
  position: absolute;
  width: 100%;
  height: clamp(40px, 14%, 88.65px);
  background: #f1e45e;
  transform-origin: center;
  top: 50%;
  transform: translateY(-50%) rotate(-2.7deg);
  display: flex;
  align-items: center;
}
.main .banner_post-grid .texto_banner_post-grid h3 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 4vw, 48px);
  color: #000;
  margin-left: clamp(0px, 3%, 60px);
  white-space: nowrap;
  position: relative;
  z-index: 3;
}
.main .banner_post-grid .container_img-banner_post-grid {
  position: absolute;
  right: 0%;
  top: 40%;
  transform: translateY(-50%) rotate(2.7deg);
  z-index: 2;
  width: clamp(100px, 40%, 500px);
}
.main .banner_post-grid .container_img-banner_post-grid img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
}
.main .newsletter-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 101px;
  padding-top: 180px;
  padding-bottom: 100px;
  padding-left: 64px;
  padding-right: 64px;
  background-image: url("../../assets/img/fondo-form.webp");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.main .newsletter-section .newsletter-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.main .newsletter-section .newsletter-content h2 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 112.99%;
  letter-spacing: -1.5%;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
}
.main .newsletter-section .newsletter-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0;
}
.main .newsletter-section .newsletter-form-container {
  width: 100%;
  max-width: 1166px;
}
.main .newsletter-section .newsletter-form-container form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
}
.main .newsletter-section .newsletter-form-container form .form-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.main .newsletter-section .newsletter-form-container form .form-row input[type=text],
.main .newsletter-section .newsletter-form-container form .form-row input[type=email] {
  max-width: 571px;
  flex: 1;
  padding: 16px;
  height: 50px;
  border: 1px solid #f1e45e;
  background-color: #ffffff;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
.main .newsletter-section .newsletter-form-container form .form-row input[type=text]::placeholder,
.main .newsletter-section .newsletter-form-container form .form-row input[type=email]::placeholder {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0%;
  color: #1d1f20;
}
.main .newsletter-section .newsletter-form-container form .form-row input[type=text]:focus,
.main .newsletter-section .newsletter-form-container form .form-row input[type=email]:focus {
  outline: none;
  border-color: #4930e0;
}
.main .newsletter-section .newsletter-form-container form .checkbox-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.main .newsletter-section .newsletter-form-container form .checkbox-container input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: 2px solid #ffffff;
  border-radius: 2px;
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
.main .newsletter-section .newsletter-form-container form .checkbox-container input[type=checkbox]:checked {
  background-color: #4930e0;
  border-color: #4930e0;
}
.main .newsletter-section .newsletter-form-container form .checkbox-container input[type=checkbox]:checked::after {
  content: "✔";
  color: #ffffff;
  font-size: 16px;
}
.main .newsletter-section .newsletter-form-container form .checkbox-container label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}
.main .newsletter-section .newsletter-form-container form .button-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 8px;
}
.main .newsletter-section .newsletter-form-container form .button-container button {
  width: 135px;
  height: 56px;
  padding: 10px 24px;
  background-color: #4930e0;
  border: none;
  border-radius: 4px;
  color: white;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}
.main .newsletter-section .newsletter-form-container form .button-container button:hover {
  background-color: #26158d;
}
.main .newsletter-section .newsletter-form-container form .button-container button img {
  width: 20px;
  height: auto;
}

footer {
  width: 100%;
}
footer .footer__redes-sociales {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 32px 56px;
  background: #4930e0;
  color: #ffffff;
  flex-wrap: wrap;
}
footer .footer__logo {
  margin-right: 60px;
}
footer .footer__logo img {
  max-width: 120px;
  height: auto;
}
footer .footer__navegacion ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
footer .footer__navegacion a {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}
footer .footer__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}
footer .footer__social span {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
footer .footer__social-links ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
footer .footer__social-links a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
}
footer .footer__terminos a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .header__navbar .header__countdown-group .header__countdown .countdown__item {
    padding: 0.375rem 0.875rem;
    gap: 8px;
  }
  .header__navbar .header__countdown-group .header__countdown .countdown__item .countdown__label {
    font-size: 0.9rem;
  }
  .header__navbar .header__countdown-group .header__countdown .countdown__separator {
    height: 20px;
  }
  .header__navbar .header__countdown-group .header__countdown-text {
    font-size: 0.9rem;
  }
  .header__navbar .header__logo img {
    max-height: 2.75rem;
  }
  .header__navbar .header__nav .nav__list {
    gap: 1.5rem;
  }
  .header__navbar .header__nav .nav__list .nav__item .nav__link,
  .header__navbar .header__nav .nav__list .nav__item .nav__link--off {
    font-size: 1rem;
  }
  .header__navbar .ticket_btn {
    margin-left: 1.5rem;
    padding: 0.6rem 0.875rem;
    font-size: 0.95rem;
  }
  .main .galeria-section .grid_galeria-1 {
    gap: 12px;
  }
  .main .galeria-section .grid_galeria-1 .container_titulo-grid {
    margin: 50px 0 0 40px;
  }
  .main .galeria-section .grid_galeria-1 .container_titulo-grid h1 {
    font-size: 120px;
  }
  .main .galeria-section .grid_galeria-1 .div5 {
    margin-top: 12rem;
  }
  .main .galeria-section .grid_galeria-1 .div6 {
    margin-top: 40rem;
  }
  .main .galeria-section .grid_galeria-1 .div7 {
    margin-top: 36rem;
  }
}
@media (max-width: 1024px) {
  .header__navbar {
    padding: 1rem 2rem;
  }
  .header__navbar .header__countdown-group {
    flex-direction: column-reverse;
  }
  .header__navbar .header__logo img {
    max-height: 2.5rem;
  }
  .header__navbar .header__nav .nav__list {
    gap: 1.25rem;
  }
  .header__navbar .header__nav .nav__list .nav__item .nav__link,
  .header__navbar .header__nav .nav__list .nav__item .nav__link--off {
    font-size: 0.95rem;
    padding: 0 8px;
  }
  .header__navbar .ticket_btn {
    margin-left: 1rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
  }
  .header__hero {
    padding: 1rem;
  }
  .header__hero .hero__content .hero__title-img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
  .header__hero .hero__content .hero__subtitle {
    font-size: 1.2rem;
    line-height: 1.2;
    text-wrap: balance;
  }
  .header__hero .hero__content .hero__date {
    font-size: 1rem;
    padding: 0 1rem;
    text-align: center;
  }
  .header__hero .hero__content .hero__date .hero__date-text::after {
    height: 4px;
    bottom: -6px;
  }
  .header__hero .hero__countdown {
    margin-top: 1.5rem;
  }
  .header__bg-video {
    object-position: center;
  }
  .main .galeria-section .grid_galeria-1 {
    grid-template-columns: repeat(24, 1fr);
    gap: 10px;
    margin-top: -13rem;
    margin-bottom: -10rem;
  }
  .main .galeria-section .grid_galeria-1 .container_titulo-grid {
    margin: 40px 0 0 30px;
  }
  .main .galeria-section .grid_galeria-1 .container_titulo-grid h1 {
    font-size: 110px;
  }
  .main .galeria-section .grid_galeria-1 .div3 {
    margin-top: 1.5rem;
  }
  .main .galeria-section .grid_galeria-1 .div5 {
    margin-left: 0.8rem;
  }
  .main .galeria-section .grid_galeria-1 .div6 {
    margin-top: 35rem;
  }
  .main .galeria-section .grid_galeria-1 .div7 {
    margin-top: 30rem;
  }
  .main .galeria-section .grid_galeria-1 .div8 {
    margin-top: 1.5rem;
  }
  .main .banner_post-grid {
    height: 45vw;
    margin-bottom: -210px;
  }
  .main .banner_post-grid .texto_banner_post-grid h3 {
    font-size: clamp(14px, 3.5vw, 36px);
    margin-left: 8%;
  }
  .main .newsletter-section {
    padding-top: 150px;
    background-position: left;
  }
  .main .newsletter-section .newsletter-content h2 {
    font-size: 60px;
  }
  .main .newsletter-section .newsletter-content p {
    font-size: 20px;
  }
  footer .footer__redes-sociales {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 32px;
    gap: 20px;
  }
  footer .footer__logo {
    margin-right: 0;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
  }
  footer .footer__navegacion {
    order: 1;
    width: auto;
  }
  footer .footer__navegacion ul {
    display: flex;
    gap: 24px;
  }
  footer .footer__social {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  footer .footer__social-links ul {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
  }
  footer .footer__terminos {
    order: 3;
    width: auto;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .header__navbar {
    padding: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header__navbar .header__countdown-group {
    width: 100%;
    order: -1;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.75rem;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.5rem;
  }
  .header__navbar .header__countdown-group:not(.visible) {
    display: none;
  }
  .header__navbar .header__countdown-group .header__countdown .countdown__item {
    padding: 0.375rem 0.75rem;
    gap: 5px;
  }
  .header__navbar .header__countdown-group .header__countdown .countdown__item .countdown__label {
    font-size: 0.875rem;
  }
  .header__navbar .header__countdown-group .header__countdown-text {
    flex-direction: column;
    text-align: start;
    font-size: 0.875rem;
  }
  .header__navbar .header__logo {
    margin: 0 0 0 5px;
    order: 0;
  }
  .header__navbar .header__logo:not(.visible) {
    display: none;
  }
  .header__navbar .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: rgba(29, 31, 32, 0.95);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    padding: 5rem 2rem 2rem;
    z-index: 998;
    margin-left: 0;
  }
  .header__navbar .header__nav.active {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
  .header__navbar .header__nav .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .header__navbar .nav__toggle {
    display: flex;
    order: -1;
  }
  .header__navbar .ticket-container {
    order: 1;
  }
  .header__navbar .ticket_btn {
    margin-left: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  .header__navbar .ticket_btn img {
    max-height: 16px;
    width: auto;
  }
  .main .galeria-section {
    margin-bottom: 4rem;
  }
  .main .galeria-section .grid_galeria-1 {
    grid-template-columns: repeat(12, 1fr);
    margin-top: -15rem;
    margin-bottom: -6rem;
    gap: 8px;
  }
  .main .galeria-section .grid_galeria-1 .container_titulo-grid {
    grid-column: 1/span 12;
    grid-row: 1;
  }
  .main .galeria-section .grid_galeria-1 .container_titulo-grid h1 {
    font-size: 80px;
    text-align: center;
  }
  .main .galeria-section .grid_galeria-1 .div1 {
    grid-column: 1/span 3;
    grid-row: 2;
  }
  .main .galeria-section .grid_galeria-1 .div3 {
    grid-column: 2/span 5;
    grid-row: 2;
    margin-top: 10rem;
  }
  .main .galeria-section .grid_galeria-1 .div4 {
    grid-column: 6/span 4;
    grid-row: 2;
    margin-top: 6rem;
    margin-left: 3rem;
  }
  .main .galeria-section .grid_galeria-1 .div5 {
    grid-column: 10/span 3;
    grid-row: 2;
    margin-top: 10rem;
    margin-left: 0;
  }
  .main .galeria-section .grid_galeria-1 .div6 {
    grid-column: 1/span 3;
    grid-row: 3;
    margin-top: -12rem;
  }
  .main .galeria-section .grid_galeria-1 .div7 {
    grid-column: 4/span 5;
    grid-row: 3;
    margin-top: -14rem;
  }
  .main .galeria-section .grid_galeria-1 .div8 {
    grid-column: 5/span 6;
    grid-row: 3;
    margin-top: -1rem;
  }
  .main .newsletter-section {
    padding-top: 120px;
    gap: 60px;
    background-position: left;
  }
  .main .newsletter-section .newsletter-content h2 {
    font-size: 48px;
  }
  .main .newsletter-section .newsletter-content p {
    font-size: 16px;
  }
  .main .newsletter-section .newsletter-form-container form .form-row {
    flex-direction: column;
    gap: 16px;
  }
  .main .newsletter-section .newsletter-form-container form .form-row input[type=text],
  .main .newsletter-section .newsletter-form-container form .form-row input[type=email] {
    width: 100%;
    max-width: 100%;
  }
  .main .banner_post-grid {
    height: 40vw;
    margin-bottom: -150px;
  }
  .main .banner_post-grid .texto_banner_post-grid {
    height: clamp(30px, 10%, 50px);
  }
  .main .banner_post-grid .texto_banner_post-grid h3 {
    font-size: clamp(13px, 3.2vw, 24px);
    margin-left: 8%;
  }
  .main .banner_post-grid .container_img-banner_post-grid {
    width: clamp(80px, 35%, 300px);
    top: 38%;
  }
  footer .footer__redes-sociales {
    flex-direction: column;
    padding: 24px 32px;
    gap: 24px;
  }
  footer .footer__logo {
    justify-content: center;
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }
  footer .footer__navegacion {
    order: 2;
    width: 100%;
  }
  footer .footer__navegacion ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .footer__social {
    flex-direction: column;
    gap: 16px;
    order: 3;
    width: 100%;
    align-items: center;
  }
  footer .footer__social-links ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footer__terminos {
    order: 4;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}
@media (max-width: 576px) {
  .header {
    height: 100vh;
  }
  .header__navbar .header__countdown-group {
    gap: 0;
  }
  .header__navbar .header__countdown-group .header__countdown .countdown__item .countdown__label {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 1.67rem;
    font-weight: 400;
    letter-spacing: 1%;
  }
  .header__navbar .header__countdown-group .header__countdown-text {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 1.67rem;
    font-weight: 400;
    letter-spacing: 1%;
  }
  .header__navbar .ticket_btn {
    margin-left: 0;
    padding: 0.625rem 1rem;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 1.167rem;
    font-weight: 500;
  }
  .header__navbar .ticket_btn img {
    max-height: 16px;
    width: auto;
  }
  .header__hero .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header__hero .hero__content .hero__title-img {
    width: 100%;
    max-width: 300px;
  }
  .header__hero .hero__content .hero__subtitle {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    line-height: 2rem;
    font-weight: 600;
    letter-spacing: 1%;
    margin-top: 8px;
  }
  .header__hero .hero__content .hero__date {
    width: 330px;
    margin-top: 0;
  }
  .header__hero .hero__content .hero__date .hero__date-text::after {
    height: 10px;
    bottom: -10px;
  }
  .header__hero .hero__content .hero__date .hero__date-text {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    line-height: 2rem;
    font-weight: 600;
    letter-spacing: 1%;
    display: block;
    white-space: pre-line;
  }
  .header__hero .hero__content .hero__date .hero__date-text strong::before {
    content: "\a";
  }
  .header__hero .hero__countdown {
    margin-top: 5rem;
  }
  .header__hero .hero__countdown .countdown__container {
    padding: 1rem 2.25rem;
    max-width: 218px;
    gap: 3px;
  }
  .header__hero .hero__countdown .countdown__container .countdown__value .countdown__number {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    line-height: 2rem;
    font-weight: 600;
    letter-spacing: 1%;
  }
  .header__hero .hero__countdown .countdown__container .countdown__value .countdown__label {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 1.67rem;
    font-weight: 400;
    letter-spacing: 1%;
  }
  .header__bg-video {
    object-position: center;
  }
  .main .galeria-section {
    margin-bottom: 2rem;
  }
  .main .galeria-section .grid_galeria-1 {
    grid-template-columns: repeat(6, 1fr);
    margin-top: -3rem;
    margin-bottom: -3rem;
    gap: 6px;
  }
  .main .galeria-section .grid_galeria-1 .container_titulo-grid {
    grid-column: 1/span 6;
    margin: 10px 0 20px 10px;
  }
  .main .galeria-section .grid_galeria-1 .container_titulo-grid h1 {
    font-family: "Jost", sans-serif;
    font-size: 48px;
    line-height: 4rem;
    font-weight: 600;
    letter-spacing: 1%;
  }
  .main .galeria-section .grid_galeria-1 .div1,
  .main .galeria-section .grid_galeria-1 .div3,
  .main .galeria-section .grid_galeria-1 .div4,
  .main .galeria-section .grid_galeria-1 .div5,
  .main .galeria-section .grid_galeria-1 .div6,
  .main .galeria-section .grid_galeria-1 .div7 {
    grid-column: 1/span 6;
    margin-top: 0.5rem;
    margin-left: 0;
  }
  .main .galeria-section .grid_galeria-1 .div1 {
    grid-row: 2;
    max-width: 96px;
  }
  .main .galeria-section .grid_galeria-1 .div3 {
    grid-row: 2;
    grid-column: 2/span 6;
    max-width: 184px;
    margin-top: 5rem;
    margin-left: -2rem;
  }
  .main .galeria-section .grid_galeria-1 .div4 {
    grid-column: 5/span 6;
    grid-row: 2;
    max-width: 115px;
    margin-top: 4rem;
    margin-left: -3rem;
  }
  .main .galeria-section .grid_galeria-1 .div5 {
    grid-row: 2;
    grid-column: 6/span 6;
    max-width: 115px;
    margin-top: 7rem;
  }
  .main .galeria-section .grid_galeria-1 .div6 {
    grid-row: 3;
    max-width: 135px;
    margin-top: -5rem;
  }
  .main .galeria-section .grid_galeria-1 .div7 {
    grid-column: 3/span 6;
    grid-row: 3;
    max-width: 167px;
    margin-top: -7rem;
  }
  .main .galeria-section .grid_galeria-1 .div8 {
    grid-column: 3/span 6;
    grid-row: 3;
    margin-top: 0.5rem;
    margin-left: 1rem;
    max-width: 221px;
  }
  .main .banner_post-grid {
    height: 35vw;
    min-height: 90px;
    margin-bottom: -60px;
  }
  .main .banner_post-grid .texto_banner_post-grid {
    height: 70px;
  }
  .main .banner_post-grid .texto_banner_post-grid h3 {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    line-height: 2rem;
    font-weight: 600;
    letter-spacing: 1%;
    display: block;
    white-space: pre-line;
  }
  .main .banner_post-grid .texto_banner_post-grid span::before {
    content: "\a";
  }
  .main .banner_post-grid .container_img-banner_post-grid {
    width: clamp(150px, 30%, 300px);
    top: 35%;
    right: 0%;
  }
  .main .newsletter-section {
    padding: 80px 16px 60px;
  }
  .main .newsletter-section .newsletter-content h2 {
    font-family: "Jost", sans-serif;
    font-size: 48px;
    line-height: 4rem;
    font-weight: 600;
    letter-spacing: 1%;
  }
  .main .newsletter-section .newsletter-content p {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 2rem;
    font-weight: 400;
  }
  .main .newsletter-section .newsletter-form-container form .form-row input[type=text],
  .main .newsletter-section .newsletter-form-container form .form-row input[type=email] {
    padding: 10px;
    width: 100%;
  }
  .main .newsletter-section .newsletter-form-container form .form-row input[type=text]::placeholder,
  .main .newsletter-section .newsletter-form-container form .form-row input[type=email]::placeholder {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 1.67rem;
    font-weight: 400;
    letter-spacing: 1%;
    color: #545454;
  }
  .main .newsletter-section .newsletter-form-container form .checkbox-container input[type=checkbox] {
    width: 14px;
    height: 14px;
  }
  .main .newsletter-section .newsletter-form-container form .checkbox-container label {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 2rem;
    font-weight: 400;
  }
  .main .newsletter-section .newsletter-form-container form .button-container {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 1.167rem;
    font-weight: 500;
  }
  footer .footer__redes-sociales {
    padding: 16px 24px;
  }
  footer .footer__logo {
    margin-top: 16px;
    margin-bottom: 0;
  }
  footer .footer__navegacion ul,
  footer .footer__social-links ul {
    gap: 12px;
  }
  footer .footer__navegacion a,
  footer .footer__social-links a,
  footer .footer__social span,
  footer .footer__terminos a {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .header__navbar .header__countdown-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header__navbar .header__countdown-group .header__countdown-text {
    flex-direction: row;
  }
}

/*# sourceMappingURL=style.css.map */
