/*
 * Galeria do perfil
 */
.club_galleryProfileContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    overflow: hidden;
    transition: all .3s;
}
.club_galleryProfileContainer.active {
    max-height: 5000px !important;
}
.club_galleryProfileGrid img {
	width: 100%;
    border-radius: 8px !important;
}
@media (min-width: 768px) {
    .club_galleryProfileContainer {
        grid-template-columns: repeat(4, 1fr);
    }
}

.club_unfoldGalleryLayer.active {
    display: none;
}

/*
 * Descricao do perfil
 */
.club_unfoldDescription_content {
    max-height: 200px;
    overflow: hidden;
    transition: all .3s;
}
  
.club_unfoldDescription_content.active {
    max-height: 5000px;
}

/*
 * Pesquisa de cidades
 */
#club_dynamicSearch {
  position: relative;
  width: 100%;
  display: block;
}

#club_dynamicSearchInput {
    background-color: transparent;
    color: #fff;
    font-family: 'Montserrat';
    padding: 15px 15px;
    width: 100%;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #fff;
    font-size: 17px;
}
#club_dynamicSearchInput::placeholder {
    color: #fff;
    opacity: 1;
}
#club_dynamicSearchInput:focus {
    outline: 0px;
}


#club_dynamicSearchResults {
    position: absolute;
    width: 100%;
    padding-top: 15px;
	z-index: 99;
    border-radius: 12px
}
#club_dynamicSearchResults .search-result {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
	color: #fff;
	font-family: 'Montserrat';
    transition: all .3s;
}

#club_dynamicSearchResults .search-result:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Virtual Grid */
.club_virtualProfilesGrid_noResults {
    color: #fff !important;
    text-align: center !important;
}

.club_virtualProfilesGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.club_virtualProfilesGrid_item {
    width: calc( 33.33% - 10px );
    position: relative;
}

@media only screen and (max-width: 480px) {
    .club_virtualProfilesGrid_item {
        width: calc( 50% - 10px );
    }
}

.club_virtualProfilesGrid_item a {
    display: block;
}

.club_virtualProfilesGrid_itemThumb {
    width: 100% !important;
    border-radius: 12px !important;
}

.club_virtualProfilesGrid_itemTitle {
    color: #fff !important;
}

.club_virtualProfilesGrid_itemLabel {
    width: 120px !important;
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 8px !important;
}

.club_virtualProfilesGrid_title {
    text-align: center;
    font-weight: bold;
    color: #ffdc00 !important;
    font-size: 20px;
    padding-top: 25px;
    padding-bottom: 20px;
}

