@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes breathing-blur {
  0% {
    filter: blur(0px) brightness(0.7) saturate(1.2);
  }
  12.5% {
    filter: blur(1.5px) brightness(0.75) saturate(1.3);
  }
  25% {
    filter: blur(2.5px) brightness(0.8) saturate(1.4);
  }
  37.5% {
    filter: blur(2px) brightness(0.75) saturate(1.3);
  }
  50% {
    filter: blur(0.5px) brightness(0.65) saturate(1.1);
  }
  62.5% {
    filter: blur(1px) brightness(0.6) saturate(1);
  }
  75% {
    filter: blur(1.5px) brightness(0.65) saturate(1.1);
  }
  87.5% {
    filter: blur(3px) brightness(0.55) saturate(0.9);
  }
  100% {
    filter: blur(0px) brightness(0.7) saturate(1.2);
  }
}
@keyframes breathing-movement-mobile {
  0% {
    background-position: 50% 50%;
    transform: scale(1);
  }
  12.5% {
    background-position: 50% 47%;
    transform: scale(1.015);
  }
  25% {
    background-position: 50% 44%;
    transform: scale(1.025);
  }
  37.5% {
    background-position: 50% 46%;
    transform: scale(1.02);
  }
  50% {
    background-position: 50% 56%;
    transform: scale(1.01);
  }
  62.5% {
    background-position: 50% 54%;
    transform: scale(1.015);
  }
  75% {
    background-position: 50% 51%;
    transform: scale(1.02);
  }
  87.5% {
    background-position: 50% 48%;
    transform: scale(1.025);
  }
  100% {
    background-position: 50% 50%;
    transform: scale(1);
  }
}
@keyframes breathing-movement-tablet {
  0% {
    background-position: 50% 50%;
    transform: scale(1);
  }
  15% {
    background-position: 48% 45%;
    transform: scale(1.02);
  }
  30% {
    background-position: 46% 42%;
    transform: scale(1.03);
  }
  45% {
    background-position: 49% 48%;
    transform: scale(1.025);
  }
  60% {
    background-position: 54% 58%;
    transform: scale(1.015);
  }
  75% {
    background-position: 52% 55%;
    transform: scale(1.02);
  }
  90% {
    background-position: 51% 52%;
    transform: scale(1.025);
  }
  100% {
    background-position: 50% 50%;
    transform: scale(1);
  }
}
@keyframes breathing-movement-desktop {
  0% {
    background-position: 50% 50%;
    transform: scale(1);
  }
  18% {
    background-position: 44% 49%;
    transform: scale(1.015);
  }
  36% {
    background-position: 38% 50%;
    transform: scale(1.025);
  }
  54% {
    background-position: 45% 51%;
    transform: scale(1.02);
  }
  72% {
    background-position: 62% 49%;
    transform: scale(1.01);
  }
  90% {
    background-position: 56% 50%;
    transform: scale(1.015);
  }
  100% {
    background-position: 50% 50%;
    transform: scale(1);
  }
}
@keyframes breathing-movement {
  0% {
    background-position: 50% 50%;
    transform: scale(1);
  }
  20% {
    background-position: 52% 49%;
    transform: scale(1.002);
  }
  40% {
    background-position: 48% 51%;
    transform: scale(1.001);
  }
  60% {
    background-position: 51% 50%;
    transform: scale(1.003);
  }
  80% {
    background-position: 49% 52%;
    transform: scale(1.001);
  }
  100% {
    background-position: 50% 50%;
    transform: scale(1);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-weight: 600;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 78em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 53.75em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 30em) {
  html {
    font-size: 42.5%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  position: relative;
  box-sizing: border-box;
  width: 100vw;
  height: auto;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background-color: #c72a09;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #000000;
  scroll-behavior: smooth;
}
body.touch-device {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
body * {
  -webkit-overflow-scrolling: touch;
}

.back-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid black; /* Tamaño y color de la flecha */
  margin: 20px; /* Espaciado alrededor de la flecha */
  margin-top: 0;
  display: inline-block;
  right: 6rem;
  top: 0;
  color: white;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: black !important;
}

ul {
  list-style: none;
}

.close-button {
  font-size: 4rem;
  color: #ffffff;
  font-family: "Roboto";
  font-weight: 800;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.fade-in {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease-out;
}
.animate-on-scroll.fade-in.visible {
  opacity: 1;
}

.animate-on-scroll.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}
.animate-on-scroll.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}
.animate-on-scroll.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-out;
}
.animate-on-scroll.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

.animate-delay-6 {
  transition-delay: 0.6s;
}

.animate-delay-7 {
  transition-delay: 0.7s;
}

.animate-delay-8 {
  transition-delay: 0.8s;
}

.animate-delay-9 {
  transition-delay: 0.9s;
}

.animate-delay-10 {
  transition-delay: 1s;
}

.header {
  position: absolute;
  top: 14rem;
  left: 0;
  width: 100vw;
  height: calc(100vh - 14rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: -1;
}
.header__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: inherit;
}
.header__content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: all 0.5s ease;
}
.header__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
}

