html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* garante que não haja rolagem horizontal -----*/
}

.home-header{
    height: 200px;
    background-position: top right;
    background-repeat: no-repeat;
}

.home-box-img{
    max-width: 120px;
    max-height: 120px;
}

.home-mid-img{
    max-width: 400px;
}

.coinbasae-logo{
    height:1.3rem
}

/* START OPTIONS */
/* contêiner principal do botão e ícones */
.models-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* espaço entre os ícones e o botão */
    margin-top: 10px;
}

/* Contêiner de ícones */
.icons-container {
    display: flex;
    justify-content: center;
    gap: 50px; /* espaço entre os ícones */
}

/* estilo geral dos ícones */
.icons-container i {
    font-size: 25px; /* tamanho dos ícones */
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Animação no hover */
.icons-container i:hover {
    transform: scale(1.2); /* aumenta ligeiramente no hover */
    color: #CC88F9; /* muda a cor no hover */
}

/* estilo do botão */
.models-button {
    background-color: #CC88F9; /* cor do botão */
    color: #fff;
    border: none;
    padding: 10px 125px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

/* efeito hover no botão */
.models-button:hover {
    background-color: #CC88F9;
    color: #fff;
    transform: scale(1.05);
}

/* responsividade para telas menores */
@media (max-width: 768px) {
    .models-button {
        padding: 8px 125px; /* reduz o padding em dispositivos móveis */
        font-size: 14px; /* fonte menor */
    }
}

@media (max-width: 480px) {
    .models-button {
        padding: 6px 125px; /* ainda menor para telas muito pequenas */
        font-size: 12px; /* fonte ainda menor */
        border-radius: 15px; /* bordas mais compactas */
    }
}
/* END OPTIONS */

/* START STORIES SLIDER */
/* container do carrossel */
.stories-container {
    overflow: hidden;
    width: 100%;
    background: #f4f4f400;
    padding: 20px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

/* estilo geral do slider de stories */
.stories-slider {
    display: flex;
    gap: 12px; /* espaço entre os stories */
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x mandatory; /* snap para rolar como carrossel */
}

.story {
    text-align: center;
    scroll-snap-align: start; /* snap ao início do elemento */
}

.story-border {
    position: relative;
    width: 90px; /* Aumentei um pouco para acomodar o espaçamento */
    height: 90px;
    border-radius: 50%;
    padding: 4px; /* Espaço entre a borda e o avatar */
    background: linear-gradient(135deg, #6ABAC4, #CC88F9); /* Degradê Rosa → Roxo */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Permite que o número fique visível fora da borda */
}

.story-border.seen {
    position: relative;
    width: 80px; /* Ajusta conforme necessário */
    height: 80px;
    border-radius: 50%;
    padding: 3px; /* Ajuste para a borda degradê */
    background: linear-gradient(135deg, #c7bcc6, #2a272c); /* Degradê Rosa → Roxo */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Permite que o número fique visível fora da borda */
}

.story-number {
    position: absolute;
    top: 5px; /* Coloca o número no topo da imagem */
    right: -5px; /* Move o número para fora da borda direita */
    background: #CC88F9; /* Cor do fundo do número */
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white; /* Contorno branco */
    z-index: 10; /* Garante que o número fique à frente da borda e da imagem */
}

.story-name {
    margin-top: 8px;
    font-size: 14px;
    color: #000000; /* ajuste conforme seu tema */
  }
  
.dark-theme + .story-name,
  [data-theme="dark"] .story-name {
    color: #000000; /* fica branco no dark mode */
}

.story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: white; /* Garante um fundo branco ao redor do avatar */
    padding: 3px; /* Cria um espaço entre a borda e a imagem */
}

.dark-theme .story-avatar {
    background-color: #1e1e1e;
}

/* Estilos para o modal */
.story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.story-content {
    position: relative;
    width: 300px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .story-content {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }

    #storyImage {
        border-radius: 0;
    }
}

#storyImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Header */
.story-header {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    z-index: 10000;
    color: white;
}

.profile-story {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid white;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-info strong {
    font-size: 14px;
    color: white;
}

.user-info small {
    font-size: 12px;
    color: white;
    opacity: 0.8;
}

/* Footer */
.story-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(4, 0, 5, 0.1);
    border-radius: 30px;
    padding: 8px 15px;
    backdrop-filter: blur(8px);
}

.reply-input {
    flex: 1;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    outline: none;
    padding-left: 5px;
}

.reply-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-icons {
    display: flex;
    gap: 15px;
    margin-left: 10px;
}

.footer-icons i {
    font-size: 18px;
    color: white;
    cursor: pointer;
}

/* Botões de navegação */
.next-btn, .prev-btn {
    position: absolute;
    top: 50%;
    width: 15%;
    height: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.next-btn::after, .prev-btn::after {
    content: '➜';
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.prev-btn::after {
    content: '➜';
    transform: rotate(180deg);
}

.next-btn {
    right: 10px;
}

.prev-btn {
    left: 10px;
}

/* Progresso */
.progress-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    width: 0;
    height: 100%;
    background: white;
}

/* Botão fechar */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 10;
}
/* END STORIES SLIDER */

/* START CARDS SLIDER */
/* container do carrossel */
.carousel-container {
    overflow: hidden;
    width: 100%;
    background: #f4f4f400;
    padding: 20px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

/* faixa de itens do carrossel */
.slider {
    display: flex;
    gap: 20px;
    position: relative;
}

/* cada card */
.cards {
    width: 180px;
    height: 225px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    position: relative;
    flex-shrink: 0; /* para evitar que o card encolha */
}

/* hover Effect */
.cards:hover {
    transform: scale(1.05); /* leve zoom no hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* sombra maior */
}

.cards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* sobreposição de texto */
.text-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
}

.text-overlay h5 {
    font-size: 15px;
}

.text-overlay span {
    font-size: 10px;
}

.status-badge {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    padding: 2px 8px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
}

/* classe para o badge online */
.status-badge.online::after {
    content: "ONLINE"; /* texto adicionado via CSS */
    background-color: #28a745; /* verde para 'online' */
}

/* classe para o badge offline */
.status-badge.offline::after {
    content: "OFFLINE"; /* texto adicionado via CSS */
    background-color: #dc3545; /* vermelho para 'offline' */
}

/* estilos comuns para ambos */
.status-badge.online::after,
.status-badge.offline::after {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
}

/* imagem no canto inferior direito */
.text-overlay .bottom-right-image {
    position: absolute;
    bottom: 10px; /* distância do fundo */
    right: 10px;  /* distância da direita */
    width: 35px;  /* largura da imagem */
    height: 35px; /* altura da imagem */
    object-fit: cover; /* para garantir que a imagem mantenha a proporção */
}
/* END CARDS SLIDER */

/* START MAP AND CARDS OF LOCATION */
.location-label {
    font-family: 'Beatrice Display Trial', sans-serif; /* fonte personalizada */
    font-size: 20px; /* tamanho maior para a logo */
    font-weight: 600;
    color: #CC88F9; /* cor rosa */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* sombra no texto */
    text-decoration: none;
    font-style: italic; 
}

/* Container do mapa */
#map-container {
    position: relative;
    width: 95%;
    height: 200px;
    margin: auto;
}

/* O mapa ocupa todo o container */
#map {
    width: 100%;
    height: 100%;
}

/* Mapa falso ocupa exatamente o mesmo espaço do mapa real */
#fake-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/map.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 10px;
}

