@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:ital,opsz@0,14..32;1,14..32&display=swap");

@font-face {
  font-family: "United Sans SmCd Bd";
  src: url("fonts/aefc0444d36e7dbe71820307a1dde88a.woff2") format("woff2"),
    url("fonts/aefc0444d36e7dbe71820307a1dde88a.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "United Sans SmCd Md";
  src: url("fonts/UnitedSansSmCdMd.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5 h6 {
  line-height: normal;
}

#header {
  z-index: 100;
}
.is-expanded-menu #header-wrap,
.is-expanded-menu .sticky-header #header-wrap,
#top-bar,
body:not(.is-expanded-menu)
  #header:not([data-mobile-sticky="true"])
  #header-wrap {
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
  background: rgb(2 3 58 / 20%);
}

blockquote {
  border-left: 5px solid var(--green);
}

blockquote em {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.barlow-condensed-medium {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-condensed-semibold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-condensed-bold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.title-1 h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--green);
}

:root {
  --green: #00ff8b;
  --blue: #000039;
}

.color-green {
  color: var(--green);
}

.border-green {
  border-color: var(--green) !important;
}

body {
  background-image: url("../images/background-min.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

body.body-bg {
  background-image: none;
  background: linear-gradient(
    104deg,
    rgba(1, 68, 80, 1) 2%,
    rgba(1, 1, 57, 1) 100%
  );
}

img {
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* body {
  background: radial-gradient(
    circle at top right,
    #00ffb0,
    #001b4d 60%,
    #000033 100%
  );
}
*/

.logo-pfs {
  max-height: 230px;
}

.menu {
  background-color: #00004a80 !important;
  backdrop-filter: blur(1rem);
}

.icon-button {
  fill: var(--green);
}

.menu-item .sub-menu-indicator.fa-solid.fa-caret-down::before {
  transition: transform 0.3s ease;
}

.menu-item.menu-item-hover .sub-menu-indicator.fa-solid.fa-caret-down::before {
  transform: rotate(180deg);
}

.button {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.button-border {
  border-color: var(--green) !important;
  color: var(--green) !important;
}

.button-active {
  position: relative;
  overflow: hidden;
  border-color: var(--green) !important;
  background-color: var(--green) !important;
  color: var(--blue) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.button-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.5s ease, height 0.5s ease;
}

.button-active:hover::before {
  width: 260px;
  height: 260px;
}

.button-active > * {
  position: relative;
  z-index: 1;
}

.button-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 139, 0.4);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  background-size: 200% 100%;
  background-color: var(--green) !important;
  animation: shimmerHover 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button-active:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(0, 255, 139, 0.25);
}

.button-border:hover,
.button-border.active {
  background-color: var(--green) !important;
  color: var(--blue) !important;
}

.button-border:hover .icon-button {
  fill: var(--blue);
}

.title-page {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 50px;
  color: #fff;
  letter-spacing: 1px;
}

.event-title {
  font-family: "United Sans SmCd Bd";
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}

.event-subtitle {
  font-family: "United Sans SmCd Md";
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
}

.event-date {
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}

.countdown-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countdown-amount {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  order: 2 !important;
}

.countdown-period {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  order: 1 !important;
  margin-bottom: 10px;
}

.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #00ffbb, transparent);
  box-shadow: 0px -2px 8px #00ffbb;
}

.custom-slider .flip-inner,
#speakersContainer .flip-inner,
#previousSpeakersContainer .flip-inner {
  min-height: 430px;
}

.custom-slider .flip-front,
.custom-slider .flip-back,
#speakersContainer .flip-back,
#speakersContainer .flip-front,
#previousSpeakersContainer .flip-back,
#previousSpeakersContainer .flip-front {
  background: linear-gradient(163.46deg, #2022ac 29.65%, #0d0e46 97.49%);
  padding: 15px 18px;
  border-radius: 10px;
  color: white;
  min-height: 430px;
  transition: background-position 0.5s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.speaker-card-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 430px;
  height: 100%;
}

.speaker-card-overlay {
  background: linear-gradient(
        0deg,
        rgba(10, 10, 10, 0.43) 0%,
        rgba(0, 0, 0, 0) 49%
      )
      0% 0% / 100% 100%,
    radial-gradient(at 30% 75%, rgb(27 20 101) 0px, transparent 50%),
    radial-gradient(at 0% 43%, rgb(27 20 100) 0px, transparent 50%),
    radial-gradient(at 10% 100%, rgb(0 35 213) 0px, transparent 50%),
    radial-gradient(at 77% 100%, rgb(61 148 112) 0px, transparent 50%),
    radial-gradient(at 91% 100%, rgb(17 185 136) 0px, transparent 50%);
  z-index: 0;
  border-radius: 10px;
  height: 40% !important;
}

