:root {
  --red: #FF4848;
  --red-2: #E32D2D;
  --blue: #006CFF;
  --blue-2: #0059D2;
  --green: #9BD359;
  --green-2: #72AD2B;
  --purple: #9671FC;
  --purple-2: #7C56E4;
  --yellow: #FFD371;
  --yellow-2: #E6B444;
  --white: 255,255,255;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}
body {
  font-family: 'Nunito Sans', sans-serif;
  font-style: italic;
  background: #000000;
  color: #FFFFFF;
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 13pt;
}
ul {
  padding-left: 20px;
  margin: 20px 0;
}
::-webkit-scrollbar {
  width: 5px;
  position: fixed;
}
/* Track */
::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,0.3);
  border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,1);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* ====================
HEADER
==================== */

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,1);
  backdrop-filter: blur(0px);
  z-index: 1000;
  transition: box-shadow 0.2s;
}
.header-inner {
  max-width: 1400px;
  height: 80px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.logo {
  width: 200px;
}
.logo img {
  width: 100%;
  height: auto;
}

/* ====================
MENU
==================== */

.menu-toggle-btn {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.menu-toggle-btn:hover {
  background: var(--red);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-link {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.nav-link:hover {
  color: var(--red);
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-toggle {
  background: none;
  border: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Nunito Sans', sans-serif;
  font-style: italic;
}
.dropdown-toggle:hover {
  color: var(--red);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000000;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
  border: 1px solid rgba(255,255,255,0.6);
}
.dropdown:hover .dropdown-menu,
.dropdown-toggle:focus+.dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.85rem;
}
.dropdown-menu a:hover {
  background: var(--red);
}
.action-buttons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.content-transform-wrapper {
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform;
  background: #000000;
}
.menu-open .content-transform-wrapper {
  transform: translateX(-280px);
}
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #000000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: flex;
  flex-direction: column;
}
.menu-open .side-menu {
  transform: translateX(0);
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}
.menu-inner {
  padding: 1.5rem 1.2rem;
  flex: 1;
  overflow-y: auto;
}
.close-menu-btn {
  background: var(--red);
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  transition: background 0.2s;
}
.close-menu-btn:hover {
  background: var(--red-2);
}
.menu-inner h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.mobile-nav-item {
  background-color: rgba(255,255,255,0.1);
}
.mobile-nav-link {
  background-color: rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  padding: 10px 15px;
  transition: 0.2s;
}
.mobile-nav-link:hover {
  color: var(--red);
}
.mobile-dropdown-toggle {
  background: none;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 500;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 15px;
  font-family: 'Nunito Sans', sans-serif;
  font-style: italic;
}
.mobile-dropdown-toggle:hover {
  color: var(--red);
}
.mobile-submenu {
  padding-left: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.mobile-submenu.open {
  display: flex;
}
.mobile-submenu a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  padding: 0.3rem 0;
}
.mobile-submenu a:hover {
  color: var(--red-2);
}
.menu-account {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}
.menu-account .btn {
  width: 100%;
}
.menu-footer {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.3);
}
.menu-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
.menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.2);
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  font-size: 20px;
  text-decoration: none;
}

/* ====================
GRID
==================== */