/* Estilização do botão */
#reveal-map-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #CC88F9; /* Rosa sólido */
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto; /* Por padrão, ele mantém um tamanho adequado */
    max-width: 90%; /* Evita que fique muito largo em telas pequenas */
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    #reveal-map-btn {
        width: 60%; /* O botão ocupa toda a largura no mobile */
        max-width: 90%; /* Mantém um limite para não ficar colado nas bordas */
        padding: 16px 0; /* Ajusta o espaçamento interno */
        font-size: 12px;
    }
}

/* Ícone no botão */
#reveal-map-btn i {
    font-size: 18px; /* Tamanho do ícone */
}

/* Efeito ao passar o mouse */
#reveal-map-btn:hover {
    background: #CC88F9; /* Um rosa mais escuro */
    transform: translate(-50%, -50%) scale(1.05);
}

/* Efeito ao clicar */
#reveal-map-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}

/* contêiner principal */
.location-slider-container {
    width: 100%;
    max-width: 1325px;
    margin: 0 auto;
    overflow: hidden; /* evita que o slider vaze da tela */
    display: none; /* Oculta os cards inicialmente */
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Efeito suave ao aparecer */
}

.location-slider-container.active {
    display: block; /* Mostra quando a classe 'active' é adicionada */
    opacity: 1;
}