.speaker-card-overlay-top {
  background: linear-gradient(
        0deg,
        rgba(10, 10, 10, 0.43) 0%,
        rgba(0, 0, 0, 0) 49%
      )
      0% 0% / 100% 100%,
    radial-gradient(at 30% 75%, rgb(32 33 172 / 32%) 0px, transparent 50%),
    radial-gradient(at 0% 43%, rgb(255 255 255 / 0%) 0px, transparent 50%),
    radial-gradient(at 10% 100%, rgb(64 65 71 / 80%) 0px, transparent 50%),
    radial-gradient(at 77% 100%, rgb(3 16 85 / 61%) 0px, transparent 50%),
    radial-gradient(at 91% 100%, rgb(4 20 86 / 0%) 0px, transparent 50%);
  transform: rotate(180deg);
  height: 23% !important;
  opacity: 1;
  z-index: -1;
  border-radius: 10px 0;
}

.speaker-card-content {
  min-height: 100%;
  height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.custom-slider .item:hover {
  animation: gradientShift 3s ease-in-out forwards;
}

.speaker-card-hover {
  transition: transform 0.3s ease;
}

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

.elipse {
  animation: rotateInfinite 15s linear infinite;
  animation-play-state: paused;
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}

.elipse-pass {
  height: 75px;
  width: 75px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-family: "Barlow Condensed", sans-serif;
  text-align: center;
  position: absolute !important;
  bottom: -15px;
  right: 0px;
  animation: elipsePulse 2s ease-in-out infinite;
  z-index: 99;
}

.elipse-pass img {
  z-index: 100;
}

.elipse-pass p {
  margin: 0;
  line-height: 1;
}

.owl-carousel-testimonials .elipse {
  animation-play-state: running !important;
}

.item:hover .elipse {
  animation-play-state: running;
}

.button-plus {
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.button-plus i {
  width: auto;
}

.img-features {
  max-height: 90px;
}

.img-speaker {
  width: 200px !important;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0px 0px 50px -10px #00ff8b;
  transition: 0.2s ease-in-out;
}

.elipse {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  aspect-ratio: 1 / 1;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.carousel-controls .custom-prev,
.carousel-controls .custom-next,
.carousel-controls .custom-prev-speakers,
.carousel-controls .custom-next-speakers,
.carousel-controls .custom-prev-testimonials,
.carousel-controls .custom-next-testimonials {
  background-color: var(--green);
  border: none;
  color: var(--blue);
  padding: 6px 11px;
  border-radius: 0.25rem;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-controls .custom-prev:hover,
.carousel-controls .custom-next:hover,
.carousel-controls .custom-prev-speakers:hover,
.carousel-controls .custom-next-speakers:hover,
.carousel-controls .custom-prev-testimonials:hover,
.carousel-controls .custom-next-testimonials:hover {
  background-color: #00cc70;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.owl-dots-container .owl-dots .owl-dot,
.owl-dots-container-speakers .owl-dots .owl-dot,
.owl-dots-container-testimonials .owl-dots .owl-dot {
  margin: 0;
  width: 8px;
  height: 8px;
  background: #fff;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  opacity: 0.4;
  border-radius: 50%;
}

.owl-dots-container .owl-dots .owl-dot.active,
.owl-dots-container-speakers .owl-dots .owl-dot.active,
.owl-dots-container-testimonials .owl-dots .owl-dot.active {
  opacity: 1;
}

.newsletter-section {
  background: linear-gradient(163.46deg, #2022ac 29.65%, #0d0e46 97.49%);
}

/* Páginas com pouco conteúdo (ex.: pfs-foundations): secção com altura mínima para o footer não partir */
#content.section-min-height {
  min-height: 50vh;
}

#popupNewsletterModal .modal-content {
  background: linear-gradient(163.46deg, #2022ac 29.65%, #0d0e46 97.49%);
  border: 1px solid rgba(0, 255, 139, 0.25);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#popupNewsletterModal.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

#popupNewsletterModal .modal-dialog {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

#popupNewsletterModal .modal-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

#popupNewsletterModal .modal-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--green);
}

#popupNewsletterModal .modal-header .close {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  padding: 0.25rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
  transition: color 0.2s ease, transform 0.2s ease;
}

#popupNewsletterModal .modal-header .close:hover,
#popupNewsletterModal .modal-header .close:focus {
  color: var(--green);
  transform: scale(1.1);
}

#popupNewsletterModal .modal-body {
  padding: 0.5rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

#popupNewsletterModal .modal-body .text-light {
  color: rgba(255, 255, 255, 0.85) !important;
}

#popupNewsletterModal .widget.subscribe-widget .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
}

#popupNewsletterModal .widget.subscribe-widget .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 139, 0.25);
}