main {
  margin: 0;
}
.page-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 1.8rem 3rem;
}
.full-container {
  width: 100%;
  height: 100%;
  display: flex;
}
.short-content {
  max-width: 620px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
}
.short-content-m {
  max-width: 560px;
}
.short-content-s {
  max-width: 420px;
}
.card {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.card-banner {
  position: relative;
  width: auto;
  height: 250px;
}
.card-image img {
  width: auto;
  height: 120%;
}
.card-polygon-bg {
  background-color: var(--red);
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0,100% 0,100% 100%,0 calc(100% - 20px));
}
.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
  margin: 1rem 0;
}
.grid-col {
  padding: 1rem;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1rem 0;
}
.flex-col {
  flex: 1 1 200px;
  padding: 1rem;
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1rem 0;
}
.short-large-columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin: 1rem 0;
}
.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.narrow-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.narrow-inner {
  max-width: 600px;
}
.badge {
  background: #eef2ff;
  color: #1e40af;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  display: inline-block;
}
.note {
  background: rgba(255,255,255,0.1);
  padding: 0.8rem;
  margin-top: 1rem;
}
.m0 {
  margin: 0px;
}
.m10 {
  margin: 10px;
}
.m20 {
  margin: 20px;
}
.m30 {
  margin: 30px;
}
.m40 {
  margin: 40px;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mb10 {
  margin-top: 10px;
}
.mb20 {
  margin-top: 20px;
}
.mb30 {
  margin-top: 30px;
}
.mb40 {
  margin-top: 40px;
}
.mlr0 {
  margin-left: 0px;
  margin-right: 0px;
}
.mlr10 {
  margin-left: 10px;
  margin-right: 10px;
}
.mlr20 {
  margin-left: 20px;
  margin-right: 20px;
}
.mlr30 {
  margin-left: 30px;
  margin-right: 30px;
}
.mlr40 {
  margin-left: 40px;
  margin-right: 40px;
}
.mtb0 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.mtb10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.mtb20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.mtb30 {
  margin-top: 30px;
  margin-bottom: 30px;
}
.mtb40 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.p0 {
  padding: 0px;
}
.p10 {
  padding: 10px;
}
.p20 {
  padding: 20px;
}
.p30 {
  padding: 30px;
}
.p40 {
  padding: 40px;
}
.plr0 {
  padding-left: 0px;
  padding-right: 0px;
}
.plr10 {
  padding-left: 10px;
  padding-right: 10px;
}
.plr20 {
  padding-left: 20px;
  padding-right: 20px;
}
.plr30 {
  padding-left: 30px;
  padding-right: 30px;
}
.plr40 {
  padding-left: 40px;
  padding-right: 40px;
}
.ptb0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.ptb10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.ptb20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.ptb30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.ptb40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ====================
SECTIONS
==================== */

/*GENERAL*/

section {
  padding: 40px 0;
}
.section-header {
  margin: 40px 0 80px 0;
}
.floating-btn {
  position: fixed;
  width: 48px;
  height: 48px;
  border: none;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  cursor: pointer;
}
.floating-btn img {
  width: 70%;
  height: auto;
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: auto;
}
.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.floating-btn:hover img {
  bottom: 7px;
}
.floating-btn:active {
  transform: scale(0.92);
}
/* Botón "Ir arriba" */
#goTopBtn {
  bottom: 90px;
  right: 15px;
  border: 1px solid var(--red);
}
#goTopBtn:hover {
  background-color: rgba(0,0,0,1);
}
/* Botón "Mute" */
#muteBtn {
  bottom: 25px;
  right: 15px;
  background-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,1);
}
#muteBtn:hover {
  background-color: var(--red);
}
/* Pequeña etiqueta de estado (opcional) */
.floating-btn .label {
  display: none;
}

/*PARALLAX BACKGROUND*/