/* slider */
.location-slider {
    display: flex;
    gap: 40px; /* espaço entre os cards */
    overflow-x: auto; /* permite rolagem horizontal */
    scroll-behavior: smooth; /* animação suave na rolagem */
    padding: 10px;
    cursor: grab; /* indicador de que o slider pode ser arrastado */
}

/* remove a barra de rolagem */
.location-slider::-webkit-scrollbar {
    display: none;
}

/* card da location */
.location-card {
    position: relative;
    flex: 0 0 auto; /* evita que os cards encolham */
    width: 180px;
    height: 225px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* garante que a imagem preencha o card */
}

/* efeito de hover */
.location-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
/* END MAP AND CARDS OF LOCATION */

/* START PROFILE CARDS */
/* Estilo Geral */
.instagram-post {
    width: auto;
    max-width: 470px;
    display: inline-block;
    background-color: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    margin: 0 auto 20px auto;
    font-family: Arial, sans-serif;
}

.dark-theme {
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid #333;
}

.dark-theme .username {
    color: #fff; /* Branco no modo escuro */
}

.dark-theme .post-caption {
    color: #fff; /* Branco no modo escuro */
}

/* Cabeçalho */
.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    padding: 3px; /* Ajuste para a borda degradê */
    background: linear-gradient(135deg, #ee59e6, #CC88F9); /* Borda vermelha simulando stories ativos */
}

.username {
    font-size: 14px;
    font-weight: bold;
    color: #1e1e1e;
}

/* Ícone de Opções */
.post-options {
    font-size: 20px;
    cursor: pointer;
    color: #1e1e1e;
}

/* Imagem do Post */
.post-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.post-media {
    /* width: 100%; */
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.mute-toggle {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    padding: 8px;
    cursor: pointer;
}


/* Ações do Post */
.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
}

.left-icons {
    display: flex;
    gap: 20px;
}

.action-icon {
    width: 24px;
}

.save-icon {
    margin-left: auto;
}

/* Legenda */
.post-caption {
    padding: 8px 12px;
    font-size: 14px;
    color: #1e1e1e;
}

.post-caption strong {
    font-weight: bold;
}

/* Data */
.post-date {
    padding: 8px 12px;
    font-size: 12px;
    color: gray;
}

.post-date a{
    color: #CC88F9;
}

@media (max-width: 768px) {
    .instagram-post {
        width: 100% !important;
        margin-bottom: 20px; /* Espaçamento entre os cards */
    }
    .post-media {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1px;
    }
}
/* END PROFILE CARDS */

.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.search-box {
    width: 100%;
    max-width: 1200px;
}

/* flex layout para os selects e o botão */
.top-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.top-row select {
    flex: 1;
    padding: 12px;
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #CC88F9;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
}

/* estilização do select grande e do botão na segunda linha */
.bottom-row {
    display: flex;
    gap: 10px;
}

.bottom-row select {
    flex: 9;
    padding: 12px;
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #CC88F9;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
}