#popupNewsletterModal .widget.subscribe-widget .form-check-label,
#popupNewsletterModal .widget.subscribe-widget label.text-white {
  color: rgba(255, 255, 255, 0.9) !important;
}

#popupNewsletterModal .widget.subscribe-widget input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

#popupNewsletterModal .btn-link-newsletter-modal {
  background: none !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: underline !important;
  font-size: 0.875rem !important;
  cursor: pointer !important;
  padding: 0.5rem 0 !important;
  transition: color 0.2s ease !important;
  font-family: "Inter", sans-serif !important;
}

#popupNewsletterModal .btn-link-newsletter-modal:hover,
#popupNewsletterModal .btn-link-newsletter-modal:focus {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: underline !important;
}

body.modal-open .modal-backdrop {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 57, 0.75);
}

#popupNewsletterModal.show .modal-dialog {
  animation: modalNewsletterSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalNewsletterSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.newsletter-section label {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 0px;
}

.newsletter-section input::placeholder {
  color: #00004a80;
  font-size: 14px;
}

.form-control::placeholder {
  color: #00004a80 !important;
}

.newsletter-section input,
textarea.form-control:focus,
textarea.form-control {
  color: var(--blue) !important;
  font-size: 14px;
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #0a0a2a;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.flip-container {
  perspective: 1000px;
  position: relative;
}