.navbar {
  position: relative;
  width: 100vw;
  padding-bottom: 2rem;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-bottom-width: 3px;
  border-color: transparent;
  border-bottom-color: #c72a09;
  transition: all 0.3s ease;
  height: 14rem;
  z-index: 1000;
}
@media only screen and (max-width: 30em) {
  .navbar {
    height: 15rem;
  }
}
.navbar__logo {
  height: 80%;
  width: auto;
  transition: transform 0.3s ease;
}
.navbar__logo--pulsing {
  animation: logoPulse 3s ease-in-out infinite;
}
.navbar img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .navbar__menu-button {
    border-bottom-width: 2px;
  }
  .navbar__menu-button--active {
    border-bottom-width: 2px;
  }
}
a {
  text-decoration: none;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
  85% {
    transform: scale(1.06);
    opacity: 0.7;
  }
  90% {
    transform: scale(1);
    opacity: 1;
  }
  95% {
    transform: scale(1.06);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.footer {
  background-color: #c72a09;
  color: #dfdad6;
  position: relative;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.footer--visible {
  opacity: 1;
  visibility: visible;
  display: block;
}
.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  padding: 4rem 20rem;
}
.footer__partners {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  width: 100%;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 53.75em) {
  .footer__partners {
    gap: 4rem;
  }
}
@media only screen and (max-width: 30em) {
  .footer__partners {
    gap: 1.5rem;
  }
}
.footer__partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__partner-logo img {
  max-height: 6rem;
  max-width: 12rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer__partner-logo img:hover {
  opacity: 1;
}
@media only screen and (max-width: 53.75em) {
  .footer__partner-logo img {
    max-height: 5rem;
    max-width: 10rem;
  }
}
@media only screen and (max-width: 30em) {
  .footer__partner-logo img {
    max-height: 4rem;
    max-width: 8rem;
  }
}
.footer__social-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social-link:not(:last-child) {
  margin-bottom: 2rem;
}
.footer__social-link:hover {
  text-decoration: none;
  color: inherit;
}
.footer__social-link:visited {
  color: inherit;
}
.footer__social-link:active {
  color: inherit;
}
.footer__social-icon {
  margin-right: 1rem;
  color: #dfdad6;
}
.footer__created-by {
  font-size: 1.4rem;
  font-weight: 100;
  text-align: center;
  margin-top: 4rem;
  align-self: flex-end;
  color: rgb(200.6438356164, 192.1506849315, 185.3561643836);
}

.section {
  position: relative;
  width: 100vw;
  padding: 0.1rem 20rem;
  padding-bottom: 0;
  background-color: #dfdad6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-style: solid;
  border-bottom-width: 3px;
  border-color: transparent;
  border-bottom-color: #c72a09;
  transition: min-height 0.7s ease, transform 0.4s ease, background-color 0.7s ease;
  min-height: 3rem;
  pointer-events: none;
}
@media only screen and (max-width: 78em) {
  .section {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 53.75em) {
  .section {
    font-size: 6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section {
    font-size: 5.5rem;
    padding: 0.1rem 10rem;
  }
}
@media only screen and (max-width: 30em) {
  .section {
    font-size: 3rem;
    padding: 0.1rem 8rem;
  }
}
.section.section-1 {
  transform: translateY(-100%);
}
.section.section-2 {
  transform: translateY(-200%);
}
.section.section-3 {
  transform: translateY(-300%);
}
.section.section-4 {
  transform: translateY(-400%);
}
.section.section-5 {
  transform: translateY(-500%);
}
.section.section-6 {
  transform: translateY(-600%);
}
.section.section-7 {
  transform: translateY(-700%);
}
.section.section-8 {
  transform: translateY(-800%);
}
.section.section-9 {
  transform: translateY(-900%);
}
.section.section-10 {
  transform: translateY(-1000%);
}
.section.section-11 {
  transform: translateY(-1100%);
}
.section.section-12 {
  transform: translateY(-1200%);
}
.section.section-13 {
  transform: translateY(-1300%);
}
.section.section-14 {
  transform: translateY(-1400%);
}
.section.section-15 {
  transform: translateY(-1500%);
}
.section.section-16 {
  transform: translateY(-1600%);
}
.section.section-17 {
  transform: translateY(-1700%);
}
.section.section-18 {
  transform: translateY(-1800%);
}
.section.section-19 {
  transform: translateY(-1900%);
}
.section.section-20 {
  transform: translateY(-2000%);
}
.section__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #c72a09;
  text-align: center;
  letter-spacing: -0.15rem;
  padding: 0;
  transform: translate(0, 0.6rem);
}
@media only screen and (max-width: 78em) {
  .section__title {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 53.75em) {
  .section__title {
    font-size: 6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section__title {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 30em) {
  .section__title {
    font-size: 4rem;
    transform: translate(0, 0.8rem);
  }
}
.section__container {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.section__subtitle {
  font-size: 2rem;
  font-weight: 400;
  max-width: 50rem;
  color: #000000;
  text-align: center;
  letter-spacing: 0.1em;
}
.section__card-box {
  width: 100vw;
  height: auto;
  padding: 2rem;
  padding-top: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}
.section__filosofia {
  min-height: 200vh;
}
.section--expanded {
  min-height: 100vh;
  justify-content: flex-start;
  background-color: #000000;
}
.section__container--visible {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  flex-direction: row;
}
.section--visible {
  pointer-events: auto;
}
.section--visible.section-1 {
  transform: translateY(0);
}
.section--visible.section-2 {
  transform: translateY(0);
}
.section--visible.section-3 {
  transform: translateY(0);
}
.section--visible.section-4 {
  transform: translateY(0);
}
.section--visible.section-5 {
  transform: translateY(0);
}
.section--visible.section-6 {
  transform: translateY(0);
}
.section--visible.section-7 {
  transform: translateY(0);
}
.section--visible.section-8 {
  transform: translateY(0);
}
.section--visible.section-9 {
  transform: translateY(0);
}
.section--visible.section-10 {
  transform: translateY(0);
}
.section--visible.section-11 {
  transform: translateY(0);
}
.section--visible.section-12 {
  transform: translateY(0);
}
.section--visible.section-13 {
  transform: translateY(0);
}
.section--visible.section-14 {
  transform: translateY(0);
}
.section--visible.section-15 {
  transform: translateY(0);
}
.section--visible.section-16 {
  transform: translateY(0);
}
.section--visible.section-17 {
  transform: translateY(0);
}
.section--visible.section-18 {
  transform: translateY(0);
}
.section--visible.section-19 {
  transform: translateY(0);
}
.section--visible.section-20 {
  transform: translateY(0);
}
.section--hidden {
  z-index: 1;
  pointer-events: none;
  transition: transform 0.8s ease;
}
.section--hidden.section-1 {
  transform: translateY(-100%);
}
.section--hidden.section-2 {
  transform: translateY(-200%);
}
.section--hidden.section-3 {
  transform: translateY(-300%);
}

.philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 15rem;
  width: 100%;
  margin: 0 auto;
  padding: 8rem 0;
}
@media only screen and (max-width: 78em) {
  .philosophy-cards {
    gap: 10rem;
    padding: 3rem 1.5rem;
  }
}
@media only screen and (max-width: 53.75em) {
  .philosophy-cards {
    gap: 2.5rem;
    padding: 2.5rem 1rem;
  }
}
@media only screen and (max-width: 30em) {
  .philosophy-cards {
    gap: 2rem;
    padding: 2rem 1rem;
  }
}

.philosophy-card {
  display: flex;
  align-items: center;
  gap: 8rem;
  width: 100%;
  height: auto;
}
.philosophy-card:nth-child(even) {
  flex-direction: row-reverse;
}
.philosophy-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.philosophy-card.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 78em) {
  .philosophy-card {
    gap: 8rem;
  }
}
@media only screen and (max-width: 53.75em) {
  .philosophy-card {
    gap: 2rem;
    flex-direction: column;
  }
  .philosophy-card:nth-child(even) {
    flex-direction: column;
  }
}
@media only screen and (max-width: 30em) {
  .philosophy-card {
    gap: 1.5rem;
    flex-direction: column;
  }
  .philosophy-card:nth-child(even) {
    flex-direction: column;
  }
}
.philosophy-card__image {
  flex: 0 0 45%;
  height: 400px;
  overflow: hidden;
  clip-path: circle(42% at 50% 50%);
}
@media only screen and (max-width: 78em) {
  .philosophy-card__image {
    height: 280px;
  }
}
@media only screen and (max-width: 53.75em) {
  .philosophy-card__image {
    flex: 0 0 auto;
    width: 100%;
    height: 250px;
  }
}
@media only screen and (max-width: 30em) {
  .philosophy-card__image {
    height: 200px;
  }
}
.philosophy-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.philosophy-card__content {
  flex: 1;
  padding: 2rem 0;
}
@media only screen and (max-width: 53.75em) {
  .philosophy-card__content {
    padding: 1rem 0;
  }
}
@media only screen and (max-width: 30em) {
  .philosophy-card__content {
    padding: 0.5rem 0;
  }
}
.philosophy-card__text {
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.3px;
  opacity: 0.95;
  margin: 0;
}
.philosophy-card__text strong {
  color: #c72a09;
  font-weight: 700;
}
@media only screen and (max-width: 78em) {
  .philosophy-card__text {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 53.75em) {
  .philosophy-card__text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 30em) {
  .philosophy-card__text {
    font-size: 1.4rem;
  }
}

.events-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20rem;
  padding: 10rem 0;
}

.event-card {
  width: 100%;
  display: flex;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media only screen and (max-width: 53.75em) {
  .event-card {
    flex-direction: column;
  }
}

.event-card__image {
  flex: 0 0 40%;
  min-height: 25rem;
  max-height: 32rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 53.75em) {
  .event-card__image {
    flex: 0 0 auto;
    min-height: 20rem;
    max-height: 28rem;
  }
}
@media only screen and (max-width: 30em) {
  .event-card__image {
    min-height: 18rem;
    max-height: 20rem;
  }
}

.event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 53.75em) {
  .event-card__content {
    padding: 2.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .event-card__content {
    padding: 2rem;
  }
}

.event-card__title {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.3;
}
@media only screen and (max-width: 78em) {
  .event-card__title {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 53.75em) {
  .event-card__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .event-card__title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.event-card__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 30em) {
  .event-card__info {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.event-card__date,
.event-card__cost,
.event-card__location {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 30em) {
  .event-card__date,
  .event-card__cost,
  .event-card__location {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.event-card__label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c72a09;
  min-width: 8rem;
}
@media only screen and (max-width: 78em) {
  .event-card__label {
    font-size: 1.3rem;
    min-width: 7rem;
  }
}
@media only screen and (max-width: 30em) {
  .event-card__label {
    font-size: 1.2rem;
    min-width: auto;
  }
}

.event-card__value {
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1.5rem;
  font-weight: 500;
  color: #000000;
  flex: 1;
}
@media only screen and (max-width: 78em) {
  .event-card__value {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 30em) {
  .event-card__value {
    font-size: 1.2rem;
  }
}

.event-card__includes {
  margin-top: 1rem;
}

.event-card__includes-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c72a09;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 78em) {
  .event-card__includes-title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .event-card__includes-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}

.event-card__includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media only screen and (max-width: 30em) {
  .event-card__includes-list {
    gap: 0.6rem;
  }
}
.event-card__includes-list li {
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  line-height: 1;
}
@media only screen and (max-width: 78em) {
  .event-card__includes-list li {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 30em) {
  .event-card__includes-list li {
    font-size: 1.1rem;
    padding-left: 1.5rem;
  }
}

.no-events-message {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #dfdad6;
  border-radius: 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.no-events-message h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 78em) {
  .no-events-message h3 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 30em) {
  .no-events-message h3 {
    font-size: 2rem;
  }
}
.no-events-message p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  opacity: 0.8;
}
@media only screen and (max-width: 78em) {
  .no-events-message p {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .no-events-message p {
    font-size: 1.4rem;
  }
}

@keyframes eventCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.event-card {
  animation: eventCardFadeIn 0.6s ease forwards;
}
.event-card:nth-child(1) {
  animation-delay: 0.1s;
}
.event-card:nth-child(2) {
  animation-delay: 0.2s;
}
.event-card:nth-child(3) {
  animation-delay: 0.3s;
}
.event-card:nth-child(4) {
  animation-delay: 0.4s;
}
.event-card:nth-child(5) {
  animation-delay: 0.5s;
}
.event-card:nth-child(6) {
  animation-delay: 0.6s;
}
.event-card:nth-child(7) {
  animation-delay: 0.7s;
}
.event-card:nth-child(8) {
  animation-delay: 0.8s;
}
.event-card:nth-child(9) {
  animation-delay: 0.9s;
}
.event-card:nth-child(10) {
  animation-delay: 1s;
}

.banner {
  position: fixed;
  top: 14rem;
  left: 0;
  width: 100%;
  height: 1rem;
  animation: colorChange 40s ease infinite; /* Aplica la animación de cambio de color */
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 98;
  transition: all 0.8s ease;
}
@media only screen and (max-width: 30em) {
  .banner {
    top: 15rem;
  }
}
.banner__content {
  width: 100%;
  height: 100%;
  padding: 3rem;
  opacity: 0;
  transition: all 0.8s ease;
}
.banner__close-button {
  position: absolute;
  top: 2rem;
  right: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.banner__close-button:hover {
  scale: 1.1;
}
.banner__close-button:active {
  scale: 0.6;
}

.banner__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.1em;
  background-color: #ffffff;
  padding: 0.5rem 2rem;
}

.card {
  width: 20%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0.2rem 0.2rem 2rem rgba(0, 0, 0, 0.3);
  padding-bottom: 2rem;
}
.card__img {
  width: 100%;
  margin-bottom: 2rem;
}
.card__title {
  font-size: 2rem;
  margin-bottom: 2rem;
  padding: 0 2rem;
}
.card__description {
  padding: 0 2rem;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.card__price {
  padding: 0 2rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.card__button {
  width: 50%;
  padding: 1rem 2rem;
  background-color: #c72a09;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0rem 0.5rem 0.5rem rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.1s ease;
}
.card__button:hover {
  scale: 1.03;
}

.carousel-wrapper {
  width: 80%;
  max-width: 1200px;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 70%;
  transition: transform 0.5s ease-in-out;
  align-items: center;
}

.promo-card {
  flex: 0 0 calc(33.333% - 1rem);
  margin: 0 1rem;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  min-height: 250px;
  aspect-ratio: 4/3;
}

.promo-card__image {
  position: relative;
  height: 45%;
  overflow: hidden;
}
.promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.promo-card__discount {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #c72a09;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.2);
}

.promo-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-card__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.75rem;
  font-family: "Lora", serif;
  line-height: 1.2;
}

.promo-card__description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-family: "Work Sans", sans-serif;
  flex: 1;
}

.promo-card__price {
  margin-bottom: 1rem;
}

.promo-card__price-current {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f49840;
  font-family: "Lora", serif;
}

.promo-card__button {
  width: 100%;
  background: #c72a09;
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-card__button:hover {
  transform: translateY(-2px);
}

.carousel-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  text-align: center;
}
.carousel-error p {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: "Work Sans", sans-serif;
}
.carousel-error button {
  background: #f49840;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 1.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-error button:hover {
  background: #e68a3a;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .carousel-wrapper {
    width: 85%;
    max-width: 1000px;
  }
  .promo-card {
    flex: 0 0 calc(33.333% - 1rem);
    margin: 0 0.5rem;
    min-width: 280px;
    min-height: 220px;
  }
  .promo-card__title {
    font-size: 1.4rem;
  }
  .promo-card__description {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .carousel-wrapper {
    width: 90%;
    padding: 1.5rem;
  }
  .promo-card {
    flex: 0 0 calc(33.333% - 0.75rem);
    margin: 0 0.375rem;
    min-width: 250px;
    min-height: 200px;
  }
}
@media (max-width: 600px) {
  .carousel-wrapper {
    width: 95%;
    padding: 1rem;
  }
  .promo-card {
    flex: 0 0 calc(33.333% - 0.5rem);
    margin: 0 0.25rem;
    min-width: 200px;
    min-height: 180px;
  }
  .promo-card__title {
    font-size: 1.3rem;
  }
  .promo-card__description {
    font-size: 0.9rem;
  }
}
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  margin-top: 10rem;
}

.contact-form__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Lora", serif;
  line-height: 1.2;
}

.contact-form__subtitle {
  font-size: 1.3rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Work Sans", sans-serif;
  line-height: 1.4;
}

.contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

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

.contact-form__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  font-family: "Work Sans", sans-serif;
}

.contact-form__input {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  font-family: "Work Sans", sans-serif;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  color: #333;
}
.contact-form__input:focus {
  outline: none;
  border-color: #c72a09;
  box-shadow: 0 0 0 3px rgba(0, 244, 244, 0.1);
  background: white;
}
.contact-form__input::placeholder {
  color: #999;
  font-family: "Work Sans", sans-serif;
}

.contact-form__textarea {
  min-height: 150px;
  resize: vertical;
  font-family: "Work Sans", sans-serif;
  line-height: 1.5;
}

.contact-form__button-container {
  text-align: center;
  margin-top: 2rem;
}

.contact-form__button {
  background: #c72a09;
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 244, 244, 0.3);
}
.contact-form__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 244, 244, 0.4);
  background: rgb(174.6033653846, 36.8509615385, 7.8966346154);
}
.contact-form__button:active {
  transform: translateY(-1px);
}

.contact-form__input--error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.contact-form__input--success {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.contact-form__error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-family: "Work Sans", sans-serif;
  display: none;
}
.contact-form__error-message--visible {
  display: block;
}

.contact-form__success-message {
  color: #27ae60;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  display: none;
}
.contact-form__success-message--visible {
  display: block;
}

@media (max-width: 900px) {
  .contact-form {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
  }
  .contact-form__title {
    font-size: 2.2rem;
  }
  .contact-form__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .contact-form__fields {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .contact-form__input {
    padding: 0.9rem 1.3rem;
    font-size: 1rem;
  }
  .contact-form__button {
    padding: 1.1rem 2.5rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .contact-form {
    padding: 2rem 1rem;
  }
  .contact-form__title {
    font-size: 2rem;
  }
  .contact-form__subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .contact-form__fields {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-form__input {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
  .contact-form__button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
  }
}
.login-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: "Roboto";
}
.login-popup--active {
  display: flex;
  opacity: 1;
}
.login-popup__content {
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.login-popup--active .login-popup__content {
  transform: translateY(0);
}
.login-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.login-popup__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.login-popup__close {
  background: none;
  border: none;
  font-size: 3rem;
  color: #000000;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.login-popup__close:hover {
  background-color: #f0f0f0;
  color: #000000;
}
.login-popup__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.login-popup__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.login-popup__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.login-popup__input {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background-color: white;
}
.login-popup__input:focus {
  outline: none;
  border-color: #c72a09;
  box-shadow: 0 0 0 3px rgba(0, 173, 252, 0.1);
}
.login-popup__input::placeholder {
  color: #999;
}
.login-popup__submit {
  background: #c72a09;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}
.login-popup__submit:hover {
  scale: 1.05;
}
.login-popup__submit:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .login-popup {
    padding: 1rem;
    padding-top: 80px;
  }
  .login-popup__content {
    max-width: 100%;
    margin: 0 1rem;
    padding: 1.5rem;
  }
  .login-popup__title {
    font-size: 1.5rem;
  }
  .login-popup__input {
    padding: 0.875rem;
  }
  .login-popup__submit {
    padding: 0.875rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .login-popup__content {
    padding: 1rem;
  }
  .login-popup__title {
    font-size: 1.3rem;
  }
  .login-popup__header {
    margin-bottom: 1.5rem;
  }
  .login-popup__form {
    gap: 1rem;
  }
}
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../src/img/backgrounds/alpinists2.webp) no-repeat center center;
  background-size: cover;
  padding: 2rem;
}

.login-card {
  background: #dfdad6;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.login-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.login-logo {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-logo__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin: 0;
}

.login-subtitle {
  color: #666;
  font-size: 1rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  text-transform: uppercase;
  color: #c72a09;
  font-size: 1.6rem;
  line-height: 1rem;
  border-style: solid;
  border-color: transparent;
  border-width: 2px;
  border-bottom-color: #c72a09;
  background-color: #dfdad6;
}

.form-input {
  padding: 0.75rem;
  border-color: transparent;
  font-size: 1.6rem;
  transition: border-color 0.3s ease;
  background-color: #dfdad6;
}
.form-input:focus {
  outline: none;
  border-bottom-color: #c72a09;
}

.login-button {
  background: #c72a09;
  color: white;
  border: none;
  padding: 0.875rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-button:hover {
  background: rgb(150.2067307692, 31.7019230769, 6.7932692308);
}
.login-button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.error-message {
  background: #fee;
  color: #c33;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #fcc;
  font-size: 0.9rem;
  display: none;
}

.success-message {
  background: #efe;
  color: #363;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #cfc;
  font-size: 0.9rem;
  display: none;
}

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.login-footer {
  display: none;
}

@media (max-width: 480px) {
  .login-card {
    padding: 2rem;
    margin: 1rem;
  }
}
.video-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.5s ease;
}

.video-loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.video-loading-content p {
  color: #ffffff;
  font-size: 1.8rem;
  margin: 0;
  text-align: center;
  font-weight: 300;
}

.video-loading-spinner {
  width: 5rem;
  height: 5rem;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #c72a09;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.event-card {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
  transition: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.event-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.event-card.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 30em) {
  .event-card {
    height: 300px;
  }
}
.event-card__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: none;
}
.event-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}
.event-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}
.event-card__date {
  text-align: right;
  margin-bottom: 1rem;
  align-self: flex-end;
}
.event-card__date-range {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.event-card__date-numbers {
  font-size: 8rem;
  font-weight: 700;
  color: #c72a09;
  line-height: 1;
  letter-spacing: 2px;
}
@media only screen and (max-width: 30em) {
  .event-card__date-numbers {
    font-size: 3.2rem;
  }
}
.event-card__date-month {
  font-size: 3rem;
  font-weight: 700;
  color: #c72a09;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 30em) {
  .event-card__date-month {
    font-size: 1.2rem;
  }
}
.event-card__date-text {
  font-size: 1.2rem;
  color: #ffffff;
}
.event-card__title {
  font-size: 4rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media only screen and (max-width: 30em) {
  .event-card__title {
    font-size: 2rem;
  }
}
.event-card__location {
  align-self: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
}
.event-card__button {
  text-align: center;
}
.event-card__btn {
  background: #c72a09;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.event-card__btn:hover {
  background: rgb(150.2067307692, 31.7019230769, 6.7932692308);
  text-decoration: none;
  color: #ffffff;
}
@media only screen and (max-width: 30em) {
  .event-card__btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
  }
}
.event-card__value {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
}
@media only screen and (max-width: 30em) {
  .event-card__value {
    font-size: 1.2rem;
  }
}
.event-card__label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #c72a09;
  text-transform: uppercase;
}
@media only screen and (max-width: 30em) {
  .event-card__label {
    font-size: 1rem;
  }
}

.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}
@media only screen and (max-width: 53.75em) {
  .events-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .events-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0;
  }
}

.no-events-message {
  text-align: center;
  padding: 4rem 2rem;
  color: #000000;
}
.no-events-message h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #c72a09;
}
.no-events-message p {
  font-size: 1.6rem;
  color: #000000;
  opacity: 0.8;
}

.gallery-filters {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem;
  padding: 0 2rem;
  width: 100%;
}
@media only screen and (max-width: 53.75em) {
  .gallery-filters {
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
}

.gallery-filter-dropdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 250px;
}
@media only screen and (max-width: 53.75em) {
  .gallery-filter-dropdown {
    min-width: 200px;
  }
}

.gallery-label {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 300;
  text-align: left;
}

.gallery-select {
  padding: 1.5rem 2rem;
  border: 2px solid #c72a09;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100%;
}
.gallery-select:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(199, 42, 9, 0.3);
}
.gallery-select:hover {
  border-color: #ffffff;
  background: rgba(0, 0, 0, 0.9);
}
.gallery-select option {
  background: #000000;
  color: #ffffff;
  padding: 1rem;
}

.gallery-container {
  height: 60vh;
  overflow-y: auto;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery-container::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 53.75em) {
  .gallery-container {
    height: 50vh;
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-container {
    height: 45vh;
    padding: 1rem;
  }
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  align-items: flex-start;
}
@media only screen and (max-width: 53.75em) {
  .gallery-grid {
    gap: 1rem;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-grid {
    gap: 0.8rem;
  }
}

.gallery-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(199, 42, 9, 0.2);
  width: 220px;
  flex-shrink: 0;
}
@media only screen and (max-width: 53.75em) {
  .gallery-item {
    width: 140px;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-item {
    width: 110px;
  }
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: #c72a09;
}

.gallery-item__image {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.gallery-item__image.square {
  height: 200px;
}
.gallery-item__image.vertical {
  height: 260px;
}
.gallery-item__image.horizontal {
  height: 160px;
}
.gallery-item__image.panoramic {
  height: 130px;
}
@media only screen and (max-width: 53.75em) {
  .gallery-item__image.square {
    height: 120px;
  }
  .gallery-item__image.vertical {
    height: 160px;
  }
  .gallery-item__image.horizontal {
    height: 90px;
  }
  .gallery-item__image.panoramic {
    height: 70px;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-item__image.square {
    height: 90px;
  }
  .gallery-item__image.vertical {
    height: 120px;
  }
  .gallery-item__image.horizontal {
    height: 70px;
  }
  .gallery-item__image.panoramic {
    height: 60px;
  }
}
.gallery-item__image:hover {
  transform: scale(1.05);
}

.gallery-item__image-error {
  width: 100% !important;
  height: 100% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(125.8100961538, 26.5528846154, 5.6899038462) 0%, rgb(77.0168269231, 16.2548076923, 3.4831730769) 100%);
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 53.75em) {
  .gallery-item__image-error {
    padding: 0.8rem;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-item__image-error {
    padding: 0.6rem;
  }
}

.gallery-item__error-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 53.75em) {
  .gallery-item__error-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-item__error-icon {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
}

.gallery-item__error-text {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 53.75em) {
  .gallery-item__error-text {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-item__error-text {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
}

.gallery-item__error-filename {
  font-size: 1.2rem;
  opacity: 0.8;
  word-break: break-all;
}
@media only screen and (max-width: 53.75em) {
  .gallery-item__error-filename {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-item__error-filename {
    font-size: 0.8rem;
  }
}

.gallery-item__info {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 53.75em) {
  .gallery-item__info {
    padding: 1rem;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-item__info {
    padding: 0.8rem;
  }
}

.gallery-item__filename {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  word-break: break-word;
}
@media only screen and (max-width: 53.75em) {
  .gallery-item__filename {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-item__filename {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
}

.gallery-item__date {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 53.75em) {
  .gallery-item__date {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 30em) {
  .gallery-item__date {
    font-size: 0.8rem;
  }
}

.gallery-empty {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.gallery-empty__icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  opacity: 0.6;
}

.gallery-empty__text {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 1rem;
}

.gallery-empty__subtext {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  gap: 1.5rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(199, 42, 9, 0.3);
  border-top: 4px solid #c72a09;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.gallery-loading span {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 300;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.admin-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 9rem;
  background: #000000;
  border-bottom: 1px solid rgb(76.5, 76.5, 76.5);
  z-index: 1000;
  backdrop-filter: blur(1rem);
  transition: all 0.5s ease;
}
.admin-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 15rem;
  max-width: 140rem;
  margin: 0 auto;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 53.75em) {
  .admin-header__content {
    padding: 0 4rem;
  }
}
.admin-header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-header__logo img {
  height: 4rem;
  width: auto;
}
.admin-header__logo h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}
@media only screen and (max-width: 30em) {
  .admin-header__logo h1 {
    display: none;
  }
}
.admin-header__user {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-header__user span {
  color: #dfdad6;
  font-size: 1.6rem;
  text-transform: capitalize;
}
.admin-header__logout {
  background: #c72a09;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.admin-header__logout:hover {
  background: rgb(244.1394230769, 54.6826923077, 14.8605769231);
}
.admin-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.admin-header__menu-toggle span {
  display: block;
  height: 0.3rem;
  width: 100%;
  background: #ffffff;
  border-radius: 0.2rem;
  transition: all 0.3s ease;
  transform-origin: center;
}
@media only screen and (max-width: 53.75em) {
  .admin-header__menu-toggle {
    display: flex;
  }
}
.admin-header__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}
.admin-header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.admin-header__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.admin-sidebar {
  position: fixed;
  left: 0;
  top: 9rem;
  width: 25rem;
  height: calc(100vh - 7rem);
  background: #dfdad6;
  border-right: 3px solid #c72a09;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  z-index: 999;
  overflow-y: auto;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 53.75em) {
  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .admin-sidebar.active {
    transform: translateX(0);
  }
}

.admin-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.admin-nav__item {
  margin: 0;
}
.admin-nav__button {
  width: 100%;
  background-color: #dfdad6;
  color: #c72a09;
  display: flex;
  align-items: center;
  padding: 0.6rem 0 0 4rem;
  border: none;
  border-bottom: 2px solid #c72a09;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-size: 2rem;
}
.admin-nav__button:hover {
  background: #c72a09;
  color: #dfdad6;
}
.admin-nav__button.active {
  background: #c72a09;
  color: #dfdad6;
}
.admin-nav__icon {
  font-size: 1.2rem;
  width: 2rem;
  text-align: center;
}

.admin-body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

.admin-main {
  margin-left: 25rem;
  margin-top: 9rem;
  padding: 2rem;
  height: calc(100vh - 9rem);
  background: #dfdad6;
}
@media only screen and (max-width: 53.75em) {
  .admin-main {
    margin-left: 0;
    padding: 1rem;
  }
}

.admin-section {
  max-width: 120rem;
  margin: 0 auto;
}
.admin-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  border-bottom: 3px solid #c72a09;
}
.admin-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c72a09;
  margin: 0;
}
@media only screen and (max-width: 53.75em) {
  .admin-section__title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 30em) {
  .admin-section__title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 53.75em) {
  .admin-section__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.admin-section__title {
  font-size: 3.2rem;
  line-height: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  color: #c72a09;
}
.admin-section__subtitle {
  color: #dfdad6;
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
}
.admin-section__actions {
  display: flex;
  gap: 1rem;
}

.admin-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.admin-button--primary {
  background: #c72a09;
  font-size: 2rem;
  color: #ffffff;
}
.admin-button--primary:hover {
  background: rgb(244.1394230769, 54.6826923077, 14.8605769231);
  transform: translateY(-1px);
  box-shadow: 0 0.4rem 1.2rem rgba(199, 42, 9, 0.3);
}
.admin-button--secondary {
  background: #333333;
  color: #dfdad6;
  font-size: 2rem;
}
.admin-button--secondary:hover {
  background: rgb(63.75, 63.75, 63.75);
}
.admin-button--danger {
  background: #c72a09;
  color: #ffffff;
}
.admin-button--danger:hover {
  background: rgb(150.2067307692, 31.7019230769, 6.7932692308);
  transform: translateY(-1px);
}

.admin-form__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 53.75em) {
  .admin-form__grid {
    flex-direction: column;
  }
}
.admin-form__images-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 53.75em) {
  .admin-form__images-grid {
    flex-direction: column;
  }
}
@media only screen and (max-width: 30em) {
  .admin-form__images-grid {
    gap: 0.5rem;
  }
}
.admin-form__field {
  display: flex;
  flex-direction: column;
}
.admin-form__field:not(.admin-form__field--full):not(.admin-form__field--image) {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 0;
}
@media only screen and (max-width: 53.75em) {
  .admin-form__field:not(.admin-form__field--full):not(.admin-form__field--image) {
    flex: 1 1 100%;
  }
}
.admin-form__field--full {
  flex: 1 1 100%;
}
.admin-form__field--image {
  flex: 1 1 calc(33.333% - 0.67rem);
  min-width: 0;
}
@media only screen and (max-width: 53.75em) {
  .admin-form__field--image {
    flex: 1 1 100%;
  }
}
.admin-form__label {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #c72a09;
  border-style: solid;
  border-color: transparent;
  border-width: 2px;
  border-bottom-color: #c72a09;
}
.admin-form__input, .admin-form__textarea {
  padding: 0.75rem;
  background: #dfdad6;
  border-style: none;
  color: #000000;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  font-family: inherit;
}
.admin-form__input:focus, .admin-form__textarea:focus {
  outline: none;
  border-color: #c72a09;
  box-shadow: 0 0 0 1px #c72a09;
}
.admin-form__textarea {
  resize: vertical;
  min-height: 15rem;
}
.admin-form__calendar-container {
  position: relative;
  width: 100%;
}
.admin-form__date-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: #dfdad6;
  color: #000000;
  font-size: 1.4rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
.admin-form__date-input:hover {
  border-color: #c72a09;
}
.admin-form__date-input:focus-within {
  outline: none;
  border-color: #c72a09;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.admin-form__date-text {
  flex: 1;
  color: #000000;
}
.admin-form__calendar-icon {
  font-size: 1.2rem;
  opacity: 0.7;
}
.admin-form__time-container {
  margin-top: 0.5rem;
}
.admin-form__calendar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #c72a09;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 1rem;
  margin-top: 0.25rem;
}
.admin-form__calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.admin-form__calendar-nav {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  font-family: "Inter", sans-serif;
}
.admin-form__calendar-nav:hover {
  background: rgb(63.75, 63.75, 63.75);
}
.admin-form__calendar-month-year {
  font-weight: 600;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
}
.admin-form__calendar-weekdays {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.admin-form__calendar-weekdays div {
  flex: 1;
  text-align: center;
  font-weight: 900;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 0.5rem 0;
  font-family: "Inter", sans-serif;
}
.admin-form__calendar-days {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.admin-form__calendar-day {
  flex: 1 1 calc(14.285% - 0.18rem);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  border-style: solid;
  border-color: transparent;
  border-width: 1px;
}
.admin-form__calendar-day:hover {
  background: #ffffff;
  color: #c72a09;
}
.admin-form__calendar-day.selected {
  background-color: #ffffff;
  color: #c72a09;
}
.admin-form__calendar-day.other-month {
  color: white;
}
.admin-form__calendar-day.today {
  border: 2px solid #ffffff;
}
.admin-form__file-input {
  display: none;
}
.admin-form__file-preview {
  margin-top: 0.5rem;
  border: 2px dashed rgb(76.5, 76.5, 76.5);
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-form__file-preview:hover {
  border-color: #c72a09;
  background: rgba(255, 107, 53, 0.05);
}
.admin-form__file-preview.has-image {
  border-style: solid;
  border-color: #c72a09;
  padding: 0;
  min-height: auto;
}
.admin-form__file-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #dfdad6;
}
.admin-form__file-icon {
  font-size: 2rem;
  opacity: 0.7;
}
.admin-form__file-text {
  font-size: 0.9rem;
}
.admin-form__file-current {
  position: relative;
  width: 100%;
  background: #000000;
  border: 1px solid rgb(76.5, 76.5, 76.5);
  border-radius: 4px;
  overflow: hidden;
}
.admin-form__file-current-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
}
.admin-form__file-current-info {
  padding: 1rem;
  background: rgb(38.25, 38.25, 38.25);
  border-top: 1px solid rgb(76.5, 76.5, 76.5);
}
.admin-form__file-current-name {
  display: block;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
.admin-form__file-current-label {
  display: block;
  font-size: 0.8rem;
  color: #dfdad6;
  font-style: italic;
}
.admin-form__file-preview-new {
  position: relative;
  width: 100%;
  background: #000000;
  border: 1px solid #c72a09;
  border-radius: 4px;
  overflow: hidden;
}
.admin-form__file-preview-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
}
.admin-form__file-preview-info {
  padding: 1rem;
  background: rgb(38.25, 38.25, 38.25);
  border-top: 1px solid rgb(76.5, 76.5, 76.5);
}
.admin-form__file-preview-name {
  display: block;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
.admin-form__file-preview-label {
  display: block;
  font-size: 0.8rem;
  color: #c72a09;
  font-style: italic;
}
.admin-form__file-image-container {
  position: relative;
  width: 100%;
}
.admin-form__file-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
}
.admin-form__file-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(244, 67, 54, 0.9);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.admin-form__file-remove:hover {
  background: #c72a09;
  transform: scale(1.1);
}
.admin-form__upload-progress {
  margin-top: 0.5rem;
  display: none;
}
.admin-form__upload-progress.show {
  display: block;
}
.admin-form__progress-bar {
  width: 100%;
  height: 0.5rem;
  background: rgb(76.5, 76.5, 76.5);
  overflow: hidden;
}
.admin-form__progress-fill {
  height: 100%;
  background: #c72a09;
  transition: width 0.3s ease;
  width: 0%;
}
.admin-form__progress-text {
  font-size: 0.8rem;
  color: #dfdad6;
  margin-top: 0.25rem;
  text-align: center;
}

.admin-participants-section {
  margin-top: 2rem;
  padding-top: 2rem;
}

.admin-form__section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #c72a09;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #c72a09;
}

.admin-participants-controls {
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.admin-participants-add {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}
.admin-participants-add input {
  flex: 1;
  min-width: 200px;
}
.admin-participants-add button {
  white-space: nowrap;
}

.admin-participants-list {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid rgb(76.5, 76.5, 76.5);
  border-radius: 4px;
  background: #dfdad6;
}

.admin-participant-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgb(76.5, 76.5, 76.5);
  transition: background-color 0.3s ease;
}
.admin-participant-item:last-child {
  border-bottom: none;
}
.admin-participant-item:hover {
  background: rgb(38.25, 38.25, 38.25);
}

.admin-participant-name {
  font-weight: 600;
  color: #000000;
  font-size: 1.6rem;
}

.admin-participant-remove {
  background: #c72a09;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.admin-participant-remove:hover {
  background: rgb(150.2067307692, 31.7019230769, 6.7932692308);
  transform: translateY(-1px);
}
.admin-participant-remove:active {
  transform: translateY(0);
}

.admin-participants-stats {
  margin-top: 1rem;
  padding: 1rem;
  background: #dfdad6;
  border-radius: 4px;
  font-size: 1.3rem;
}
.admin-participants-stats .stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.admin-participants-stats .stats-row:last-child {
  margin-bottom: 0;
}
.admin-participants-stats .stats-occupation {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  max-width: 200px;
}
.admin-participants-stats .occupation-bar {
  flex: 1;
  height: 1.8rem;
  background: rgb(200.6438356164, 192.1506849315, 185.3561643836);
  overflow: hidden;
  position: relative;
}
.admin-participants-stats .occupation-fill {
  height: 100%;
  background: linear-gradient(90deg, #c72a09 0%, rgb(244.1394230769, 54.6826923077, 14.8605769231) 100%);
  width: 0%;
  position: relative;
}
.admin-participants-stats .occupation-fill.low {
  background: linear-gradient(90deg, #4CAF50 0%, rgb(109.9800796813, 192.0199203187, 113.2948207171) 100%);
}
.admin-participants-stats .occupation-fill.medium {
  background: linear-gradient(90deg, #FF9800 0%, rgb(255, 172.6, 51) 100%);
}
.admin-participants-stats .occupation-fill.high {
  background: linear-gradient(90deg, #F44336 0%, rgb(246.6462264151, 112.2264150943, 102.3537735849) 100%);
}
.admin-participants-stats .occupation-text {
  font-weight: 700;
  font-size: 1.8rem;
  min-width: 3rem;
  text-align: right;
  color: #c72a09;
}
.admin-participants-stats .stats-label {
  color: #000000;
  font-size: 1.6rem;
}
.admin-participants-stats .stats-value {
  color: #c72a09;
  font-size: 2rem;
}
.admin-participants-stats .stats-percentage {
  color: #c72a09;
  font-size: 2rem;
}

.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.admin-modal.active {
  display: flex;
}
.admin-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(0.5rem);
}
.admin-modal__content {
  position: relative;
  background: #dfdad6;
  border: 1px solid rgb(76.5, 76.5, 76.5);
  max-width: 80rem;
  width: 100%;
  max-height: 90vh;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.5);
  overflow: scroll;
  padding: 3rem;
}
.admin-modal__content--small {
  max-width: 40rem;
}
@media only screen and (max-width: 53.75em) {
  .admin-modal__content {
    padding: 1rem;
  }
}
.admin-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}
.admin-modal__title {
  width: 100%;
  font-size: 3.5rem;
  font-weight: 600;
  margin: 0;
  color: #c72a09;
  text-transform: uppercase;
  border-bottom: 2px solid #c72a09;
  line-height: 2.5rem;
}
.admin-modal__close {
  background: none;
  border: none;
  color: #dfdad6;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.admin-modal__close:hover {
  background: rgb(63.75, 63.75, 63.75);
  color: #ffffff;
}
.admin-modal__body {
  padding: 1.5rem;
}
.admin-modal__form {
  padding: 1.5rem;
}
.admin-modal__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid rgb(76.5, 76.5, 76.5);
}
@media only screen and (max-width: 53.75em) {
  .admin-modal__actions {
    flex-direction: column;
  }
}

.admin-events-table-container {
  overflow: hidden;
}

.admin-events-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-events-table th, .admin-events-table td {
  padding: 1.5rem 1rem;
  text-align: left;
}
.admin-events-table th {
  background: #dfdad6;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #c72a09;
}
.admin-events-table td {
  font-size: 0.9rem;
  color: #000000;
}
.admin-events-table tbody tr {
  transition: background-color 0.3s ease;
  border-style: solid;
  border-color: transparent;
  border-width: 1px;
}
.admin-events-table tbody tr:hover {
  border-color: #c72a09;
  border-width: 1px;
}
.admin-events-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-event-name {
  font-weight: 600;
  font-size: 1.4rem;
  color: #000000;
  cursor: pointer;
  transition: color 0.3s ease;
}
.admin-event-name:hover {
  color: #c72a09;
  font-weight: 900;
}

.admin-event-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.admin-event-date__start {
  color: #000000;
  font-size: 1.2rem;
}

.admin-event-date__end {
  font-size: 1.2rem;
  color: #000000;
}

.admin-event-status {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}
.admin-event-status--activo {
  background: #c72a09;
  color: #ffffff;
}
.admin-event-status--cancelado {
  background: #dfdad6;
  color: #000000;
}
.admin-event-status--pasado {
  background: #dfdad6;
  color: #000000;
}

.admin-event-participants {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-event-participants__count {
  font-weight: 600;
  color: #000000;
  font-size: 1.2rem;
}

.admin-event-participants__max {
  color: #000000;
  font-size: 1.2rem;
}

.admin-event-actions {
  display: flex;
  gap: 0.5rem;
}

.admin-event-action-btn {
  padding: 0.8rem 0.75rem;
  border: none;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.admin-event-action-btn--edit {
  background: #c72a09;
  color: #ffffff;
}
.admin-event-action-btn--edit:hover {
  background: rgb(150.2067307692, 31.7019230769, 6.7932692308);
}
.admin-event-action-btn--delete {
  background: #c72a09;
  color: #ffffff;
}
.admin-event-action-btn--delete:hover {
  background: rgb(150.2067307692, 31.7019230769, 6.7932692308);
}

.admin-loading-row td,
.admin-empty-row td,
.admin-error-row td {
  text-align: center;
  padding: 2rem;
}

@media only screen and (max-width: 53.75em) {
  .admin-events-table-container {
    overflow-x: auto;
  }
  .admin-events-table {
    min-width: 600px;
  }
  .admin-event-actions {
    flex-direction: column;
    gap: 0.25rem;
  }
  .admin-event-action-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
  }
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 30em) {
  .admin-stats {
    grid-template-columns: 1fr;
  }
}

.admin-stat {
  background: rgb(38.25, 38.25, 38.25);
  border: 1px solid rgb(76.5, 76.5, 76.5);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
.admin-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.3);
  border-color: #c72a09;
}
.admin-stat__icon {
  font-size: 2rem;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c72a09;
}
.admin-stat__number {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
.admin-stat__label {
  margin: 0;
  color: #dfdad6;
  font-size: 0.9rem;
}

.admin-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 53.75em) {
  .admin-filters {
    flex-direction: column;
    align-items: stretch;
  }
}

.admin-search {
  flex: 1;
  min-width: 30rem;
}
@media only screen and (max-width: 53.75em) {
  .admin-search {
    min-width: auto;
  }
}

.admin-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #dfdad6;
  border: 1px solid #c72a09;
  color: #000000;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.admin-input:focus {
  outline: none;
  border-color: #c72a09;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.admin-input::placeholder {
  color: grey;
}

.admin-filter-buttons {
  display: flex;
  gap: 0.5rem;
}

.admin-filter-btn {
  padding: 0.8rem 1rem;
  background: #c72a09;
  color: #dfdad6;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border-style: none;
}
.admin-filter-btn:hover, .admin-filter-btn.active {
  background: rgb(150.2067307692, 31.7019230769, 6.7932692308);
}

.admin-notification {
  position: fixed;
  top: 9rem;
  right: 2rem;
  background: rgb(200.6438356164, 192.1506849315, 185.3561643836);
  border: none;
  border-radius: 0px;
  padding: 1.5rem 2rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.3);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  width: 25rem;
  color: #000000;
}
.admin-notification.show {
  transform: translateX(0);
}
.admin-notification--success {
  background-color: rgb(0, 128, 28);
}
.admin-notification--error {
  background-color: rgb(202, 49, 49);
}
.admin-notification--warning {
  background-color: rgb(241, 182, 20);
}
.admin-notification__content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-notification__icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.admin-notification__icon svg {
  width: 100%;
  height: 100%;
}
.admin-notification__message {
  flex: 1;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
}
.admin-notification__close {
  background: none;
  border: none;
  color: #dfdad6;
  cursor: pointer;
  font-size: 1.2rem;
}

.admin-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: #dfdad6;
}
.admin-loading__spinner {
  width: 4rem;
  height: 4rem;
  border: 3px solid rgb(76.5, 76.5, 76.5);
  border-top: 3px solid #c72a09;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.admin-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #dfdad6;
}
.admin-empty__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.admin-empty h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: #ffffff;
}

.admin-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #dfdad6;
}
.admin-coming-soon__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.admin-coming-soon h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: #ffffff;
}