.parallax-container {
  position: relative;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: translateZ(0);
  will-change: transform;
}
.parallax-overlay {
  background: linear-gradient(180deg,rgba(150, 113, 252, 1) 0%, rgba(150, 113, 252, 0.1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.parallax-content {
  position: relative;
  z-index: 2;
  color: white;
}

/*HERO*/

.hero {
  width: 100%;
  height: calc(100vh - 80px);
}
.hero .parallax-bg {
  background-image: url('../img/bg-neighborhood.webp');
  background-position: center 80%;
  background-size: cover;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.hero-image {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
img.hero-image-loaded {
  opacity: 1;
}
.hero-logo {
  width: 400px;
  height: auto;
}
.hero-logo img {
  width: 100%;
  height: auto;
}
.row-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.row-icons ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.row-icons ul li {
  list-style-type: none;
  margin: 0 7px;
  font-size: 30pt;
}
.row-icons ul li .logo-item {
  margin: 0 20px 20px 20px;
}

/*GAME MODES*/

#game-modes .short-content {
  max-width: 800px;
}
#game-modes .parallax-bg {
  background-image: url('../img/bg-horde-arround.webp');
  background-size: cover;
}
.irregular-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.irregular-boxes-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
.square, .rectangle {
  background-image: url('../img/bg-3.jpg');
  background-size: 300% auto;
  background-position: center;
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  color: white;
  overflow: hidden;
  transition: all 0.3s ease;
}
.square:hover, .rectangle:hover {
  background-size: 200% auto;
  cursor: pointer;
}
.rectangle {
  width: 430px;
  height: 280px;
}
.reveal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 20px;
  bottom: -75%;
  transition: all 0.3s ease;
}
.reveal-overlay .btn-close {
  background-color: rgba(255,255,255,0.3);
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 5px;
  right: 5px;
  display: none;
  cursor: pointer;
  line-height: 0;
}
.reveal-overlay-open {
  background-color: var(--red);
  bottom: 0%;
}
.reveal-overlay-open .btn-close {
  display: block;
}
.reveal-overlay-title {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  font-family: 'Bebas Neue';
  width: 100%;
  height: 25%;
}
.reveal-overlay-content {
  width: 100%;
  height: 75%;
  overflow-y: scroll;
  padding-right: 10px;
}
.survival, .tournaments, .challenges, .with-friends {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../img/character.webp');
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right center;
  transition: all 0.5s ease;
}
.tournaments {
  background-image: url('../img/trophy.webp');
}
.with-friends {
  background-image: url('../img/characters.webp');
}
.survival {
  background-image: url('../img/police-zombie.webp');
}
.square:hover .survival, .rectangle:hover .tournaments, .rectangle:hover .challenges, .square:hover .with-friends {
  background-size: auto 110%;

}
#game-modes-b .short-content {
  max-width: 800px;
}

/*INSTALLATION STEPS*/

#instalation-steps .short-content {
  max-width: 1000px;
}
#instalation-steps .card {
  background-image: url('../img/bg-4.jpg');
  background-size: cover;
  background-position: left bottom;
}
.step-banner {
  background-color: #000000;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
}
.step-banner img {
  width: 100%;
  height: auto;
}
.step-container {
  position: relative;
}
.zombie-hand-corner {
  background-image: url('../img/zombie-hand-corner.webp');
  background-size: cover;
  background-repeat: no-repeat;
  width: 110px;
  height: 110px;
  position: absolute;
  left: -33px;
  top: -59px;
  z-index: 1;
}
.zombie-hand-side {
  background-image: url('../img/zombie-hand-side.webp');
  background-size: cover;
  background-repeat: no-repeat;
  width: 230px;
  height: 360px;
  position: absolute;
  right: -48px;
  top: 20px;
}
.step {
  position: sticky;
  top: 150px;
  z-index: 1;
}
.step:nth-child(2) {
  top: 180px;
  z-index: 3;
}
.step:nth-child(3) {
  z-index: 4;
}

/*REQUIREMENTS*/

.pc-gameplay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.pc-gameplay video {
  width: 100%;
  max-width: 2000px;
  height: auto;
}

/*COMMUNITY*/

#community .parallax-bg {
  background-image: url('../img/bg-5.jpg');
  background-size: cover;
}
#community .short-content {
  max-width: 1000px;
}

/*PARTNERS*/

.partners-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.partners-title text {
  fill: transparent;
  font-family:'Bebas Neue';
  font-size: 30px;
  font-style: normal;
  stroke: var(--red);
  stroke-width: 0.01em;
  text-align: center;
  margin: 20px auto;
}
.icon-square {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}
.icon-square img {
  width: 100%;
  height: auto;
}
.slider-partners {
  background-color: var(--red);
}
.slider-partners::after {
  content: '';
  display: block;
  background-image: url('../img/border-grunge-black.webp');
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 50% auto;
  width: 100%;
  height: 30px;
}
.carrusel-wrapper {
  position: relative;
  width: 100%;
}
.carrusel-wrapper::before, .carrusel-wrapper::after {
  display: none;
}
.carrusel-pista {
  overflow: hidden;
  cursor: grab;
  width: 100%;
}
.carrusel-pista:active {
  cursor: grabbing;
}
.logo-track {
  display: flex;
  align-items: center;
  width: fit-content;
  will-change: transform;
  transition: transform 0.08s ease-out; /* pequeño suavizado */
}
.logo-item {
  flex: 0 0 auto;
  width: 160px;
  margin: 0 100px;
  padding: 1.2rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s ease, transform 0.2s;  /* transición suave para opacidad */
  opacity: 0.7;  /* base */
}
.logo-item:hover {
  transform: scale(1.2);
  opacity: 1 !important;
}
.logo-item img {
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.2s ease;
}
.logo-item.horizontal img {
  max-width: 140px !important;
  max-height: 50px !important;
}
.logo-item.vertical img {
  max-width: 90px !important;
  max-height: 70px !important;
}
.logo-item.square img {
  max-width: 80px !important;
  max-height: 80px !important;
}
.logo-item.wider img {
  max-width: 200px !important;
  max-height: 60px !important;
}

/*CONTACT*/