.flip-inner {
  position: relative;
  width: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-inner.flipped {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.flip-front {
  z-index: 2;
}

.flip-back {
  transform: rotateY(180deg);
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.flip-back p {
  margin-bottom: 10px;
  line-height: 1.25rem;
}

.flip-back p:last-child {
  margin-bottom: 0;
}

.flip-back .description-text {
  max-height: 320px;
  overflow-y: auto;
}

.owl-carousel .owl-stage {
  padding-top: 30px;
  padding-bottom: 30px;
}

.owl-carousel-testimonials .owl-stage {
  padding-top: 0;
  padding-bottom: 0;
}

.owl-carousel-gallery {
  cursor: grab;
}

.owl-carousel-gallery:active {
  cursor: grabbing;
}

.owl-carousel-gallery .gallery-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.owl-carousel-gallery .gallery-column a {
  display: block;
  width: 100%;
}

.owl-carousel-gallery .gallery-column img {
  width: 100%;
  height: auto;
  display: block;
}
.owl-carousel-gallery .owl-stage {
  margin: auto;
  display: flex;
  align-items: center;
}

.owl-carousel-gallery .owl-item {
  display: flex;
  align-items: center;
}

.dropdown-language,
.dropdown-language:hover {
  color: #fff !important;
  border-radius: 100px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.3px;
  background: transparent;
  border: 0 !important;
}

.dropdown-menu.show {
  border: 0;
  background-color: #00004a80 !important;
  backdrop-filter: blur(1rem);
  border-radius: 0 0 10px 10px !important;
  transform: translate(0px, 52px) !important;
  min-width: inherit;
  color: #fff;
}

.dropdown-menu.show button {
  color: #fff !important;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.dropdown-menu.show button:hover {
  background-color: transparent;
  text-decoration: underline;
  color: var(--green);
  cursor: pointer;
}

.dropdown-menu.show li:hover button {
  text-decoration: underline !important;
  color: var(--green) !important;
  cursor: pointer;
}

.form-check .form-check-input {
  margin-left: -1.5em;
  margin-top: 0;
}

.card {
  border-radius: 20px;
}

.card-partner {
  transition: 0.2s ease-in-out;
  background-color: #00004a80 !important;
  backdrop-filter: blur(0.1rem);
}

.card-partner:hover {
  transform: translateY(-5px);
}

.card-blog {
  background: linear-gradient(163.46deg, #2022ac 29.65%, #0d0e46 97.49%);
  backdrop-filter: blur(0.1rem);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-blog::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 139, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s linear;
  pointer-events: none;
  z-index: 0;
}

.card-blog:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 12px 48px rgba(0, 255, 139, 0.2);
}

.card-blog:hover::before {
  opacity: 1;
}

.card-blog:hover h4 {
  color: var(--green);
  transition: color 0.25s linear;
}

.card-blog img {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.card-blog:hover img {
  transform: scale(1.06);
}

.card-blog > div {
  position: relative;
  z-index: 1;
}

.card-partner .badge {
  background-color: var(--green) !important;
  color: var(--blue);
  font-family: "Inter", sans-serif;
}

.tab-parceiros .nav-link,
.tab-parceiros .nav-link {
  background-color: var(--blue) !important;
  border: 1px solid transparent;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.tab-parceiros .nav-link.active,
.tab-parceiros .nav-link:hover {
  color: var(--green);
  border: 1px solid var(--green) !important;
}

.toggle-content-padding p:last-child {
  margin-bottom: 0;
  font-size: 14px;
}

.policies-container h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.mega-menu-content {
  border-radius: 0 0 20px 20px;
  z-index: 100;
}

.mega-menu-content .container {
  background-color: transparent !important;
}

.sub-menu-container a {
  color: #fff !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  transition: 0.2s ease-in-out;
}

.sub-menu-container a:hover {
  color: var(--green) !important;
}

.is-expanded-menu
  .mega-menu-content
  .sub-menu-container:not(.mega-menu-dropdown) {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-themes {
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 8px;
  position: relative;
}

.card-themes img {
  border-radius: 12px;
}

.card-themes .tag {
  background-color: var(--green);
  color: var(--blue);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 10px;
  position: absolute;
  left: 0;
  bottom: 15%;
}

.circle {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.circle-event {
  background-color: var(--green);
}

.timeline-line {
  height: 100%;
  min-height: 50px;
  width: 3px;
  z-index: 1;
  background-color: var(--green);
  margin: auto;
}
.circle-stack > * {
  border-color: var(--green);
}

.circle-stack-small {
  --cnvs-circle-stack-size: 3.5rem;
}

.circle-stack {
  position: relative;
  z-index: 2;
}

.circle-stack > * {
  position: relative;
  z-index: 2;
}

.d-flex.flex-column.justify-content-center.h-100.ps-2 {
  position: relative;
  z-index: 1;
}

.circle-stack-small {
  flex-shrink: 0;
}

.mega-menu-content .menu-item.current,
.mega-menu-content .menu-item:hover a {
  color: var(--green) !important;
  text-decoration: underline !important;
}

.widget.subscribe-widget .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.widget.subscribe-widget .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #00ff8b;
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 139, 0.25);
  transform: translateY(-1px);
}

.widget.subscribe-widget .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.widget.subscribe-widget .form-check-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.widget.subscribe-widget .button-success {
  background-color: #00ff8b !important;
  border-color: #00ff8b !important;
  color: #000 !important;
}

.widget.subscribe-widget .button-success:hover {
  background-color: #00cc6f !important;
  border-color: #00cc6f !important;
  transform: translateY(-2px);
}

.widget.subscribe-widget .button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.widget.subscribe-widget .alert {
  border-radius: 0.375rem;
  border: none;
}

.widget.subscribe-widget .alert-success {
  background-color: rgba(0, 255, 139, 0.1);
  border: 1px solid #00ff8b;
  color: #00ff8b;
}

.widget.subscribe-widget .alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
}

.widget.subscribe-widget .spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

.widget.subscribe-widget .text-danger {
  color: #dc3545 !important;
}

.widget.subscribe-widget .fw-semibold {
  font-weight: 600;
}

.input-group .form-control[type="file"] {
  background-color: #fff !important;
  color: var(--blue) !important;
}

#mega-menu-content {
  border-radius: 0 0 20px 20px;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed !important;
  top: 0;
  width: 100% !important;
  z-index: 99 !important;
  display: none;
}

#mega-menu-content.show {
  display: block !important;
}

#mega-menu-content .container {
  background-color: transparent !important;
}

#mega-menu-content .sub-menu-container {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 38px;
  background-color: #00004a80 !important;
  backdrop-filter: blur(1rem);
  padding-top: calc(74px + 3rem);
  padding-bottom: 3rem;
}

#mega-menu-content .sub-menu-container a {
  color: #fff !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 400 !important;
  font-size: 2rem !important;
  transition: 0.2s ease-in-out;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  text-transform: uppercase;
}

#mega-menu-content .sub-menu-container a:hover,
#mega-menu-content .sub-menu-container li.current a {
  color: var(--green) !important;
  text-decoration: underline !important;
}

.mobile-hamburger {
  display: block !important;
}

.desktop-hamburger {
  display: none !important;
}

#newsletter-form input {
  color: #fff !important;
}

#newsletter-form input::placeholder {
  color: #ffffff6a !important;
}

[data-lightbox="gallery"] a[data-lightbox="gallery-item"] {
  display: block;
  overflow: hidden;
  transition: transform 0.3s ease;
}