.admin-filters {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 53.75em) {
  .admin-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
}

.admin-filter-dropdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 250px;
}
@media only screen and (max-width: 53.75em) {
  .admin-filter-dropdown {
    min-width: auto;
  }
}

.admin-label {
  font-size: 1.4rem;
  color: #dfdad6;
  font-weight: 500;
}

.admin-select {
  padding: 1rem 1.5rem;
  border: 1px solid rgb(76.5, 76.5, 76.5);
  border-radius: 4px;
  background: rgb(38.25, 38.25, 38.25);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-select:focus {
  outline: none;
  border-color: #c72a09;
  box-shadow: 0 0 0 2px rgba(199, 42, 9, 0.2);
}
.admin-select:hover {
  border-color: #c72a09;
}
.admin-select option {
  background: rgb(38.25, 38.25, 38.25);
  color: #ffffff;
  padding: 0.5rem;
}

.admin-gallery-stats {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgb(38.25, 38.25, 38.25);
  border-radius: 4px;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.admin-gallery-stats .stats-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 150px;
}
.admin-gallery-stats .stats-label {
  font-size: 1.2rem;
  color: #dfdad6;
  font-weight: 500;
}
.admin-gallery-stats .stats-value {
  font-size: 2rem;
  color: #c72a09;
  font-weight: 700;
}
.admin-gallery-stats .stats-row--progress {
  grid-column: 1/-1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(76.5, 76.5, 76.5);
}
.admin-gallery-stats .stats-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.admin-gallery-stats .stats-progress__bar {
  flex: 1;
  height: 1.2rem;
  background: rgb(12.75, 12.75, 12.75);
  border-radius: 0.6rem;
  overflow: hidden;
  position: relative;
}
.admin-gallery-stats .stats-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #c72a09 0%, rgb(244.1394230769, 54.6826923077, 14.8605769231) 100%);
  border-radius: 0.6rem;
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
}
.admin-gallery-stats .stats-progress__fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  animation: progress-shine 2s infinite;
}
.admin-gallery-stats .stats-progress__text {
  font-size: 1.4rem;
  color: #c72a09;
  font-weight: 600;
  min-width: 4rem;
  text-align: right;
}
@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.admin-gallery-container {
  height: 60vh;
  overflow-y: auto;
  border: 1px solid rgb(76.5, 76.5, 76.5);
  border-radius: 4px;
  padding: 1rem;
  background: rgb(38.25, 38.25, 38.25);
}
.admin-gallery-container::-webkit-scrollbar {
  width: 8px;
}
.admin-gallery-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.admin-gallery-container::-webkit-scrollbar-thumb {
  background: #c72a09;
  border-radius: 4px;
}
.admin-gallery-container::-webkit-scrollbar-thumb:hover {
  background: rgb(150.2067307692, 31.7019230769, 6.7932692308);
}
@media only screen and (max-width: 53.75em) {
  .admin-gallery-container {
    height: 50vh;
  }
}
@media only screen and (max-width: 30em) {
  .admin-gallery-container {
    height: 40vh;
  }
}