.bottom-row button {
    flex: 1;
    padding: 12px;
    background: #CC88F9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bottom-row button:hover {
    transform: scale(1.05);
}

#usernameSearch::placeholder {
  color: #fff;
  opacity: 1; /* garante que a cor fique forte */
}

.custom-select {
    height: auto; /* garante que o tamanho do select seja ajustado */
    overflow: visible; /* garante que as opções não sejam cortadas */
    max-height: none; /* remove qualquer limitação de altura */
}

.containers {
  background-color: rgb(36, 36, 36);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 15px 10px 10px;
  cursor: pointer;
  user-select: none;
  border-radius: 10px;
  box-shadow: rgba(46, 46, 46, 0.2) 0px 8px 24px;
  color: rgb(255, 255, 255);
}

#favorite {
  display: none;
}

#favorite + .containers .action {
  position: relative;
  overflow: hidden;
  display: grid;
}

#favorite + .containers .action span {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 1;
  grid-row-end: 1;
  transition: all 0.5s;
}

#favorite + .containers .action span.option-1 {
  transform: translate(0px, 0%);
  opacity: 1;
}

#favorite + .containers .action span.option-2 {
  transform: translate(0px, 100%);
  opacity: 0;
}

.like-container {
    background-color: rgb(36, 36, 36);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 15px 10px 10px;
    cursor: pointer;
    user-select: none;
    border-radius: 10px;
    box-shadow: rgba(46, 46, 46, 0.2) 0px 8px 24px;
    color: rgb(255, 255, 255);
}
  
#like {
    display: none;
}
  
#like + .like-container .text-action {
    position: relative;
    overflow: hidden;
    display: grid;
}
  
#like + .like-container .text-action span {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
    transition: all 0.5s;
}
  
#like + .like-container .text-action span.state-1 {
    transform: translate(0px, 0%);
    opacity: 1;
  }
  
#like + .like-container .text-action span.state-2 {
    transform: translate(0px, 100%);
    opacity: 0;
}

.tattos-container {
    background-color: rgb(36, 36, 36);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 15px 10px 10px;
    cursor: pointer;
    user-select: none;
    border-radius: 10px;
    box-shadow: rgba(46, 46, 46, 0.2) 0px 8px 24px;
    color: rgb(255, 255, 255);
}
  
#tattos {
    display: none;
}
  
#tattos + .tattos-container .tattos-action {
    position: relative;
    overflow: hidden;
    display: grid;
}
  
#tattos + .tattos-container .tattos-action span {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
    transition: all 0.5s;
}
  
#tattos + .tattos-container .tattos-action span.tattos-1 {
    transform: translate(0px, 0%);
    opacity: 1;
  }
  
#tattos + .tattos-container .tattos-action span.tattos-2 {
    transform: translate(0px, 100%);
    opacity: 0;
}

.partys-container {
    background-color: rgb(36, 36, 36);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 15px 10px 10px;
    cursor: pointer;
    user-select: none;
    border-radius: 10px;
    box-shadow: rgba(46, 46, 46, 0.2) 0px 8px 24px;
    color: rgb(255, 255, 255);
}
  
#partys {
    display: none;
}
  
#partys + .partys-container .partys-action {
    position: relative;
    overflow: hidden;
    display: grid;
}
  
#partys + .partys-container .partys-action span {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
    transition: all 0.5s;
}

#partys + .partys-container .partys-action span.partys-1 {
    transform: translate(0px, 0%);
    opacity: 1;
  }

#partys + .partys-container .partys-action span.partys-2 {
    transform: translate(0px, 100%);
    opacity: 0;
}

.slider-container {
    position: relative;
    width: 90%;
    max-width: 600px;
}

.slider-container .age{
    font-family: 'Beatrice Display Trial', sans-serif; /* Fonte personalizada */
    font-size: 20px; /* Tamanho maior para a logo */
    font-weight: 600;
    color: #CC88F9; /* Cor rosa (HotPink) */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Sombra no texto */
    text-decoration: none;
    font-style: italic; 
}