[data-lightbox="gallery"] a[data-lightbox="gallery-item"] img {
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
}

[data-lightbox="gallery"] a[data-lightbox="gallery-item"]:hover img {
  transform: scale(0.95);
  filter: brightness(0.5);
}

.bg-card-partners {
  background: linear-gradient(
    53deg,
    rgba(1, 68, 80, 1) 2%,
    rgba(1, 1, 57, 1) 100%
  );
  transition: 0.2s ease-in-out;
}

.bg-card-partners:hover {
  transform: translateY(-5px);
}

#videoControlBtn,
#soundControlBtn {
  position: absolute;
  bottom: 15px;
  background: transparent !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: none !important;
  padding: 0 !important;
}

#videoControlBtn {
  right: 15px !important;
}

#soundControlBtn {
  right: 75px !important;
}

#videoControlBtn:hover,
#soundControlBtn:hover {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.5) !important;
}

#videoControlBtn:active,
#soundControlBtn:active {
  transform: scale(0.95) !important;
}

#videoControlBtn svg,
#soundControlBtn svg {
  transition: transform 0.2s ease;
}

#videoControlBtn:hover svg,
#soundControlBtn:hover svg {
  transform: scale(1.1);
}

.badge-blog {
  background-color: var(--blue) !important;
  color: #fff !important;
  z-index: 99;
}

.badge-article {
  background-color: var(--green) !important;
  color: var(--blue) !important;
}

.badge-location {
  background-color: #00ff8b45 !important;
  color: #fff !important;
}

.ratio-container {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ratio-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sponsors-carousel .owl-stage {
  display: flex;
  align-items: flex-end;
}

#top-bar {
  z-index: 1000;
}
.is-expanded-menu #header + .include-header {
  margin-top: -122px !important;
}

.video-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgb(2 8 58) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.video-wrap {
  position: relative;
}

.video-wrap video {
  position: relative;
  z-index: 0;
}
.top-bar-container {
  backdrop-filter: blur(6px);
}

#alphabetFilter .btn:not(:first-child) {
  min-width: 36px;
  height: 36px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#alphabetFilter .btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#alphabetFilter .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: var(--blue);
}

#alphabetFilter .btn.active {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--blue);
}

/* Animações para o slider hero */
.logo-pfs {
  animation: logoFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s ease;
}

.logo-pfs:hover {
  transform: scale(1.05);
}

.event-title,
.event-subtitle {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 0 20px rgba(0, 255, 139, 0.3);
}

.event-subtitle {
  position: relative;
  display: inline-block;
}

.event-subtitle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 10px var(--green);
}

.event-date {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 2px;
}

.countdown {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.countdown:hover {
  transform: scale(1.05);
}

.button-border {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Ripple */
.button-border::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.5s ease, height 0.5s ease;
}

/* Hover ripple */
.button-border:hover::before {
  width: 260px;
  height: 260px;
}

/* Conteúdo acima do ripple */
.button-border > * {
  position: relative;
  z-index: 1;
}

/* Ícone */
.icon-button {
  display: inline-flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

/* Hover */
.button-border:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 139, 0.4);
}

/* Active */
.button-border:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(0, 255, 139, 0.25);
}

.slider-element-fade {
  animation: fadeInScale 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
}

.event-title,
.event-subtitle {
  position: relative;
}

.row[data-animate] {
  transition: all 0.5s ease;
}

.vertical-middle {
  transition: transform 0.3s ease-out;
}