.contact-form {
  padding: 40px;
}
.contact-banner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: calc(100% + 80px);
  margin-top: -80px;
}
.contact-banner img {
  width: auto;
  height: 100%;
  max-height: 1000px;
}

/* ====================
ACCORDION
==================== */

.accordion-item {
  border: 1px solid rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.accordion-item:hover, .accordion-item:active {
  border: 1px solid rgba(255,255,255,1);
}
.accordion-item:hover .accordion-header, .accordion-item:active .accordion-header {
  background-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,1);
}
.accordion-header {
  color: rgba(255,255,255,0.5);
  font-family: 'Bebas Neue';
  font-size: 18pt;
  padding: 15px 70px 15px 15px;
  cursor: pointer;
  font-weight: bold;
}
.accordion-header-icon {
  background-color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #000000;
  width: 45px;
  height: 45px;
  font-size: 40pt;
  transition: all 0.3s;
}
.accordion-header-icon i {
  transform: rotate(90deg);
  transition: all 0.3s;
}
.accordion-content {
  max-height: 0;
  overflow-y: scroll;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.accordion-content p {
  margin-bottom: 0;
  padding: 20px 0;
  text-align: left !important;
}
.accordion-item.active {
  border: 1px solid var(--red);
}
.accordion-item.active .accordion-header {
  color: var(--red);
}
.accordion-item.active .accordion-header-icon {
  background-color: rgba(255,255,255,1);
}
.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 0 20px;
}
.accordion-item.active .accordion-header-icon i {
  transform: rotate(0deg);
}

/* ====================
TABS
==================== */

.tabs-container {
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.tabs-header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 15px;
  padding: 0.75rem 1rem 0 1rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.tabs-header::-webkit-scrollbar {
  height: 4px;
}
.tabs-header::-webkit-scrollbar-track {
  border-radius: 8px;
}
.tabs-header::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
}
.tab-button {
  background-color: rgba(0,0,0,0.2);
  flex: 0 0 auto;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  margin-bottom: -1px;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  letter-spacing: 0.01em;
}
.tab-button:hover {
  background-color: rgba(0,0,0,1);
  color: #FFFFFF;
}
.tab-button.active {
  color: #FFFFFF;
  background: var(--red);
  margin-bottom: -1px;
}
.tab-button-blue.active {
  background: var(--blue);
}
.tab-button-green.active {
  background: var(--green);
}
.tab-button-yellow.active {
  background: var(--yellow);
}
.tab-button-purple.active {
  background: var(--purple);
}
.tabs-content {
  padding: 1.5rem 1.25rem;
}
.tab-pane {
  display: none;
  animation: fadeIn 0.2s ease;
}
.tab-pane.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px);}
  to   { opacity: 1; transform: translateY(0);}
}
.tab-pane p {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.tab-pane p:last-child {
  margin-bottom: 0;
}
.badge {
  background: #eef2ff;
  color: #1e40af;
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  display: inline-block;
}
hr {
  margin: 0.5rem 0;
  border-color: #edf2f7;
}
.note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #5b6e8c;
  text-align: right;
  border-top: 1px dashed #e2e8f0;
  padding-top: 0.75rem;
}

/* ====================
TEXT
==================== */

