@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--clubes {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(247, 215, 0, 0.8) 50%, rgba(220, 38, 38, 0.7) 100%);
}
.hero--clubes::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;
  opacity: 0.35;
  z-index: 0;
}
.hero--clubes::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero--clubes .hero__content {
  position: relative;
  z-index: 2;
}

.clubes-filters {
  padding: 3rem 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(31, 41, 55, 0.1);
}
.clubes-filters__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .clubes-filters__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.clubes-filters__search {
  position: relative;
  flex: 1;
  max-width: 400px;
}
.clubes-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;
}
.clubes-filters__search-input:focus {
  outline: none;
  border-color: #F7D700;
  box-shadow: 0 0 0 3px rgba(247, 215, 0, 0.1);
}
.clubes-filters__search-input::placeholder {
  color: rgba(31, 41, 55, 0.5);
}
.clubes-filters__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(31, 41, 55, 0.5);
  pointer-events: none;
}
.clubes-filters__sort {
  flex-shrink: 0;
}
.clubes-filters__sort-select {
  padding: 1rem 2rem;
  border: 2px solid rgba(247, 215, 0, 0.2);
  border-radius: 30px;
  font-size: 0.9rem;
  background: #ffffff;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}
.clubes-filters__sort-select:focus {
  outline: none;
  border-color: #F7D700;
  box-shadow: 0 0 0 3px rgba(247, 215, 0, 0.1);
}

.clubes {
  padding: 5rem 0;
  background: #ffffff;
  min-height: 60vh;
}
.clubes__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}
.clubes__header {
  text-align: center;
  margin-bottom: 5rem;
}
.clubes__title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.clubes__description {
  font-size: 1.25rem;
  color: rgba(31, 41, 55, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.clubes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}
.clubes__card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(31, 41, 55, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.clubes__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(31, 41, 55, 0.15);
}
.clubes__card:hover .clubes__card-banner img {
  transform: scale(1.05);
}
.clubes__card:hover .clubes__card-logo {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(247, 215, 0, 0.3);
}
.clubes__card--skeleton {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
.clubes__card--skeleton .skeleton-banner,
.clubes__card--skeleton .skeleton-logo,
.clubes__card--skeleton .skeleton-name,
.clubes__card--skeleton .skeleton-city,
.clubes__card--skeleton .skeleton-date {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}
.clubes__card-banner {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F7D700 0%, #1e3a8a 100%);
}
.clubes__card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.clubes__card-banner--no-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 300;
}
.clubes__card-banner--no-banner::before {
  content: "🏛️";
  opacity: 0.6;
}
.clubes__card-content {
  padding: 4rem;
  position: relative;
}
.clubes__card-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.15);
  position: absolute;
  top: -40px;
  left: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 4px solid #ffffff;
}
.clubes__card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.clubes__card-logo--no-logo {
  background: linear-gradient(135deg, #F7D700 0%, #1e3a8a 100%);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
}
.clubes__card-logo--no-logo::before {
  content: "🏹";
}
.clubes__card-header {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.clubes__card-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  min-height: 2.6rem;
}
.clubes__card-city {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #1e3a8a;
  font-weight: 500;
}
.clubes__card-city::before {
  content: "📍";
  font-size: 0.9rem;
}
.clubes__card-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.clubes__card-established {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(31, 41, 55, 0.6);
}
.clubes__card-established::before {
  content: "📅";
  font-size: 0.8rem;
}
.clubes__card-members {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(31, 41, 55, 0.6);
}
.clubes__card-members::before {
  content: "👥";
  font-size: 0.8rem;
}
.clubes__card-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 41, 55, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clubes__card-contact {
  background: rgba(247, 215, 0, 0.1);
  color: #F7D700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.clubes__card-contact:hover {
  background: #F7D700;
  color: #ffffff;
  transform: translateY(-2px);
}
.clubes__card-status {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.clubes__card-status--active {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.clubes__card-status--inactive {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}
.clubes__loading-indicator {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  color: #1f2937;
}
.clubes__loading-indicator.show {
  display: flex;
}
.clubes__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;
}
.clubes__loading-indicator span {
  font-size: 1rem;
  color: rgba(31, 41, 55, 0.7);
}
.clubes__empty-state {
  display: none;
  text-align: center;
  padding: 5rem;
  color: rgba(31, 41, 55, 0.6);
}
.clubes__empty-state.show {
  display: block;
}
.clubes__empty-state-icon {
  font-size: 4rem;
  margin-bottom: 3rem;
  opacity: 0.3;
}
.clubes__empty-state h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.clubes__empty-state p {
  font-size: 1rem;
  line-height: 1.6;
}
.clubes__error-state {
  display: none;
  text-align: center;
  padding: 5rem;
  color: #dc2626;
}
.clubes__error-state.show {
  display: block;
}
.clubes__error-state-icon {
  font-size: 4rem;
  margin-bottom: 3rem;
  opacity: 0.5;
}
.clubes__error-state h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.clubes__error-state p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.clubes__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;
}
.clubes__error-state-retry:hover {
  background: rgb(178.25, 28.75, 28.75);
  transform: translateY(-2px);
}

.join-club {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(247, 215, 0, 0.05) 0%, rgba(30, 58, 138, 0.02) 100%);
}
.join-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .join-club__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.join-club__content {
  max-width: 600px;
}
.join-club__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.join-club__description {
  font-size: 1.125rem;
  color: rgba(31, 41, 55, 0.7);
  line-height: 1.6;
  margin-bottom: 4rem;
}
.join-club__actions {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.join-club__cta {
  padding: 1rem 3rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
}
.join-club__cta--primary {
  background: #F7D700;
  color: #ffffff;
  border-color: #F7D700;
}
.join-club__cta--primary:hover {
  background: rgb(196, 170.6072874494, 0);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 215, 0, 0.3);
}
.join-club__cta--secondary {
  background: transparent;
  color: #F7D700;
  border-color: #F7D700;
}
.join-club__cta--secondary:hover {
  background: #F7D700;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 215, 0, 0.2);
}
.join-club__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.join-club__icon {
  font-size: 8rem;
  opacity: 0.8;
  filter: drop-shadow(0 8px 20px rgba(247, 215, 0, 0.2));
}

@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) {
  .clubes {
    padding: 4rem 0;
  }
  .clubes__title {
    font-size: 2.5rem;
  }
  .clubes__description {
    font-size: 1.125rem;
  }
  .clubes__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .clubes__card-content {
    padding: 3rem;
  }
  .clubes__card-banner {
    height: 160px;
  }
  .clubes__card-logo {
    width: 60px;
    height: 60px;
    top: -30px;
  }
  .clubes__card-header {
    margin-top: 2rem;
  }
  .clubes__card-name {
    font-size: 1.2rem;
    min-height: auto;
  }
  .join-club {
    padding: 4rem 0;
  }
  .join-club__title {
    font-size: 2rem;
  }
  .join-club__actions {
    justify-content: center;
  }
  .join-club__icon {
    font-size: 6rem;
  }
}
@media (max-width: 480px) {
  .clubes-filters__container {
    padding: 0 2rem;
  }
  .clubes-filters__sort-select {
    min-width: auto;
    width: 100%;
  }
  .clubes__container {
    padding: 0 2rem;
  }
  .clubes__grid {
    grid-template-columns: 1fr;
  }
  .clubes__card-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .clubes__card-contact {
    text-align: center;
  }
  .join-club__container {
    padding: 0 2rem;
  }
  .join-club__actions {
    flex-direction: column;
    align-items: center;
  }
  .join-club__cta {
    width: 100%;
    text-align: center;
    max-width: 280px;
  }
}

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