.event-subtitle {
  animation: glowFadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.countdown-large {
  animation: countdownAppear 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

.button-border:hover {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmerHover 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-wrap video {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-wrap:hover video {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.logo-pfs,
.event-title,
.event-subtitle,
.event-date,
.countdown,
.button-border {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.event-title::before,
.event-subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 139, 0.3),
    transparent
  );
  animation: shine 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  pointer-events: none;
  opacity: 0;
}

.testimonial-text p {
  margin-bottom: 0;
}

.quote-icon {
  height: 35px;
}

textarea.form-control {
  --cnvs-input-btn-input-color: #212529;
}

/* Partners Page Styles */
.terms-content {
  line-height: 1.6;
}

.terms-content h6 {
  color: #00ff8b;
  margin-bottom: 1rem;
}

.terms-content p {
  margin-bottom: 0.75rem;
}

.terms-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.terms-content li {
  margin-bottom: 0.25rem;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Alertas */
.alert {
  border-radius: 0.375rem;
}

.alert-success {
  background-color: rgba(0, 255, 139, 0.1);
  border-color: #00ff8b;
  color: #00ff8b;
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
  color: #dc3545;
}

.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: #ffc107;
  color: #ffc107;
}

/* Utilitários */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

.text-success {
  color: #00ff8b !important;
}

.text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

.benefit-item {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card {
  background: linear-gradient(
    135deg,
    rgba(1, 68, 80, 0.9) 0%,
    rgba(1, 1, 57, 0.95) 100%
  );
  border: 2px solid rgba(0, 255, 139, 0.3);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s linear, box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  position: relative;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 139, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s linear;
}

.benefit-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(0, 255, 139, 0.6);
  box-shadow: 0 12px 48px rgba(0, 255, 139, 0.2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-item:hover {
  transform: translateY(-6px);
  z-index: 10;
}

.benefit-icon-wrapper {
  background: rgba(0, 255, 139, 0.1);
  transition: background 0.35s linear,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-icon-wrapper {
  background: rgba(0, 255, 139, 0.2);
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 0 20px rgba(0, 255, 139, 0.3);
}

.benefit-icon {
  filter: drop-shadow(0 2px 8px rgba(0, 255, 139, 0.3));
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), filter 0.35s linear;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.12);
  filter: drop-shadow(0 4px 12px rgba(0, 255, 139, 0.5));
}

.benefit-title {
  transition: color 0.25s linear;
}

.benefit-card:hover .benefit-title {
  color: #00ff8b;
}

.sponsors-animated-section {
  position: relative;
  width: 100%;
}

.sponsors-row-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.sponsors-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  will-change: transform;
}

.sponsors-row-left {
  animation: scroll-left 50s linear infinite;
}

.sponsors-row-right {
  animation: scroll-right 50s linear infinite;
}

.sponsor-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 170px;
  height: 130px;
}

.sponsor-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sponsor-logo {
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
  filter: grayscale(0%) brightness(1);
}

/* Pricing Comparison Table */
.pricing-table-wrapper {
  overflow-x: auto;
}

.pricing-comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}

.pricing-comparison-table th {
  padding: 10px;
  text-align: center;
  vertical-align: top;
  height: 1px;
}

.pricing-comparison-table th:last-child {
  border-right: none;
}

.pricing-comparison-table th.feature-column {
  text-align: left;
  width: 30%;
  padding-left: 2rem;
}

.pricing-comparison-table th.pass-column {
  width: 17.5%;
  min-width: 180px;
}

.pass-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pass-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #fff;
  margin: 0;
}

.pass-price-old {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  display: inline-block;
  text-decoration: line-through;
  margin-bottom: -10px;
}

.pass-price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--green);
  position: relative;
  display: inline-block;
}

.promo-badge {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--green);
  color: #000039;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-comparison-table tbody tr {
  transition: background-color 0.3s ease;
}

.pricing-comparison-table td {
  text-align: center;
  vertical-align: top;
  color: #fff;
  height: 1px;
  padding: 5px;
  z-index: 99;
}