/* Club Profiles Grid */
.club_gridItem {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background-color: transparent;
    background-image: linear-gradient(90deg, #FFFFFF08 0%, #FFFFFF14 100%);
    font-family: 'Montserrat';
}

.club_gridItem a {
    position: relative;
}

.club_gridItem:hover {
    background-color: #ffffff05;
}

.club_gridItem.featured {
    background-image: none;
    background: linear-gradient(-45deg, #a50c47, #991c50, #5823d5, #7623d5);
    background-size: 400% 400%;
    animation: club_gridItem__gradient 5s ease infinite;
}

@keyframes club_gridItem__gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.club_gridItem:hover .club_gridItem__cover img {
    filter: brightness(1.1);
}

.club_gridItem__tag {
    width: auto;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 99;
    color: #fff;
    padding: 4px 12px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    border-radius: 16px;
    background-color: #6922c7;
    display: flex;
    gap: 5px;
    align-items: center;
}

.club_gridItem__tag img {
    height: 14px !important;
    width: auto !important;
}

.club_gridItem__cover img {
    width: 100% !important;
    filter: brightness(1);
    transition: all .3s;
}

.club_gridSwiper .swiper-button-prev, .club_gridSwiper .swiper-button-next {
    color: #fff !important;
}

.club_gridSwiper .swiper-button-next:after, .club_gridSwiper .swiper-button-prev:after {
    font-size: 20px !important;
}

.club_gridSwiper .swiper-pagination-bullet {
    width: 10px !important;
    background: #ffffff !important;
    height: 10px !important;
}

.club_gridSwiper .swiper-pagination-bullet-active {
    background: #c930d4 !important;
}

.club_gridSwiper .swiper-scrollbar-drag {
    background: #c930d4 !important;
}

.club_gridItemContent {
    display: flex;
    flex-flow: wrap;
    gap: 12px;
    padding: 10px;
    color: #fff;
    font-family: 'Montserrat';
}

.club_gridItemContent a {
    display: flex;
    flex-flow: wrap;
    gap: 8px;
    color: #ffffff !important;
}

.club_gridItemContent__title {
    width: 100%;
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.club_gridItemContent__text {
    font-size: 14px;
}

.club_gridItemContent__infos {
    display: flex;
    gap: 10px;
    flex-flow: wrap;
}

.club_gridItemContent__infosItem {
    font-size: 12px;
    display: flex;
    gap: 5px;
    color: #ffffffd1;
    align-items: center;
}

.club_gridItemContent__infosItem svg {
    height: 12px;
    fill: #ffffffd1;
}

.club_gridItemContent__button {
    width: 100% !important;
    background: #8430d4 !important;
    border: 0 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
}

.club_gridItemContent__button:hover {
    background: #752abb !important;
}

/* Phone Modal */
.club_modalViewPhone {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000db;
    z-index: 999;
    align-items: center;
    justify-content: center;
    display: none;
}

.club_modalViewPhone.active {
    display: flex;
}

.club_modalViewPhone__box {
    max-width: 400px;
    width: 95%;
    position: relative;
    display: flex;
    text-align: center;
    color: #fff;
    flex-flow: column;
    justify-content: center;
    background: #6922c7;
    padding: 25px;
    border-radius: 8px;
    gap: 15px;
    font-family: 'Montserrat';
}

.club_modalViewPhone__header {
    font-size: 20px;
    font-weight: bold;
}

.club_modalViewPhone__infos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.club_modalViewPhone__infosColumn {
    display: flex;
    flex-flow: column;
    text-align: left;
}

.club_modalViewPhone__image {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover !important;
    border-radius: 100px !important;
    max-width: 150px !important;
    align-self: center !important;
}

.club_modalViewPhone__title {
    font-size: 17px;
    font-weight: 600;
}

.club_modalViewPhone__phone span {
    font-size: 24px;
}

.club_modalViewPhone__button {
    padding: 12px !important;
    border-radius: 8px !important;
    line-height: 2;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.club_modalViewPhone__button svg {
    height: 17px;
    fill: #ffff;
}

.club_modalViewPhone__whats {
    background-color: #14d51ddb !important;;
    color: #fff !important;
}

.club_modalViewPhone__call {
    background-color: #ffffff !important;;
    color: #000 !important;;
}

.club_modalViewPhone__call svg {
    fill: #000;
}

.club_modalViewPhone__close {
    position: absolute !important;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.club_modalViewPhone__close svg {
    fill: #ffff;
    height: 24px;
}


/* Carrossel de Stories */
.stories__carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
  
.stories__carousel-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px; /* reserva espaço para a scrollbar */
}
.stories__carousel-container .stories__carousel-item {
    flex: 0 0 calc(100% / 7.8);
    text-align: center;
    cursor: pointer;
    background: red;
    background: linear-gradient(45deg, rgb(119, 0, 255) 0%, rgba(234, 0, 255, 0.5) 100%);
    padding: 2px;
    border-radius: 100px !important;
    /*box-shadow: rgba(205, 131, 255, 0.35) 0px 0px 12px;*/
}
.stories__carousel-container .stories__carousel-item img {
    width: 100%;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 100px !important;
    display: block;
}

/* Itens visíveis: 3.5 por linha no mobile */
@media (max-width: 768px) {
    .stories__carousel-wrapper .stories__carousel-item {
      flex: 0 0 calc(100% / 3.5);
    }
}

/* Scrollbar customizada */
.stories__carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}
.stories__carousel-wrapper::-webkit-scrollbar-track {
    background: transparent;
}
.stories__carousel-wrapper::-webkit-scrollbar-thumb {
    background-color: #7F00FF; /* roxo */
    border-radius: 4px;
}

/* Arrows */
.stories__arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
  }
  .stories__arrow--left {
    left: 10px;
  }
  .stories__arrow--right {
    right: 10px;
  }
  .stories__arrow::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
  }
  .stories__arrow--left::before {
    transform: rotate(135deg);
  }
  .stories__arrow--right::before {
    transform: rotate(-45deg);
  }
    
/* Off-Canvas (inicia oculto) */
.stories__offCanvas {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    display: none; /* Oculto por padrão */
    align-items: center;
    z-index: 999;
}
    
.stories__close-icon {
        width: 38px;
        height: 38px;
        position: absolute;
        cursor: pointer;
        top: 15px;
        right: 15px;
        z-index: 10;
}
    
.stories__close-icon::before,
.stories__close-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 38px;
        height: 2px;
        background-color: rgb(255, 255, 255);
        transform-origin: center;
        text-shadow: #000 0 0 16px !important;
}
    