.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  grid-auto-rows: 10px;
}
@media only screen and (max-width: 53.75em) {
  .admin-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .admin-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.2rem;
  }
}

.admin-gallery-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #dfdad6;
}
.admin-gallery-loading .admin-loading__spinner {
  margin-bottom: 1rem;
}
.admin-gallery-loading p {
  font-size: 1.3rem;
  margin: 0;
}

.admin-gallery-item {
  background: rgb(38.25, 38.25, 38.25);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  grid-row-end: span var(--row-span, 1);
}
.admin-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.2);
}
.admin-gallery-item__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 200px;
  max-height: 400px;
}
.admin-gallery-item__image.square {
  aspect-ratio: 1;
  object-fit: cover;
}
.admin-gallery-item__image.vertical {
  aspect-ratio: 3/4;
  object-fit: cover;
}
.admin-gallery-item__image.horizontal {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.admin-gallery-item__image.panoramic {
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media only screen and (max-width: 53.75em) {
  .admin-gallery-item__image {
    min-height: 150px;
    max-height: 300px;
  }
}
@media only screen and (max-width: 30em) {
  .admin-gallery-item__image {
    min-height: 120px;
    max-height: 250px;
  }
}
.admin-gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.admin-gallery-item:hover .admin-gallery-item__overlay {
  opacity: 1;
}
.admin-gallery-item--placeholder {
  background: rgb(25.5, 25.5, 25.5);
  border: 2px dashed rgb(76.5, 76.5, 76.5);
}
.admin-gallery-item--placeholder:hover {
  transform: none;
  box-shadow: none;
}
.admin-gallery-item__placeholder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(30.6, 30.6, 30.6) 0%, rgb(17.85, 17.85, 17.85) 100%);
  border-radius: 6px;
  position: relative;
}
.admin-gallery-item__placeholder--square {
  height: 280px;
}
.admin-gallery-item__placeholder--vertical {
  height: 350px;
}
.admin-gallery-item__placeholder--horizontal {
  height: 240px;
}
.admin-gallery-item__placeholder--panoramic {
  height: 200px;
}
@media only screen and (max-width: 53.75em) {
  .admin-gallery-item__placeholder--square {
    height: 220px;
  }
  .admin-gallery-item__placeholder--vertical {
    height: 280px;
  }
  .admin-gallery-item__placeholder--horizontal {
    height: 180px;
  }
  .admin-gallery-item__placeholder--panoramic {
    height: 150px;
  }
}
@media only screen and (max-width: 30em) {
  .admin-gallery-item__placeholder--square {
    height: 180px;
  }
  .admin-gallery-item__placeholder--vertical {
    height: 220px;
  }
  .admin-gallery-item__placeholder--horizontal {
    height: 140px;
  }
  .admin-gallery-item__placeholder--panoramic {
    height: 120px;
  }
}
.admin-gallery-item__placeholder-icon {
  font-size: 3rem;
  color: #dfdad6;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.admin-gallery-item__placeholder-text {
  font-size: 1.2rem;
  color: #dfdad6;
  text-align: center;
  opacity: 0.7;
  font-weight: 500;
}
.admin-gallery-item__image-error {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(125.8100961538, 26.5528846154, 5.6899038462) 0%, rgb(77.0168269231, 16.2548076923, 3.4831730769) 100%);
  border-radius: 6px;
  color: #ffffff;
}
.admin-gallery-item__image-error--square {
  height: 280px;
}
.admin-gallery-item__image-error--vertical {
  height: 350px;
}
.admin-gallery-item__image-error--horizontal {
  height: 240px;
}
.admin-gallery-item__image-error--panoramic {
  height: 200px;
}
@media only screen and (max-width: 53.75em) {
  .admin-gallery-item__image-error--square {
    height: 220px;
  }
  .admin-gallery-item__image-error--vertical {
    height: 280px;
  }
  .admin-gallery-item__image-error--horizontal {
    height: 180px;
  }
  .admin-gallery-item__image-error--panoramic {
    height: 150px;
  }
}
@media only screen and (max-width: 30em) {
  .admin-gallery-item__image-error--square {
    height: 180px;
  }
  .admin-gallery-item__image-error--vertical {
    height: 220px;
  }
  .admin-gallery-item__image-error--horizontal {
    height: 140px;
  }
  .admin-gallery-item__image-error--panoramic {
    height: 120px;
  }
}
.admin-gallery-item__error-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}
.admin-gallery-item__error-text {
  font-size: 1.1rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.admin-gallery-item__error-filename {
  font-size: 0.9rem;
  text-align: center;
  opacity: 0.8;
  word-break: break-all;
  max-width: 90%;
}
.admin-gallery-item__actions {
  display: flex;
  gap: 1rem;
}
.admin-gallery-item__action-btn {
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.admin-gallery-item__action-btn--view {
  background: #c72a09;
  color: white;
}
.admin-gallery-item__action-btn--view:hover {
  background: rgb(150.2067307692, 31.7019230769, 6.7932692308);
  transform: scale(1.1);
}
.admin-gallery-item__action-btn--delete {
  background: #c72a09;
  color: white;
}
.admin-gallery-item__action-btn--delete:hover {
  background: rgb(150.2067307692, 31.7019230769, 6.7932692308);
  transform: scale(1.1);
}
.admin-gallery-item__info {
  padding: 1rem;
}
.admin-gallery-item__filename {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-gallery-item__details {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #dfdad6;
}
.admin-gallery-item__size {
  font-weight: 500;
}
.admin-gallery-item__compression {
  color: #c72a09;
  font-weight: 600;
}

.admin-image-view {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  height: 60vh;
}
@media only screen and (max-width: 53.75em) {
  .admin-image-view {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.admin-image-view__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(38.25, 38.25, 38.25);
  border-radius: 4px;
  overflow: hidden;
}
.admin-image-view__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.admin-image-view__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.admin-image-view__details {
  background: rgb(38.25, 38.25, 38.25);
  padding: 1.5rem;
  border-radius: 4px;
}
.admin-image-view .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-image-view .detail-row:last-child {
  border-bottom: none;
}
.admin-image-view .detail-label {
  font-size: 1.3rem;
  color: #dfdad6;
  font-weight: 500;
}
.admin-image-view .detail-value {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 600;
}

.admin-gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.admin-file-preview {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: rgb(38.25, 38.25, 38.25);
}
.admin-file-preview__image {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}
.admin-file-preview__name {
  padding: 0.5rem;
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-file-preview__remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}
.admin-file-preview__remove:hover {
  background: #c72a09;
}

.admin-upload-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.admin-upload-progress__bar {
  flex: 1;
  height: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}
.admin-upload-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #c72a09 0%, rgb(244.1394230769, 54.6826923077, 14.8605769231) 100%);
  width: 0%;
  transition: width 0.3s ease;
}
.admin-upload-progress__text {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
  min-width: 4rem;
  text-align: center;
}

.admin-form__file-info {
  margin-top: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border-left: 3px solid #c72a09;
}
.admin-form__file-info p {
  margin: 0.3rem 0;
  font-size: 1.1rem;
  color: #dfdad6;
  line-height: 1.4;
}

.admin-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.admin-pagination__btn {
  padding: 0.8rem 1.5rem;
  background: rgb(38.25, 38.25, 38.25);
  color: #ffffff;
  border: 1px solid rgb(76.5, 76.5, 76.5);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.admin-pagination__btn:hover:not(:disabled) {
  background: #c72a09;
  color: white;
  border-color: #c72a09;
}
.admin-pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.admin-pagination__info {
  font-size: 1.3rem;
  color: #dfdad6;
  font-weight: 500;
}

.admin-modal__content--large {
  max-width: 90vw;
  max-height: 90vh;
  width: 120rem;
}
@media only screen and (max-width: 53.75em) {
  .admin-modal__content--large {
    width: 95vw;
    max-height: 95vh;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  /* Fondo con patrón del iso */
  background-color: #dfdad6;
}

.evento-content {
  max-width: 1000px;
  margin: 0 auto;
  background: #dfdad6;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 53.75em) {
  .evento-content {
    max-width: 100%;
    box-shadow: none;
  }
}

.evento-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  text-align: center;
  min-height: 100vh;
  background: #dfdad6;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 53.75em) {
  .evento-loading {
    max-width: 100%;
  }
}
.evento-loading__spinner {
  width: 4rem;
  height: 4rem;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top: 3px solid #c72a09;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
.evento-loading p {
  color: #000000;
  font-size: 1.1rem;
}

.evento-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  text-align: center;
  min-height: 100vh;
  background: #dfdad6;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 53.75em) {
  .evento-error {
    max-width: 100%;
  }
}
.evento-error__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.evento-error h2 {
  color: #000000;
  margin-bottom: 1rem;
}
.evento-error p {
  color: rgb(76.5, 76.5, 76.5);
  margin-bottom: 2rem;
}
.evento-error__btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #c72a09;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.evento-error__btn:hover {
  background: rgb(244.1394230769, 54.6826923077, 14.8605769231);
  transform: translateY(-1px);
}

.evento-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 12rem;
  padding-bottom: 4rem;
  overflow: hidden;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 53.75em) {
  .evento-section {
    padding: 2rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-section {
    padding: 2rem 4rem;
  }
}
.evento-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.evento-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.evento-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}
.evento-section__container {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 30em) {
  .evento-section__container {
    padding: 2rem 1rem;
  }
}

.evento-section--hero {
  background: #dfdad6;
}
.evento-section--hero .evento-section__logo {
  width: 15rem;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 1rem);
  z-index: 3;
}
.evento-section--hero .evento-section__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 30em) {
  .evento-section--hero .evento-section__container {
    padding-top: 6rem;
  }
}