.pricing-comparison-table td.feature-name {
  text-align: left;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-comparison-table td.feature-check {
  font-size: 1.5rem;
}

.pricing-comparison-table td.feature-check .card-ticket,
.pricing-comparison-table td.feature-name .card-ticket,
.pricing-comparison-table th .card-ticket {
  background-color: rgb(1 13 62 / 35%);
  padding: 20px;
  border-radius: 10px;
  min-height: 80px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.card-price {
  background-color: #000039 !important;
  border: 1px solid var(--green);
  padding: 10px !important;
  border-radius: 10px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-comparison-table td.feature-name .card-ticket {
  justify-content: flex-start;
  text-align: left;
}

.pricing-comparison-table th .card-ticket {
  flex-direction: column;
}

.pricing-comparison-table .checkmark {
  color: var(--green);
  font-weight: bold;
  font-size: 1.8rem;
  display: inline-block;
}

/* Mobile Ticket Cards */
.pricing-mobile-wrapper {
  max-width: 100%;
}

.mobile-ticket-card {
  background: linear-gradient(
    135deg,
    rgb(0 0 74 / 25%) 0%,
    rgb(0 0 57 / 70%) 100%
  );
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-ticket-card:hover {
  box-shadow: 0 0 20px rgba(0, 255, 139, 0.3);
}

.mobile-ticket-main {
  padding: 25px 20px;
}

.mobile-ticket-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.mobile-ticket-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-ticket-price-section {
  margin: 10px 0;
}

.mobile-ticket-price-old {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  margin-bottom: 5px;
  text-decoration: line-through;
}

.mobile-ticket-price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.mobile-ticket-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 15px 0;
}

.mobile-ticket-card .toggle-header {
  cursor: pointer;
}

.mobile-ticket-card .toggle-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.mobile-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 15px;
}

.mobile-feature-item:last-child {
  margin-bottom: 0;
}

.mobile-feature-item .feature-checkmark {
  color: var(--green);
  font-weight: bold;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}

.mobile-feature-item .feature-text {
  flex: 1;
}

.mobile-feature-item .feature-text.strike {
  text-decoration: line-through;
  opacity: 0.55;
}

.language-mobile .menu-link {
  color: #fff !important;
}

footer,
body.bg-page,
.bg-page {
  background: linear-gradient(
    53deg,
    rgba(1, 68, 80, 1) 2%,
    rgba(1, 1, 57, 1) 100%
  );
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes glowFadeIn {
  0% {
    text-shadow: 0 0 0px rgba(0, 255, 139, 0);
    opacity: 0;
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 255, 139, 0.5),
      0 0 30px rgba(0, 255, 139, 0.3);
  }
  100% {
    text-shadow: 0 0 10px rgba(0, 255, 139, 0.3),
      0 0 20px rgba(0, 255, 139, 0.2);
    opacity: 1;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateInfinite {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes elipsePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0px 0px 40px 0px #00ff8c80;
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0px 0px 60px 0px #00ff8c60, 0px 0px 80px 0px #00ff8c80;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-33.333%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes countdownAppear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes shimmerHover {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

@media (min-width: 1199px) {
  .owl-carousel .owl-dots,
  .owl-carousel .owl-nav {
    max-width: 1320px;
  }

  .owl-carousel:not(.sponsors-carousel):not(.owl-carousel-testimonials):not(
      .owl-carousel-gallery
    )
    .owl-stage {
    margin-left: -50px;
  }
}

@media (min-width: 991px) {
  .mobile-hamburger {
    display: none !important;
  }

  .desktop-hamburger {
    display: block !important;
  }

  #mega-menu-content {
    display: none !important;
  }

  #mega-menu-content.show {
    display: block !important;
  }

  .sub-menu-container,
  .top-links-item:hover,
  .top-links-sub-menu {
    background: linear-gradient(
      53deg,
      rgba(1, 68, 80, 1) 2%,
      rgba(1, 1, 57, 1) 100%
    );
  }
  .play-button {
    width: 64px;
    height: 64px;
    background-color: transparent;
    border: 2px solid #00ff8b;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, background-color 0.3s ease;
  }

  .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(0, 255, 139, 0.1);
  }
}

@media (max-width: 991px) {
  .logo-pfs {
    max-height: 100px;
  }

  .cnvs-hamburger .cnvs-hamburger-inner,
  .cnvs-hamburger .cnvs-hamburger-inner::before,
  .cnvs-hamburger .cnvs-hamburger-inner::after {
    background-color: var(--green);
  }

  .menu {
    width: calc(100% - 20px);
    margin: 10px auto 0 auto;
    border-radius: 100px;
  }

  .primary-menu-open-all .menu {
    width: calc(100% - 20px);
    margin: 10px auto 0 auto;
    border-radius: 100px;
    height: calc(100vh - 20px);
    border-radius: 25px;
  }

  .custom-slider {
    max-width: 720px;
    margin: auto;
    padding: 0 12px;
  }

  .event-title {
    font-size: 35px;
  }

  .event-subtitle {
    font-size: 20px;
  }

  .event-date {
    font-size: 18px;
  }

  .countdown-section {
    padding: 0 20px;
  }

  .countdown-amount {
    font-size: 48px;
  }

  .countdown-period {
    font-size: 18px;
  }

  .glow-line {
    max-width: 70%;
    margin: auto;
  }

  .img-features {
    max-height: 70px;
  }

  body.primary-menu-open-all {
    overflow: hidden;
  }

  body .menu-mobile {
    display: none;
  }

  body.primary-menu-open-all .menu-mobile {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .menu hr {
    color: #fff;
  }

  .primary-menu-active {
    height: calc(100dvh - 75px);
  }

  .language-mobile button {
    color: #fff !important;
    text-decoration: none;
    background: transparent;
    border: 0;
  }

  .language-mobile button.active {
    color: var(--green) !important;
    text-decoration: underline !important;
  }

  .primary-menu-active .menu-container {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    height: 100%;
    width: 100%;
    text-align: center;
  }

  .primary-menu-active .menu-container a {
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 500 !important;
    font-size: 1.875rem !important;
    letter-spacing: 0.3px !important;
    color: #fff;
  }

  .primary-menu-active .menu-container .menu-item {
    border: 0;
  }

  .mobile-hamburger {
    display: block !important;
  }

  .desktop-hamburger {
    display: none !important;
  }

  #mega-menu-content {
    display: none !important;
  }

  #mega-menu-content.show {
    display: none !important;
  }

  .title-1 h2 {
    font-size: 2rem;
  }

  .tab-pane span.small {
    font-size: 12px !important;
  }

  .primary-menu-active .menu-container a {
    line-height: 2rem !important;
  }

  .menu-item.sub-menu.current a {
    font-size: 1.5rem !important;
  }

  .menu-item.sub-menu.current .sub-menu-container {
    border-bottom: 1px solid var(--cnvs-header-border-color);
  }
  .elipse-pass {
    bottom: inherit;
    top: -15px;
  }
  .pricing-comparison-table {
    font-size: 0.9rem;
  }

  .pass-title {
    font-size: 1.25rem;
  }

  .pass-price {
    font-size: 2rem;
  }
  .flip-front h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    background-image: url("../images/background-min-mobile.jpg");
  }

  .quote-icon {
    height: 25px;
  }

  .title-page {
    font-size: 32px;
  }

  .custom-slider {
    max-width: 540px;
    margin: auto;
    padding: 0;
  }

  .slider-element.include-header {
    height: calc(100dvh - 82px);
  }

  .floating-header {
    position: fixed !important;
    width: 100%;
    z-index: 100;
    margin-top: 10px;
  }

  .content-wrap {
    padding: 40px 0;
  }

  body.bg-page #content,
  body.header-mobile-include #content {
    padding-top: 68px;
  }

  .social-icon {
    --cnvs-socialicon-size: 3.5rem;
  }

  .owl-carousel .owl-stage {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .owl-carousel-testimonials .owl-stage {
    padding-top: 0;
    padding-bottom: 0;
  }

  .custom-slider .flip-inner,
  .custom-slider .flip-front,
  .custom-slider .flip-back {
    min-height: 460px;
  }

  .flip-back p {
    margin-bottom: 10px;
  }

  .flip-back p:last-child {
    margin-bottom: 0;
  }

  .owl-item.active .img-speaker {
    filter: grayscale(0);
  }

  .owl-item.active .item .elipse {
    animation-play-state: running;
  }

  body.bg-page #content {
    padding-top: 68px;
  }

  .toggle-title {
    font-size: 1.125rem;
  }

  .tab-parceiros {
    flex-direction: row;
  }

  #mega-menu-content .sub-menu-container a {
    font-size: 24px !important;
  }

  #mega-menu-content .container {
    padding: 1.5rem 0;
  }

  .circle-stack-small {
    --cnvs-circle-stack-size: 3rem;
  }

  .d-flex.flex-column.flex-lg-row.align-items-start {
    align-items: start !important;
  }

  #videoControlBtn,
  #soundControlBtn {
    width: 44px !important;
    height: 44px !important;
    bottom: 12px !important;
  }

  #videoControlBtn {
    right: 12px !important;
  }

  #soundControlBtn {
    right: 64px !important;
  }

  #videoControlBtn svg,
  #soundControlBtn svg {
    width: 20px !important;
    height: 20px !important;
  }

  .sponsor-item {
    min-width: inherit;
    height: auto;
  }

  .sponsor-logo {
    max-height: 100px;
  }

  .pricing-comparison-table {
    min-width: 800px;
  }

  .pass-title {
    font-size: 1.1rem;
  }

  .pass-price {
    font-size: 1.75rem;
  }

  .pricing-comparison-table th.feature-column {
    width: 35%;
    min-width: 200px;
  }

  .pricing-comparison-table th.pass-column {
    min-width: 150px;
  }
  .sponsors-row {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  #mega-menu-content .sub-menu-container a {
    font-size: 20px !important;
  }

  #mega-menu-content .container {
    padding: 1rem 0;
  }
}

@media (min-height: 750px) {
  .logo-pfs {
    max-height: 120px;
  }
}

@media (max-height: 749px) {
  .logo-pfs {
    max-height: 100px;
  }
  .countdown-amount {
    font-size: 40px;
  }

  .countdown-period {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .mobile-ticket-name {
    font-size: 1.5rem;
  }

  .mobile-ticket-price {
    font-size: 2.5rem;
  }

  .mobile-feature-item {
    font-size: 0.9rem;
  }
  .sponsors-row-left {
    animation: scroll-left 10s linear infinite;
  }

  .sponsors-row-right {
    animation: scroll-right 10s linear infinite;
  }
}