.slider-container #ageRange{
    font-family: 'Beatrice Display Trial', sans-serif; /* Fonte personalizada */
    font-size: 20px; /* Tamanho maior para a logo */
    font-weight: 600;
    color: #CC88F9; /* Cor rosa (HotPink) */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Sombra no texto */
    text-decoration: none;
    font-style: italic; 
}

/* barra do slider */
.slider-bar {
    width: 100%;
    height: 10px;
    background: #CC88F9;
    position: relative;
    border-radius: 5px;
}

/* controles do slider */
.slider-thumb {
    position: absolute;
    bottom: -10px; /* ajuste para posicionar acima da barra */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: translateX(-50%);
}

.slider-thumb i {
    color: #ff0000;
    font-size: 25px;
    filter: drop-shadow(5px 1px 2px rgba(255, 255, 255, 0.3)); /* Sombra mais suave */
}

.ss-list {
  max-height: 200px !important;
  overflow-y: auto !important;
}

.ss-search {
  display: none !important;
}

.ss-value {
  background-color: #CC88F9 !important; /* sua cor desejada */
  color: white !important; /* pra garantir que o texto fique visível */
  border-radius: 4px;      /* opcional, deixa com cantos arredondados */
  padding: 3px 8px;        /* ajusta o espaçamento interno */
  display: flex;
  align-items: center;
  gap: 5px;                /* espaço entre texto e botão de fechar */
}

/* Muda a cor do "x" de fechar também */
.ss-value-delete svg path {
  stroke: white !important; /* cor branca pro "x" */
}

.ss-list .ss-option:hover {
  background-color: #CC88F9 !important; /* cor desejada no hover */
  color: white !important;              /* texto fica branco no hover */
  cursor: pointer;                      /* muda o cursor para indicar clicável */
}

.ss-main:focus,
.ss-main.ss-open-below {
  border-color: #CC88F9 !important;
  box-shadow: 0 0 5px #CC88F9; /* opcional, efeito glow */
  outline: none;
}

.ss-option.ss-selected {
  background-color: #CC88F9 !important; /* verde ou a cor que quiser */
  color: white !important; /* para garantir que o texto fique legível */
}


/* START TINDER CARDS AND SUGGESTIONS CARDS */
.ml15 {
    text-transform: uppercase;
    text-align: center; 
    font-family: 'Beatrice Display Trial', sans-serif; /* fonte personalizada */
    font-size: 50px; /* tamanho maior para a logo */
    font-weight: 600;
    color: #CC88F9; /* cor rosa */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* sombra no texto */
    text-decoration: none;
    font-style: italic;
    margin-top: 10px;
}
  
.ml15 .word {
    display: inline-block;
    line-height: 1em;
}

/* container do carrossel centralizado */
#tinder-cards-container {
    width: 100%;
    max-width: 400px;
    height: 500px;
    position: relative;
    margin: 0 auto; /* centraliza horizontalmente */
    display: flex;
    justify-content: center;
    align-items: center; /* centraliza verticalmente */
}

/* estilização dos cards */
.tinder-card {
    position: absolute;
    width: 300px;
    height: 400px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin-bottom: 125px;
}

/* cards removidos */
.tinder-card.out-of-screen {
    opacity: 0;
    pointer-events: none;
}

/* sobreposição progressiva */
.tinder-card:nth-child(1) {
    z-index: 3;
}
.tinder-card:nth-child(2) {
    z-index: 2;
    transform: translateY(20px) scale(0.95); /* leve deslocamento para baixo e escala menor */
}
.tinder-card:nth-child(3) {
    z-index: 1;
    transform: translateY(40px) scale(0.9); /* leve deslocamento para baixo e escala menor */
}

/* imagem no canto inferior direito */
.text-overlay .bottom-right-images {
    position: absolute;
    bottom: 10px; /* distância do fundo */
    right: 10px;  /* distância da direita */
    width: 30px;  /* largura da imagem */
    height: 30px; /* altura da imagem */
    object-fit: cover; /* para garantir que a imagem mantenha a proporção */
}