h1,h2,h3,h4,h5 {
  font-style: normal;
  padding: 0;
  margin: 0 0 10px 0;
  line-height: normal;
}
h1 {
  font-size: 50pt;
}
h2 {
  font-size: 40pt;
}
h3 {
  font-size: 30pt;
}
h4 {
  font-size: 20pt;
}
p {
  padding: 0;
  margin: 0 0 20px 0;
}
.primary-font {
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1em;
}
.secondary-font {
  font-family: 'Bebas Neue';
  line-height: 1em;
}
.title-large {
  width: 100%;
  font-size: 60pt;
  line-height: normal;
}
.title-large .title-small {
  line-height: 0;
}
.title-medium {
  width: 100%;
  font-size: 35pt;
  line-height: normal;
}
.title-small {
  width: 100%;
  font-size: 20pt;
  line-height: normal;
}
/* .title-partners {
  color: transparent;
  -webkit-text-stroke: 1pt var(--red);
  paint-order: stroke fill;
  font-size: 200pt;
} */
.text-lines {
  width: 920px;
  height: 200px;
  margin-bottom: -35px;
}
.text-lines text {
  display: block;
  width: 100%;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  stroke: var(--red);
  animation: dash 5s linear forwards, filling 4s ease-in forwards;
  font-size: 150pt;
  text-align: center;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes filling {
  from{
    fill: var(--red);
    fill-opacity: 0;
  }
  to {
    fill: var(--red);
    fill-opacity: 1;
  }
}

.align-left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.align-right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
.color-red {
  color: var(--red);
}
.color-blue {
  color: var(--blue);
}
.color-green {
  color: var(--green);
}
.color-purple {
  color: var(--purple);
}
.color-yellow {
  color: var(--yellow);
}
.text-shadow {
  text-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* ====================
COLORS
==================== */

.bg-red {
  background-color: var(--red);
}
.bg-blue {
  background-color: var(--blue);
}
.bg-green {
  background-color: var(--green);
}
.bg-purple {
  background-color: var(--purple);
}

/* ====================
FOOTER
==================== */

footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 2rem;
  font-size: 0.8rem;
}
.footer-logo {
  width: 100px;
  height: auto;
}
.footer-logo img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
footer ul {
  padding: 0;
}
footer ul li {
  margin-bottom: 10px;
  list-style-type: none;
}
footer ul li a {
  display: block;
  color: #FFFFFF;
  font-size: 14pt;
  text-decoration: none;
  align-items: baseline;
  transition: all 0.3s;
}
footer ul li a:hover {
  color: var(--red);
  transform: translateX(5px);
}
footer ul li a i {
  color: var(--red);
}

/* ====================
FORMS
==================== */

input[type=text], input[type=number], input[type=password], input[type=tel], input[type=search], input[type=date], input[type=time], textarea {
  width: 100%;
  color: #FFFFFF;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 15px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12pt;
  margin: 10px 0;
  outline: none;
  transition: border-color 0.3s ease;
}
input:focus, textarea:focus {
  border-color: rgba(255,255,255,1);
}

/* ====================
BUTTONS
==================== */

.btn-red {
  background-color: var(--red);
}
.btn-red:hover {
  background-color: var(--red-2);
}
.btn-blue {
  background-color: var(--blue);
}
.btn-blue:hover {
  background-color: var(--blue-2);
}
.btn-green {
  background-color: var(--green);
}
.btn-green:hover {
  background-color: var(--green-2);
}
.btn-purple {
  background-color: var(--purple);
}
.btn-purple:hover {
  background-color: var(--purple-2);
}
.btn-outline {
  background: rgba(var(--white),0.1);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(var(--white),0.5);
  font-size: 0.85rem;
  color: rgba(var(--white),1);
  transition: 0.2s;
}
.btn-outline:hover {
  background: rgba(var(--white),1);
  color: #000000;
  transform: translateY(-5%);
}
.btn {
  color: white;
  text-align: center;
  text-decoration: none;
  font-style: normal;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  transition: 0.2s;
  line-height: normal;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-5%);
}
.btn-primary {
  background: var(--red);
  border: 1px solid var(--red);
}
.btn-primary:hover {
  background:  var(--red-2);
  border: 1px solid var(--red-2);
  transform: translateY(-5%);
}
.btn-large {
  display: inline-block;
  font-family: 'Bebas Neue';
  font-size: 25pt;
  padding: 0.6rem 3rem;
  margin-bottom: 20px;
}
.btn-launcher {
  display: flex;
  flex-wrap: wrap;
  background: url('../img/bg-blood.jpg') center var(--red);
  background-size: 100% auto;
  color: rgba(var(--white),1);
  padding: 10px 30px;
  margin: 0 0 20px 0;
  text-decoration: none;
  font-size: 30pt;
  text-transform: uppercase;
  font-style: normal;
  align-items: center;
  transition: all 0.3s;
}
.btn-launcher:hover, .btn-launcher:active {
  background-size: 120% auto;
  cursor: pointer;
  transform: translateY(-5%);
  box-shadow: 0 5px 10px rgba(0,0,0,0.8);
}
.btn-launcher-icon {
  width: 60px;
  height: 60px;
  font-size: 40pt;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.btn-launcher-content {
  font-family: 'Bebas Neue';
  line-height: normal;
}
.btn-launcher-content h3 {
  margin: 0;
}
.btn-launcher-content p {
  font-size: 14pt;
  margin: 0;
}
.btn-close {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 30px;
  border: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}
.linked-icon {
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 30px;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.linked-icon:hover {
  transform: translateY(-5px);
}