.evento-date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.evento-date__day {
  font-size: 12rem;
  font-weight: 800;
  color: #c72a09;
  line-height: 1;
  line-height: 0.8;
}
.evento-date__separator {
  font-size: 12rem;
  font-weight: 800;
  color: #c72a09;
  line-height: 1;
  line-height: 0.8;
  margin: 0 0.2rem;
}
.evento-date__month {
  font-size: 5rem;
  font-weight: 700;
  color: #c72a09;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.evento-date__day-container {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
@media only screen and (max-width: 30em) {
  .evento-date {
    margin-bottom: 2rem;
  }
}

.evento-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}
.evento-title__first {
  font-size: 3.5rem;
  font-weight: 100;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}
.evento-title__rest {
  font-size: 5rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}
@media only screen and (max-width: 30em) {
  .evento-title__rest {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-title {
    position: static;
    margin-bottom: 2rem;
  }
}

.evento-price {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  white-space: nowrap;
}
@media only screen and (max-width: 30em) {
  .evento-price.late-bird {
    margin-top: -10rem;
  }
}
.evento-price__logo {
  height: 6rem;
  width: auto;
}
.evento-price__label {
  font-size: 2rem;
  font-weight: 200;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media only screen and (max-width: 53.75em) {
  .evento-price__label {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-price__label {
    font-size: 2rem;
  }
}
.evento-price__amount {
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  margin-left: 4rem;
}
@media only screen and (max-width: 53.75em) {
  .evento-price__amount {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-price__amount {
    font-size: 3rem;
    margin-left: 1rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-price {
    margin-bottom: 2rem;
    justify-content: space-between;
  }
}

.evento-section--description {
  background: #dfdad6;
}
.evento-section--description .evento-section__container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.evento-description {
  padding: 0;
}
.evento-description__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8rem;
}
.evento-description__logo-img {
  height: 8rem;
  width: auto;
}
@media only screen and (max-width: 53.75em) {
  .evento-description__logo-img {
    height: 6rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-description__logo-img {
    height: 10rem;
  }
}
.evento-description__text {
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  text-align: justify;
  margin: 0 0 4rem 0;
}
.evento-description__text:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 53.75em) {
  .evento-description__text {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-description__text {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}
.evento-description__text .highlight {
  color: #c72a09;
  font-weight: 700;
}
.evento-description__text .highlight-white {
  color: #ffffff;
  font-weight: 700;
}

.evento-section--details {
  background: #dfdad6;
}
.evento-section--details .evento-section__container {
  width: 100%;
  height: 100%;
}

.evento-details {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.evento-details__header {
  text-align: left;
}
.evento-details__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}
.evento-details__title-word {
  font-size: 6rem;
  font-weight: 800;
  color: #c72a09;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 53.75em) {
  .evento-details__title-word {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-details__title-word {
    font-size: 7rem;
  }
}
.evento-details__section {
  text-align: right;
}
.evento-details__text {
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}
@media only screen and (max-width: 53.75em) {
  .evento-details__text {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-details__text {
    font-size: 1.3rem;
  }
}
.evento-details__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
.evento-details__list li {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 53.75em) {
  .evento-details__list li {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-details__list li {
    font-size: 2.5rem;
  }
}
.evento-details__list li:last-child {
  margin-bottom: 0;
}
.evento-details__departure {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1rem;
  text-align: right;
}
.evento-details__departure-label {
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 53.75em) {
  .evento-details__departure-label {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-details__departure-label {
    font-size: 2.4rem;
  }
}
.evento-details__departure-value {
  font-size: 3rem;
  font-weight: 600;
  color: #c72a09;
  text-transform: uppercase;
}
@media only screen and (max-width: 53.75em) {
  .evento-details__departure-value {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-details__departure-value {
    font-size: 3rem;
  }
}

a[href*="instagram.com"]::before, a[href*="instagram.com"]::after,
a[href*="wa.me"]::before,
a[href*="wa.me"]::after,
a[href*=whatsapp]::before,
a[href*=whatsapp]::after,
a[target=_blank]::before,
a[target=_blank]::after {
  display: none !important;
}
a[href*="instagram.com"]:target,
a[href*="wa.me"]:target,
a[href*=whatsapp]:target,
a[target=_blank]:target {
  display: inline-block !important;
  position: static !important;
  transform: none !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
}
a[href*="instagram.com"]:focus,
a[href*="wa.me"]:focus,
a[href*=whatsapp]:focus,
a[target=_blank]:focus {
  outline: none !important;
  box-shadow: none !important;
}

.evento-instagram {
  display: flex;
  justify-content: center;
  align-items: center;
}
.evento-instagram__link {
  color: #dfdad6;
  font-size: 1.8rem;
  font-weight: 200;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
.evento-instagram__link::before, .evento-instagram__link::after {
  display: none !important;
}
.evento-instagram__link:target {
  display: inline !important;
  position: static !important;
  transform: none !important;
}
.evento-instagram__link:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 53.75em) {
  .evento-instagram__link {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-instagram__link {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-instagram {
    position: static;
    margin-top: 2rem;
  }
}

.evento-reservar-btn {
  background: #c72a09;
  width: 50%;
  color: #ffffff;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 2rem auto;
  text-decoration: none;
  text-align: center;
}
.evento-reservar-btn:hover {
  background: rgb(244.1394230769, 54.6826923077, 14.8605769231);
  transform: translateY(-2px);
}
.evento-reservar-btn:active {
  transform: translateY(0);
}
.evento-reservar-btn:focus {
  outline: none !important;
  box-shadow: none !important;
  background: #c72a09 !important;
  color: #ffffff !important;
}
.evento-reservar-btn:visited {
  color: #ffffff;
}
.evento-reservar-btn:link {
  color: #ffffff;
}
.evento-reservar-btn::before, .evento-reservar-btn::after {
  display: none !important;
}
.evento-reservar-btn:target {
  display: inline-block !important;
  position: static !important;
  transform: none !important;
}
@media only screen and (max-width: 53.75em) {
  .evento-reservar-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 30em) {
  .evento-reservar-btn {
    padding: 1.5rem 2rem;
    font-size: 2rem;
    margin: 1.5rem;
    width: 100%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=style.css.map */