#hand-swipe {
    position: absolute;
    width: 50px; /* ajuste o tamanho conforme necessário */
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0.7; /* para deixar um pouco transparente */
    animation: swipe-animation 1.5s ease-in-out infinite; /* animação contínua */
}

/* animação de swipe */
@keyframes swipe-animation {
    0% {
        transform: translate(-50%, -50%) translateX(0);
    }
    50% {
        transform: translate(-50%, -50%) translateX(100px) rotate(10deg); /* Move para a direita */
    }
    100% {
        transform: translate(-50%, -50%) translateX(0); /* Volta ao início */
    }
}

.arrow-left,
.arrow-right {
    position: absolute;
    width: 40px; /* ajuste conforme o tamanho desejado das setas */
    height: 40px; /* ajuste conforme o tamanho desejado das setas */
    cursor: pointer;
}

.arrow-left {
    left: 120px; /* ajuste para aproximar/afastar a seta do card */
    top: 95%;
    transform: translateY(-50%);
    z-index: 1000;
    filter: drop-shadow(5px 1px 2px rgba(255, 255, 255, 0.3));
}

.arrow-left:hover {
    transform: translateY(-50%) scale(1.2); /* aumenta o tamanho */
    filter: drop-shadow(7px 2px 5px rgba(255, 255, 255, 0.5)); /* realça a sombra */
}

.arrow-right {
    right: 120px; /* ajuste para aproximar/afastar a seta do card */
    top: 95%;
    transform: translateY(-50%);
    z-index: 1000;
    filter: drop-shadow(5px 1px 2px rgba(255, 255, 255, 0.3));
}

.arrow-right:hover {
    transform: translateY(-50%) scale(1.2); /* aumenta o tamanho */
    filter: drop-shadow(7px 2px 5px rgba(255, 255, 255, 0.5)); /* realça a sombra */
}

/* esconde o card quando está fora de tela */
.tinder-card.out-of-screen {
    opacity: 0;
    pointer-events: none;
}

.toggle-image {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toggle-image:hover {
    transform: scale(1.1) rotate(5deg); /* aumenta o tamanho e gira a imagem */
    opacity: 0.9; /* reduz ligeiramente a opacidade */
}

/* Contêiner principal */
.new-slider-container {
    width: 100%;
    max-width: 1325px;
    margin: 0 auto;
    overflow: hidden;
}

/* Slider */
.new-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    cursor: grab;
    align-items: flex-start;
}

/* Remove a barra de rolagem */
.new-slider::-webkit-scrollbar {
    display: none;
}

/* Wrapper do card + texto */
.new-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(var(--position)); /* Move cada wrapper */
}

/* Adicionando altura alternada para criar efeito de desalinhamento */
.new-card-wrapper:nth-child(odd) {
    --position: -15px; /* Sobe um pouco */
}
.new-card-wrapper:nth-child(even) {
    --position: 15px; /* Desce um pouco */
}