.stories__close-icon::before {
        transform: translate(-50%, -50%) rotate(45deg);
}
    
.stories__close-icon::after {
        transform: translate(-50%, -50%) rotate(-45deg);
}
    
.stories__mainSwiper-container {
    width: auto;
    height: 95vh;
    max-width: 500px;
    margin: 0 auto;
    background: #000;
}
    
.stories__mainSwiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
    
.stories__mainSwiper-container .swiper-slide video {
    width: 100%;
    max-height: 95vh;
}
    
/* Estilos para o swiper interno (para slides que contem galerias de imagens) */
.stories__internalSwiper-container {
    width: 100%;
    height: 300px; /* Altura para exibir as imagens */
    background: #ddd;
}
    .stories__internalSwiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.stories__internalSwiper-container .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 90vh;
    object-fit: cover;
}
    
.stories__mainSwiper-container .swiper-button-prev {
    transform: rotate(90deg) !important;
    top: calc(50% - 20px) !important;
    right: 5% !important;
    left: auto !important;
    color: #fff !important;
    text-shadow: #000 0 0 16px !important;
}

.stories__mainSwiper-container .swiper-button-next {
    transform: rotate(90deg) !important;
    top: calc(50% + 20px) !important;
    right: 5% !important;
    left: auto !important;
    color: #fff !important;
    text-shadow: #000 0 0 16px !important;
}
.stories__internalSwiper-container .swiper-pagination {
    top: 15px !important;
}

.stories__internalSwiper-container .swiper-pagination-bullet {
    background: #fff !important;
}
    
.stories__footer {
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 50px 15px 15px 15px;
    z-index: 100;
}
    
.stories__footerProfile {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.stories__footerProfile img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 100px !important;
    object-fit: cover !important;
}
.stories__footerProfile-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.stories__footerProfile-name {
    color: #fff;
    font-size: 18px;
}
.stories__footerProfile-city {
    color: #fff;
    font-size: 12px;
}

/* PAGE CLUSTERS */
.club_clusters_main {
    width: 100%;
}
.club_clusters_main h3 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}
.club_clusters_container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.club_clusters_item {
  display: inline-block !important;  /* largura pelo conteúdo */
  padding: 12px 16px !important;
  background: #fff !important;
  color: #8a2be2 !important;
  text-decoration: none !important;
  border-radius: 20px !important;
  font-size: 14px !important;
  white-space: nowrap !important;    /* não quebra texto */
  transition: background .2s !important;
}
.club_clusters_item:hover {
  background: #f0f0f0 !important;
}
@media (max-width: 768px) {
    .club_clusters_container {
        gap: 8px;
    }
    .club_clusters_item {
        padding: 12px 8px !important;
        font-size: 12px !important;
    }
}