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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Outfit", sans-serif;
  color: #2c3e50;
  line-height: 1.6;
  background: #ffffff;
}

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

a {
  color: #003d63;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #002d4d;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0px;
}
.btn--primary {
  background: #01c2d4;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(1, 194, 212, 0.4);
}
.btn--primary:hover {
  background: #008c83;
  box-shadow: 0 6px 20px rgba(1, 194, 212, 0.5);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(1, 194, 212, 0.3);
}

.hero {
  position: relative;
  height: 420px;
  max-height: 420px;
  background: url("assets/images/hero-stadium.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: visible;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 50, 80, 0.5) 0%, rgba(10, 50, 80, 0.7) 60%, rgba(10, 50, 80, 0.85) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 900px;
}
.hero__logos {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.hero__logos img {
  height: 100px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero__album-image {
  position: absolute;
  bottom: -153px;
  left: 0px;
  z-index: 10;
}
.hero__album-image img {
  width: 450px;
}
.hero__text {
  position: absolute;
  right: 25px;
  bottom: 25px;
}
.hero__title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  text-align: center;
}

@keyframes floatAlbum {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.card-promo {
  margin-top: 130px;
  padding: 50px 0 30px;
  text-align: center;
  background: #ffffff;
}
.card-promo__card-image {
  width: 180px;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}
.card-promo__card-image:hover {
  transform: scale(1.05) rotate(-2deg);
}
.card-promo__card {
  width: 100%;
  border-radius: 10px;
}
.card-promo__title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #002d4d;
  line-height: 1.4;
}
.card-promo__title strong {
  font-weight: 700;
}

.steps {
  padding: 30px 0 40px;
  background: #ffffff;
}
.steps__grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.steps__item {
  flex: 1;
  text-align: center;
  max-width: 160px;
}
.steps__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.steps__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.steps__icon svg {
  width: 100%;
  height: 100%;
}
.steps__icon:hover {
  transform: scale(1.1);
}
.steps__item p {
  font-size: 0.85rem;
  color: #5a6c7d;
  line-height: 1.4;
}
.steps__item p strong {
  color: #003d63;
}

.form-section {
  padding: 40px 0 50px;
  background: #f4f7f9;
}
.form-section__title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #002d4d;
  margin-bottom: 24px;
}

.form {
  max-width: 480px;
  margin: 0 auto;
}
.form__group {
  margin-bottom: 16px;
}
.form__group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}
.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5a6c7d;
  margin-bottom: 6px;
}
.form__label--checkbox {
  font-size: 0.82rem;
  color: #5a6c7d;
  margin-bottom: 0;
  line-height: 1.4;
  cursor: pointer;
}
.form__input, .form__select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #f5a022;
  border-radius: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  color: #2c3e50;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form__input:focus, .form__select:focus {
  border-color: #003d63;
  box-shadow: 0 0 0 3px rgba(0, 61, 99, 0.15);
}
.form__input.error, .form__select.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}
.form__select-wrapper {
  position: relative;
}
.form__select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #5a6c7d;
  pointer-events: none;
}
.form__select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.form__checkbox {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #003d63;
  cursor: pointer;
}
.form__link {
  color: #003d63;
  text-decoration: underline;
  font-weight: 600;
}
.form__link:hover {
  color: #002d4d;
}
.form__submit {
  text-align: center;
  margin-top: 24px;
}