/* Cards individuais (agora são círculos) */
.new-card {
    position: relative;
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Imagem dentro do card */
.new-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Efeito de hover */
.new-card:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Texto abaixo do card */
.text-overlays {
    width: 100%;
    text-align: center;
    margin-top: 8px; /* Espaço entre o card e o nome */
    font-size: 16px;
    font-weight: bold;
    color: rgb(0, 0, 0); /* Cor padrão */
}

/* END TINDER CARDS AND SUGGESTIONS CARDS */

.partners-section {
    background: transparent; /* ou use a cor do seu site */
    padding: 2rem 0;
}

.partners-title {
    text-transform: uppercase;
    text-align: center; 
    margin-top: -120px;
    font-family: 'Beatrice Display Trial', sans-serif; /* fonte personalizada */
    font-size: 50px; /* tamanho maior para a logo */
    font-weight: 600;
    color: #CC88F9; /* cor rosa */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* sombra no texto */
    text-decoration: none;
    font-style: italic;
    margin-top: 10px;
}

.partners-logos {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: .5rem;
}

.partners-logos::-webkit-scrollbar {
    display: none;
}
  
.partners-logos a {
    flex: 0 0 auto;
}
  
.partners-logos img {
    display: block;
    height: 150px;       /* ajuste conforme necessário */
    object-fit: contain;
    border-radius: 4px; /* cantos levemente arredondados */
    box-shadow: 0 2px 4px rgba(0,0,0, .3);
    transition: transform .2s;
}
  
.partners-logos img:hover {
    transform: scale(1.05);
}
  
/* START BLOGS CARDS */
.blogs-section {
    color: #fff;
    position: relative;
}

.blogs-title {
    font-family: 'Beatrice Display Trial', sans-serif; /* fonte personalizada */
    font-size: 50px; /* tamanho maior para a logo */
    font-weight: 600;
    color: #CC88F9; /* cor rosa */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* sombra no texto */
    text-decoration: none;
    font-style: italic;
}

.blog-card {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.card-image {
    background-size: cover;
    background-position: center;
    height: 200px;
    border-radius: 8px;
}

.card-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1rem;
}

.card-text {
    font-size: 0.9rem;
    color: #ffffff;
}

.see-more-container {
    text-align: center;
}

.see-more-link {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.see-more-link:hover {
    color: #ffffff; /* altere a cor do texto para o fundo durante o hover */
}
/* END BLOGS CARDS */

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
}

.row {
    flex-wrap: wrap; /* Impede sobreposição */
}

/* Header */
h2.text-pink {
    font-family: 'Beatrice Display Trial', sans-serif; /* Fonte personalizada */
    font-size: 40px; /* Tamanho maior para a logo */
    font-weight: 600;
    color: #CC88F9; /* Cor rosa (HotPink) */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Sombra no texto */
    text-decoration: none;
    font-style: italic;
}

p.results {
    font-family: 'Beatrice Display Trial', sans-serif; /* Fonte personalizada */
    font-size: 20px; /* Tamanho maior para a logo */
    font-weight: 600;
    color: #CC88F9; /* Cor rosa (HotPink) */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Sombra no texto */
    text-decoration: none;
    font-style: italic;
}

/* Card container */
.card-custom {
    background-color: #2a2a2a; /* Dark background */
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    width: 215px;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Badge Banner Styling */
.badge-banner {
    text-align: center; /* Centraliza o texto dentro do badge */
    font-size: 0.9rem; /* Ajusta o tamanho do texto */
    padding: 5px 10px; /* Adiciona espaçamento interno */
    display: inline-block; /* Garante que o badge seja compacto */
    width: 100%;
    background-color: #CC88F9;
}

/* Card Image */
.card-images {
    height: 250px; /* Aumentando a altura da imagem */
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-info-overlay {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.card-title-with-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.verified-icon i {
    color: #3498db;
    font-size: 14px;
}

.card-location {
    font-size: 12px;
    color: #ddd;
}

.card-description {
    font-size: 11px;
    color: #eee;
    text-align: center;
}

.card-icons {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

/* Mobile Styles */
@media (max-width: 576px) {
    .card-custom {
        width: 180px;
        margin-left: -10px;
    }
    .card-images {
        height: 225px; /* Reduz altura para dispositivos menores */
    }
    .badge-banner {
        font-size: 0.7rem;
    }
    .card-info-overlay .card-title{
        font-size: 1rem;
    }
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: #fff;       /* ou #222 no dark mode */
    border-top: 1px solid #ddd;   /* leve linha divisória */
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}
  
.mobile-bottom-nav .nav-item {
    color: #555;
    font-size: 24px;
    text-decoration: none;
}
  
.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: #000;   /* destaque no item ativo/hover */
  }

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #CC88F9; /* Cor personalizada */
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 0.8s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

  