@charset "UTF-8";
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1rem 3rem;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  opacity: 0.7;
}
.header__logo-image {
  width: 100px;
}
.header__container-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.header__nav-item {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header__nav-item:hover {
  color: #ff6b35;
}
.header__cta {
  background: #ff6b35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.header__cta:hover {
  background: rgb(255, 69.6336633663, 2);
}
.header__cta-icon {
  width: 16px;
  height: 16px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
.header__hamburger-line {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.header__hamburger:hover .header__hamburger-line {
  background: #ff6b35;
}
.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #ff6b35;
}
.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #ff6b35;
}

@media (max-width: 768px) {
  .header__container-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  .header__nav.active {
    right: 0;
  }
  .header__nav-item {
    margin: 1rem 0;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .header__nav-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(10px);
  }
  .header__cta {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  .header::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }
  .header.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.footer {
  background: linear-gradient(135deg, #1f2937 0%, rgb(21.8081395349, 28.8430232558, 38.6918604651) 50%, rgb(36.5151162791, 48.2941860465, 64.7848837209) 100%);
  color: #ffffff;
  padding: 5rem 0 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(30, 58, 138, 0.6) 50%, rgba(220, 38, 38, 0.4) 100%);
}
.footer__container {
  margin: 0 auto;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 3rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand .footer__logo {
  margin-bottom: 2rem;
}
.footer__brand .footer__logo-image {
  width: 120px;
  height: auto;
}
.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer__social-link:hover {
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
}
.footer__section-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.footer__link:hover {
  color: #ff6b35;
  transform: translateX(5px);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.footer__contact-icon {
  color: #ff6b35;
  flex-shrink: 0;
}
.footer__bottom {
  padding: 3rem 3rem;
  background: rgba(0, 0, 0, 0.3);
}
.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.footer__legal {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer__legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: #ff6b35;
}
.footer__developer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}
.footer__developer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.footer__developer-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 0 0;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .footer__legal {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer__container {
    padding: 0 2rem;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__legal {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero--arqueros {
  background: linear-gradient(135deg, rgba(247, 215, 0, 0.9) 0%, rgba(30, 58, 138, 0.8) 50%, rgba(220, 38, 38, 0.7) 100%);
}
.hero--arqueros::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero/2.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero--arqueros::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero--arqueros .hero__content {
  position: relative;
  z-index: 2;
}

/*
.arqueros-stats {
  padding: $spacing-xl 0;
  background: linear-gradient(135deg, rgba($color-primary, 0.05) 0%, rgba($color-secondary, 0.02) 100%);

  &__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 $spacing-lg;
  }

  &__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: $spacing-lg;
  }

  &__item {
    text-align: center;
    background: $color-white;
    padding: $spacing-xl;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba($color-dark, 0.1);
    transition: all 0.3s ease;

    &:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba($color-dark, 0.15);
    }
  }

  &__number {
    font-size: 3rem;
    font-weight: 700;
    color: $color-primary;
    margin-bottom: $spacing-sm;
    display: block;
  }

  &__label {
    font-size: 1rem;
    font-weight: 600;
    color: $color-dark;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
}
*/
.arqueros-filters {
  padding: 3rem 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(31, 41, 55, 0.1);
}
.arqueros-filters__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.arqueros-filters__search {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.arqueros-filters__search-input {
  width: 100%;
  padding: 1rem 2rem 1rem 48px;
  border: 2px solid rgba(247, 215, 0, 0.2);
  border-radius: 30px;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.3s ease;
}
.arqueros-filters__search-input:focus {
  outline: none;
  border-color: #F7D700;
  box-shadow: 0 0 0 3px rgba(247, 215, 0, 0.1);
}
.arqueros-filters__search-input::placeholder {
  color: rgba(31, 41, 55, 0.5);
}
.arqueros-filters__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(31, 41, 55, 0.5);
  pointer-events: none;
}
.arqueros-filters__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.arqueros-filters__btn {
  background: rgba(247, 215, 0, 0.1);
  color: #1f2937;
  border: 2px solid rgba(247, 215, 0, 0.2);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.arqueros-filters__btn:hover {
  border-color: #F7D700;
  background: rgba(247, 215, 0, 0.2);
  transform: translateY(-2px);
}
.arqueros-filters__btn.active {
  background: #F7D700;
  color: #ffffff;
  border-color: #F7D700;
  box-shadow: 0 4px 12px rgba(247, 215, 0, 0.3);
}

.arqueros {
  padding: 5rem 0;
  background: #ffffff;
  min-height: 60vh;
}
.arqueros__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}
.arqueros__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}
.arqueros__card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(31, 41, 55, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.arqueros__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(31, 41, 55, 0.15);
}
.arqueros__card--skeleton {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}
.arqueros__card--skeleton .skeleton-photo,
.arqueros__card--skeleton .skeleton-name,
.arqueros__card--skeleton .skeleton-club,
.arqueros__card--skeleton .skeleton-info,
.arqueros__card--skeleton .skeleton-stats {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}
.arqueros__card-photo {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F7D700 0%, #1e3a8a 100%);
}
.arqueros__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.arqueros__card-photo:hover img {
  transform: scale(1.05);
}
.arqueros__card-photo--no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 4rem;
  font-weight: 300;
}
.arqueros__card-photo--no-photo::before {
  content: "👤";
  opacity: 0.8;
}
.arqueros__card-content {
  padding: 3rem;
}
.arqueros__card-header {
  margin-bottom: 2rem;
}
.arqueros__card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.arqueros__card-club {
  font-size: 0.9rem;
  color: #1e3a8a;
  font-weight: 500;
}
.arqueros__card-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.arqueros__card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.arqueros__card-badge--gender.masculino {
  background: rgba(30, 58, 138, 0.1);
  color: #1e3a8a;
}
.arqueros__card-badge--gender.femenino {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}
.arqueros__card-badge--disability {
  background: rgba(247, 215, 0, 0.1);
  color: #F7D700;
}
.arqueros__card-badge--height {
  background: rgba(31, 41, 55, 0.1);
  color: #1f2937;
}
.arqueros__card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.arqueros__card-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(247, 215, 0, 0.05);
  border-radius: 8px;
}
.arqueros__card-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F7D700;
  display: block;
}
.arqueros__card-stat-label {
  font-size: 0.75rem;
  color: rgba(31, 41, 55, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.arqueros__card-email {
  font-size: 0.85rem;
  color: rgba(31, 41, 55, 0.6);
  margin-top: 1rem;
  word-break: break-word;
}
.arqueros__loading-indicator {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  color: #1f2937;
}
.arqueros__loading-indicator.show {
  display: flex;
}
.arqueros__loading-indicator .loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(247, 215, 0, 0.2);
  border-left: 4px solid #F7D700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 2rem;
}
.arqueros__loading-indicator span {
  font-size: 1rem;
  color: rgba(31, 41, 55, 0.7);
}
.arqueros__empty-state {
  display: none;
  text-align: center;
  padding: 5rem;
  color: rgba(31, 41, 55, 0.6);
}
.arqueros__empty-state.show {
  display: block;
}
.arqueros__empty-state-icon {
  font-size: 4rem;
  margin-bottom: 3rem;
  opacity: 0.3;
}
.arqueros__empty-state h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.arqueros__empty-state p {
  font-size: 1rem;
  line-height: 1.6;
}
.arqueros__error-state {
  display: none;
  text-align: center;
  padding: 5rem;
  color: #dc2626;
}
.arqueros__error-state.show {
  display: block;
}
.arqueros__error-state-icon {
  font-size: 4rem;
  margin-bottom: 3rem;
  opacity: 0.5;
}
.arqueros__error-state h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.arqueros__error-state p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.arqueros__error-state-retry {
  background: #dc2626;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.arqueros__error-state-retry:hover {
  background: rgb(178.25, 28.75, 28.75);
  transform: translateY(-2px);
}

@keyframes skeleton-loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  /*
  .arqueros-stats {
    padding: $spacing-lg 0;

    &__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: $spacing-md;
    }

    &__item {
      padding: $spacing-lg;
    }

    &__number {
      font-size: 2rem;
    }
  }
  */
  .arqueros-filters {
    padding: 2rem 0;
  }
  .arqueros-filters__container {
    gap: 2rem;
  }
  .arqueros-filters__buttons {
    gap: 0.5rem;
  }
  .arqueros-filters__btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .arqueros {
    padding: 4rem 0;
  }
  .arqueros__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }
  .arqueros__card-content {
    padding: 2rem;
  }
  .arqueros__card-photo {
    height: 220px;
  }
}
@media (max-width: 480px) {
  /*
  .arqueros-stats {
    &__grid {
      grid-template-columns: 1fr;
    }

    &__number {
      font-size: 2.5rem;
    }
  }
  */
  .arqueros-filters__container {
    padding: 0 2rem;
  }
  .arqueros-filters__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .arqueros-filters__btn {
    text-align: center;
  }
  .arqueros__container {
    padding: 0 2rem;
  }
  .arqueros__grid {
    grid-template-columns: 1fr;
  }
}

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