.album-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 250px;
  width: 100%;
  overflow: visible;
}
.album-cta__bg {
  position: absolute;
  inset: 0;
  background: #01c2d4;
  z-index: 0;
  border-top-left-radius: 100px;
}
.album-cta__content {
  z-index: 1;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.album-cta__text-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.album-cta__globe {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  opacity: 0.8;
}
.album-cta__globe img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.album-cta__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
}
.album-cta__album-img {
  width: 250px;
  position: absolute;
  right: -40px;
  bottom: -100px;
}
.album-cta__album {
  width: 100%;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

@keyframes spinGlobe {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.events {
  padding: 50px 0;
  text-align: center;
}
.events__intro {
  font-size: 1rem;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 32px;
}
.events__intro strong {
  color: #002d4d;
  font-weight: 700;
}
.events__grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}
.events__card {
  flex: 1;
  max-width: 260px;
  text-align: left;
}
.events__card:nth-child(1) .events__city-title {
  background-color: #f5a022 !important;
}
.events__card:nth-child(2) .events__city-title {
  background-color: #01c2d4;
}
.events__city-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 24px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 15px;
  margin-bottom: 20px;
  text-align: center;
}
.events__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.events__detail-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.events__detail-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.events__detail-icon svg {
  width: 100%;
  height: 100%;
}
.events__detail span {
  font-size: 0.9rem;
  color: #2c3e50;
  line-height: 1.4;
}
.events__activities-title {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 24px;
}
.events__activities {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.events__activity {
  text-align: center;
}
.events__activity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.events__activity-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.events__activity-icon svg {
  width: 100%;
  height: 100%;
}
.events__activity-icon:hover {
  transform: scale(1.15) rotate(5deg);
}
.events__activity span {
  font-size: 0.85rem;
  color: #5a6c7d;
  line-height: 1.4;
}

.footer-cta {
  padding: 40px 0;
  background: #f5a022;
  text-align: center;
}
.footer-cta__text {
  font-size: 1.1rem;
  color: #2c3e50;
  line-height: 1.5;
}
.footer-cta__text strong {
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}
.modal.active .modal__content {
  transform: translateY(0) scale(1);
}
.modal__content--pdf {
  max-width: 800px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.modal__pdf-container {
  flex: 1;
  width: 100%;
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f7f9;
  border: 1px solid #d4dce4;
}
.modal__pdf-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}
.modal__icon svg {
  width: 100%;
  height: 100%;
}
.modal__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #002d4d;
  margin-bottom: 8px;
}
.modal__message {
  font-size: 0.95rem;
  color: #5a6c7d;
  margin-bottom: 24px;
  line-height: 1.5;
}
.modal__btn {
  min-width: 140px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero {
    height: 600px;
    max-height: 600px;
  }
  .hero__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: -40px;
  }
  .hero__album-image {
    position: relative;
    bottom: 0;
  }
  .hero__album-image img {
    width: 220px;
  }
  .hero__text {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .hero__text .hero__title {
    font-size: 2.6rem;
  }
  .card-promo {
    padding: 40px 0 24px;
  }
  .card-promo__title {
    font-size: 1.2rem;
  }
  .steps__grid {
    gap: 12px;
  }
  .steps__icon {
    width: 56px;
    height: 56px;
  }
  .steps__item p {
    font-size: 0.78rem;
  }
  .form-section__title {
    font-size: 1.3rem;
  }
  .album-cta {
    padding: 36px 0;
  }
  .album-cta__content {
    flex-direction: column;
    text-align: center;
  }
  .album-cta .album-cta__text-group {
    flex-direction: row;
    text-align: left;
    margin-bottom: 20px;
  }
  .album-cta .album-cta__album-img {
    display: none;
  }
  .album-cta__title {
    font-size: 1.15rem;
  }
  .events__intro {
    font-size: 0.92rem;
  }
  .events__intro br {
    display: none;
  }
  .events__grid {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .events__card {
    max-width: 300px;
    width: 100%;
  }
  .events__activities {
    gap: 24px;
  }
  .footer-cta__text {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .card-promo__card-image {
    width: 140px;
  }
  .card-promo__title {
    font-size: 1.05rem;
  }
  .steps__grid {
    flex-wrap: wrap;
  }
  .steps__item {
    min-width: 120px;
  }
  .form__input, .form__select {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  .album-cta__globe {
    width: 50px;
    height: 50px;
  }
  .album-cta__title {
    font-size: 1rem;
  }
  .events__activities {
    gap: 16px;
  }
  .events__activity-icon {
    width: 44px;
    height: 44px;
  }
  .events__activity span {
    font-size: 0.78rem;
  }
  .footer-cta {
    padding: 28px 0;
  }
  .footer-cta__text {
    font-size: 0.92rem;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 700px;
  }
  .card-promo {
    padding: 60px 0 40px;
  }
  .card-promo__card-image {
    width: 220px;
  }
  .card-promo__title {
    font-size: 1.6rem;
  }
  .steps__icon {
    width: 64px;
    height: 64px;
  }
  .form-section__title {
    font-size: 1.8rem;
  }
  .album-cta__title {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=styles.css.map */