/* Importar a fonte Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Estilos gerais */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #fff;
  color: #262626;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  font-size: 14px; /* Tamanho base de fonte reduzido */
  -webkit-tap-highlight-color: transparent; /* Remove highlight ao tocar */
  -webkit-touch-callout: none; /* Desativa menu de contexto ao segurar */
  user-select: none; /* Desativa seleção de texto */
}

body {
  background-color: #fafafa !important; /* Força o fundo a ser claro */
}

.content-wrapper {
  position: relative;
  width: calc(100% - 20px); /* Reduzir a largura para adicionar 10px em cada lado */
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 0 10px; /* Adicionar padding horizontal */
  box-sizing: border-box;
}

/* Esconder scrollbar mas manter funcionalidade */
::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: manipulation;
  box-sizing: border-box; /* Garantir que o padding seja incluído na largura */
}

/* Ajustando a visualização para dispositivos móveis */
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
  .content-wrapper {
    width: 100%;
  }
}

/* Desabilitar site em desktop - Mobile only */
@media (min-width: 768px) {
  .mobile-only-notice {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #262626;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .mobile-only-notice h2 {
    color: #ff007f;
    margin-bottom: 20px;
  }
  .mobile-only-notice p {
    margin-bottom: 20px;
    max-width: 600px;
    line-height: 1.6;
  }
  .mobile-only-notice img {
    width: 200px;
    margin-bottom: 30px;
  }
  .content-wrapper {
    display: none;
  }
}

.mobile-only-notice {
  display: none;
}

/* Header estilo Instagram */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 25px; /* Aumentado para 25px (15px original + 10px adicional em cada lado) */
  border-bottom: 1px solid #dbdbdb;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  height: 50px;
}

.logo {
  font-size: 22px;
  color: #ff1744;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
  text-transform: none;
}

.logo-bold {
  font-weight: 700;
}

/* Design refinado do botão de saída */
.exit-button {
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #666, #444);
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  font-size: 12px;
}

.exit-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.exit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.exit-button:hover::before {
  top: 150%;
}

.exit-icon {
  margin-right: 6px;
}

.exit-icon svg {
  width: 14px;
  height: 14px;
  color: white;
}

.exit-text {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: white;
}

/* Design refinado da carteira */
.wallet {
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #ff1744, #ff5252);
  padding: 8px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.wallet::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.wallet:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 127, 0.3);
}

.wallet:hover::before {
  top: 150%;
}

.wallet-icon {
  margin-right: 8px;
  transform: scale(1.2);
}

.wallet-icon svg {
  width: 18px;
  height: 18px;
  color: white;
  fill: #FFD700;
}

.coin-count {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: white;
}

/* Stories estilo Instagram com texto explicativo */
.stories-container {
  position: relative;
  padding: 10px 0 0px;
  margin-top: 25px;
  border-bottom: 1px solid #dbdbdb;
  background-color: #fff;
  height: auto;
  width: 100%;
  overflow-x: hidden;
}

.stories-wrapper {
  display: flex;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-behavior: smooth;
  padding: 5px 10px 8px;
  white-space: nowrap;
  gap: 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x !important;
  flex-wrap: nowrap !important;
  width: 100%;
  box-sizing: border-box;
}

.story-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
  width: 70px;
  min-width: 70px;
  max-width: 70px;
  flex-shrink: 0;
  padding-bottom: 5px;
}

/* Remover scrollbars mas manter funcionalidade de rolagem */
.stories-wrapper::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Forçar exibição touch para dispositivos móveis */
@media (max-width: 600px) {
  .stories-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x !important;
    flex-wrap: nowrap !important;
  }
}

.story-item:hover {
  transform: scale(1.05);
}

/* Design dos stories conforme a imagem */
.story-avatar-container {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 6px;
  border: 3px solid #ff1744;
  padding: 2px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: white;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 23, 68, 0.2);
}

.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  pointer-events: none; /* Impede interações diretas com imagens */
  user-drag: none; /* Impede arrastar imagem */
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.story-avatar:hover {
  transform: scale(1.05);
}

.story-avatar.visible {
  filter: blur(0);
}

/* Remover os estilos de informação nos stories miniatura */
.story-gradient-overlay,
.story-info,
.story-user-details,
.story-user-name,
.story-user-age,
.story-user-location,
.story-rating {
  display: none;
}

/* Adicionar estilos para informações adicionais no visualizador de stories */
.story-additional-info {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 11px;
}

.story-header .story-user-age {
  font-size: 11px;
  color: #ff1744;
  margin-top: 2px;
  display: block;
}

.story-header .story-user-location {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.story-header .story-rating {
  font-size: 10px;
  color: #FFD700;
  margin-top: 2px;
}

.story-header .story-user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.story-username {
  font-size: 10px;
  color: #262626;
  width: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin-top: 3px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

/* Remover o texto informativo */
.stories-info {
  display: none;
}

/* Feed estilo Instagram - design melhorado */
.feed.instagram-style {
  padding-top: 10px;
  padding-bottom: 70px;
  padding-left: 10px;
  padding-right: 10px;
  overflow-y: auto;
  height: calc(100% - 120px);
  margin-bottom: 10px;
  box-sizing: border-box;
}

/* Post aprimorado */
.post.instagram-style {
  margin-bottom: 25px;
  background-color: #fff;
  position: relative;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
  height: auto;
  min-height: auto;
  max-height: none;
  overflow: visible;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  box-sizing: border-box;
}

/* Cabeçalho do post com posicionamento ajustado */
.post-header {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  margin-bottom: 5px;
}

.post-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
  padding: 2px;
  object-fit: cover;
}

.post-user-info {
  flex: 1;
}

.post-username-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.post-username {
  font-weight: 600;
  font-size: 13px;
  color: #262626;
  display: flex;
  align-items: center;
}

.post-age {
  font-size: 12px;
  font-weight: 500;
  color: #ff1744;
  background-color: rgba(255, 23, 68, 0.1);
  padding: 2px 6px;
  border-radius: 10px;
  transform: translateY(2px);
}

.post-user-meta {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
}

.post-user-location {
  font-size: 11px;
  color: #8e8e8e;
  margin-right: 10px;
}

.post-online-time {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #4CAF50;
  font-weight: 500;
}

.online-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #4CAF50;
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse 2s infinite;
}

.rating-stars {
  color: #FFD700;
  font-size: 12px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.rating-stars span {
  color: #666;
  font-size: 11px;
  margin-left: 5px;
}

.post-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin: 5px 0 0;
}

.post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transition: filter 0.5s ease;
  pointer-events: none; /* Impede interações diretas com imagens */
  user-drag: none; /* Impede arrastar imagem */
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.post-image.visible {
  filter: blur(0);
}

/* Botão de visualização mais atraente */
.view-image-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(45deg, #ff007f, #ff5c5c);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  font-size: 13px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 0, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 127, 0);
  }
}

.view-image-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 0, 127, 0.5);
}

.view-image-button.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.3s ease;
}

/* Ações de post mais interativas */
.post-actions {
  display: flex;
  padding: 12px 15px;
}

.post-action {
  background: none;
  border: none;
  color: #262626;
  margin-right: 18px;
  padding: 5px;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
  border-radius: 50%;
}

.post-action:hover {
  transform: scale(1.15);
  color: #ff007f;
  background-color: rgba(255, 0, 127, 0.05);
}

.post-action svg {
  width: 24px;
  height: 24px;
}

.like-button.active svg {
  fill: #ff007f;
  color: #ff007f;
}

.post-likes, 
.post-caption, 
.post-time {
  text-align: center;
}

.post-likes {
  padding: 0 15px;
  font-weight: bold;
  font-size: 13px;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #262626;
}

.post-caption {
  padding: 0 15px;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #262626;
}

.post-comments {
  display: none;
}

.post-time {
  padding: 0 15px;
  font-size: 9px;
  color: #8e8e8e;
  text-transform: uppercase;
}

/* Botões de ação adicionais */
.post-additional-actions {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px 10px;
  margin-top: 5px;
}

/* Estilo para os botões em layout vertical */
.post-vertical-actions {
  flex-direction: column;
  gap: 10px;
  padding: 0 5px;
}

.post-vertical-actions .action-button {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Botão principal (comprar conteúdos) - maior */
.action-button.button-primary {
  max-width: 200px;
  margin: 0 auto;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(45deg, #ff007f, #ff5c5c);
  box-shadow: 0 4px 12px rgba(255, 0, 127, 0.3);
  letter-spacing: 0.3px;
  border-radius: 25px;
}

.action-button.button-primary:hover {
  background: linear-gradient(45deg, #ff1a8d, #ff7070);
  box-shadow: 0 6px 15px rgba(255, 0, 127, 0.4);
}

/* Botão secundário (chamada ao vivo) - menor */
.action-button.button-secondary {
  flex-grow: 2;
  padding: 12px 15px;
  font-size: 14px;
  background: linear-gradient(135deg, #ff1744, #ff5252);
  box-shadow: 0 4px 12px rgba(255, 23, 68, 0.25);
}

.action-button.button-secondary:hover {
  background: linear-gradient(135deg, #ff2f59, #ff6b6b);
  box-shadow: 0 6px 15px rgba(255, 23, 68, 0.35);
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 600;
  background: linear-gradient(45deg, #ff1744, #ff5252);
  position: relative;
  overflow: hidden;
}

.action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 23, 68, 0.4);
}

.action-button:active {
  transform: translateY(-1px);
}

.action-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.action-button:hover::after {
  opacity: 1;
}

.action-button svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

/* Melhorias no visualizador de stories */
.story-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9000;
  display: flex;
  flex-direction: column;
}

.story-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px;
  z-index: 2005;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.story-user-info {
  display: none;
}

.close-story {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.close-story:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.story-progress-container {
  display: flex;
  gap: 4px;
  padding: 0 15px;
}

.story-progress {
  height: 3px;
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  overflow: hidden;
}

.story-progress::before {
  content: "";
  display: block;
  height: 100%;
  width: 0;
  background-color: white;
  transition: width 5s linear;
}

.story-progress.active::before {
  width: 100%;
}

.story-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: auto; /* Reativar pointer events apenas para a imagem do story */
}

/* Sombreado e informações na parte inferior do story */
.story-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.story-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.story-footer-info {
  position: relative;
  padding: 20px 15px 10px;
  color: white;
  z-index: 11;
  pointer-events: auto; /* Garantir que os cliques funcionem */
}

.story-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.story-footer-username {
  font-size: 16px;
  font-weight: bold;
}

.story-footer-age {
  font-size: 14px;
  font-weight: 500;
  color: #ff1744;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: 10px;
}

.story-footer-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.story-footer-rating {
  font-size: 14px;
  color: #FFD700;
  margin-bottom: 15px;
}

/* Botões de ação nos stories */
.story-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  padding: 0 15px 20px;
  position: relative;
  z-index: 12;
  pointer-events: auto; /* Garantir que os cliques funcionem */
}

.story-action-button {
  width: auto;
  min-width: 200px;
  height: 45px;
  padding: 0 20px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(45deg, #ff007f, #ff5c5c);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 0, 127, 0.25);
  margin: 0 auto;
  animation: pulse 2s infinite;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  pointer-events: auto; /* Garantir que os cliques funcionem */
  z-index: 12; /* Garantir que fique acima de outros elementos */
  position: relative; /* Necessário para o z-index funcionar */
}

.story-action-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  pointer-events: none; /* Impedir que o SVG interfira no clique do botão */
}

.story-action-button span {
  pointer-events: none; /* Impedir que o texto interfira no clique do botão */
}

.story-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 0, 127, 0.35);
}

.story-action-button.primary,
.story-action-button.secondary {
  background: linear-gradient(45deg, #ff007f, #ff5c5c);
}

/* Remover os estilos antigos da informação adicional no header */
.story-additional-info,
.story-header .story-user-age,
.story-header .story-user-location,
.story-header .story-rating {
  display: none;
}

/* Estilização para popup de mensagem e compra de moedas */
.popup, .message-popup, .coins-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9900;
  animation: fadeIn 0.3s ease;
  transition: all 0.3s ease;
}

.message-popup.hidden {
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-content, .message-content, .coins-content {
  background-color: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  max-width: 85%;
  width: 300px;
  text-align: center;
  animation: scaleIn 0.3s ease-out;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-content button, .message-content button, .coin-package button {
  margin-top: 15px;
  padding: 12px 30px;
  background: linear-gradient(45deg, #ff007f, #ff5c5c);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 100%;
}

.popup-content button:hover, .message-content button:hover, .coin-package button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 127, 0.4);
}

.message-content h3 {
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 10px;
}

.message-content p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #ff007f;
  margin: 15px 0;
}

.payment-options {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.payment-option {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #262626;
}

/* Estilos específicos para popup de compra de moedas */
.coins-header {
  margin-bottom: 20px;
}

.coins-header h2 {
  color: #ff007f;
  margin-bottom: 10px;
  font-size: 24px;
}

.coins-header p {
  opacity: 0.7;
}

.coin-packages {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.coin-package {
  background: linear-gradient(to right, rgba(255, 0, 127, 0.05), rgba(255, 92, 92, 0.05));
  border: 1px solid rgba(255, 0, 127, 0.2);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.coin-package:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 127, 0.2);
}

.coin-package.best-value::before {
  content: "MELHOR VALOR";
  position: absolute;
  top: 10px;
  right: -30px;
  background: #ff007f;
  color: white;
  font-size: 10px;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: bold;
}

.package-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #262626;
}

.coin-icon {
  color: #FFD700;
}

.package-price {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: #ff007f;
}

.package-description {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 10px;
  color: #262626;
}

/* Notificação de moeda aprimorada */
#coinNotification {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #262626;
  padding: 12px 25px;
  border-radius: 50px;
  z-index: 9999;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(255, 0, 127, 0.3);
  text-align: center;
  display: none;
  animation: slideDown 0.3s ease, fadeOut 0.3s ease 1.7s forwards;
}

@keyframes slideDown {
  from { transform: translate(-50%, -20px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Ícone de verificado */
.verified-badge {
  display: inline-flex;
  margin-left: 4px;
  color: #0095f6;
  vertical-align: middle;
}

/* Estatística de visualizações do post */
.post-views {
  text-align: center;
  font-size: 13px;
  color: #8e8e8e;
  padding: 0 15px;
  margin: 5px 0;
  font-style: italic;
}

.payment-info {
  font-size: 14px;
  color: #ff1744;
  margin: 8px 0 15px;
  font-weight: 500;
  text-align: center;
}

.pix-button {
  background: linear-gradient(45deg, #32bcad, #218a87) !important;
  margin-top: 8px !important;
}

.pix-key-container {
  margin: 15px 0;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  border: 1px dashed #ccc;
  word-break: break-all;
}

/* Estilos para o modal de chamada ao vivo */
.live-call-content {
  max-width: 320px;
  padding: 15px;
  background: linear-gradient(180deg, #111111, #333333);
  color: white;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.live-call-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(45deg, #ff0000, #ff5252);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
  animation: pulse 1.5s infinite;
  z-index: 2001;
  display: block;
  visibility: visible;
  opacity: 1;
}

.caller-video {
  position: relative;
  width: 100%;
  margin: 10px 0 20px;
  text-align: center;
}

.caller-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ff1744;
  object-fit: cover;
  animation: pulse 2s infinite;
}

.caller-name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.call-status {
  font-size: 14px;
  color: #aaa;
  margin-top: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.live-call-details {
  margin: 12px 0;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.live-call-item {
  margin-bottom: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}

.live-call-item:last-child {
  margin-bottom: 0;
}

.live-call-item svg {
  margin-right: 8px;
  color: #ff1744;
}

.live-call-price {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

.price-option {
  text-align: center;
  flex: 1;
}

.price-label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 5px;
}

.price-value {
  font-weight: bold;
  font-size: 18px;
  color: #ff1744;
}

.live-call-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
  background-color: rgba(255, 23, 68, 0.2);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.live-call-timer span {
  margin-right: 8px;
  color: #aaa;
}

.countdown {
  font-weight: bold;
  font-size: 16px;
  color: #ff1744;
}

.live-call-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 15px;
  justify-content: space-between;
}

.live-call-buttons button {
  flex: 1;
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.coins-button {
  background: linear-gradient(45deg, #d4af37, #f1c40f) !important;
  color: #333 !important;
  font-weight: bold;
}

.pix-button {
  background: linear-gradient(45deg, #32bcad, #218a87) !important;
  margin-top: 8px !important;
}

.secondary-button {
  background-color: #444 !important;
  color: #fff;
  border: none;
  margin-top: 10px !important;
  width: 100%;
  padding: 12px 0;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2000;
}

.secondary-button:hover {
  background-color: #333 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Estilos para as informações de detalhes do post */
.post-info-details {
  background-color: #f8f8f8;
  margin: 0 5px 10px;
  border-radius: 0 0 12px 12px;
  padding: 12px 15px;
  font-size: 13px;
}

.post-photo-text {
  font-style: italic;
  color: #444;
  line-height: 1.4;
  font-size: 13px;
  border-left: 2px solid #ff1744;
  padding-left: 8px;
  text-align: center;
}

/* Estilos para a tela de login - ajustes completos */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #fff, #f9f9f9);
  z-index: 11000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
}

.login-container {
  width: 85%;
  max-width: 340px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px 15px;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

.login-header {
  margin-bottom: 18px;
}

.login-header .logo {
  font-size: 24px;
  margin-bottom: 6px;
  display: inline-block;
}

.login-header p {
  color: #666;
  font-size: 14px;
  margin: 5px 0 0;
}

.input-group {
  margin-bottom: 15px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.input-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  text-align: left;
}

.input-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: border 0.3s ease;
  box-sizing: border-box;
}

.input-hint {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #888;
  font-style: italic;
  text-align: left;
}

#loginForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5px;
  box-sizing: border-box;
}

.login-terms {
  font-size: 11px;
  color: #888;
  margin: 5px 0 15px;
  line-height: 1.3;
  text-align: center;
  padding: 0 5px;
  width: 100%;
  box-sizing: border-box;
}

.login-terms a {
  color: #ff1744;
  text-decoration: none;
}

.login-button {
  width: 90%;
  background: linear-gradient(45deg, #ff1744, #ff5252);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 15px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
  margin: 0 auto;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 23, 68, 0.4);
}

/* Estilos para o card promocional */
.promo-card {
  margin: 15px 10px 25px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #eee;
  padding-bottom: 15px;
}

.promo-header {
  padding: 15px;
  text-align: center;
}

.promo-header h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
  color: #333;
}

.promo-header p {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.4;
}

.telegram-promo {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #f7f9fb;
  margin: 0 15px 15px;
  border-radius: 12px;
}

.telegram-icon {
  margin-right: 15px;
  flex-shrink: 0;
}

.telegram-info {
  flex: 1;
}

.telegram-info p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
}

.promo-button.telegram-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 30px);
  margin: 5px auto 10px;
  padding: 12px 0;
  background-color: #0088cc;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.promo-button.telegram-button:hover {
  background-color: #0077b5;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 136, 204, 0.3);
}

/* Estilos para popups específicos */
.content-packages-container {
  max-width: 320px;
  padding: 15px;
}

.content-packages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}

.content-package {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-package:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-package.premium {
  background: linear-gradient(to right, #f8f8f8, #fff5f7);
  border-color: #ffccd5;
}

.content-package.vip {
  background: linear-gradient(to right, #f8f8f8, #fff8e1);
  border-color: #ffe082;
}

.package-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: #ff1744;
}

.package-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.package-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.package-item svg {
  color: #ff1744;
}

.content-package .package-price {
  font-weight: 700;
  font-size: 16px;
  color: #262626;
  margin-bottom: 8px;
}

.content-package button {
  width: 100%;
  background: linear-gradient(45deg, #ff1744, #ff5252);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 8px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.content-package button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 23, 68, 0.3);
}

/* Estilos para popup de chamada */
.live-call-options-content {
  max-width: 320px;
  padding: 15px;
}

.live-call-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}

.live-call-option {
  padding: 12px;
}

.recommended {
  border-color: #ff1744;
  background: linear-gradient(to right, #f8f8f8, #fff5f7);
}

.recommended-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background-color: #ff1744;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
}

.option-icon {
  margin-bottom: 10px;
  color: #ff1744;
}

.option-details {
  margin-bottom: 12px;
}

.option-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
}

.option-description {
  font-size: 12px;
}

.option-price {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.live-call-option button {
  width: 100%;
  background: linear-gradient(45deg, #ff1744, #ff5252);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 8px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.live-call-option button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 23, 68, 0.3);
}

.close-button {
  margin-top: 15px;
  background-color: #f0f0f0 !important;
  color: #666 !important;
}

/* Modificação para forçar a exibição do modal de chamada */
#liveCallModal {
  display: none !important;
}

#liveCallModal.show-modal {
  display: flex !important;
}

/* Estilos para modais dentro dos stories */
.story-inner-modal {
  position: absolute !important;
  z-index: 3000 !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.story-inner-modal .message-content {
  background-color: rgba(255, 255, 255, 0.95);
  width: 85%;
  max-width: 320px;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  max-height: 80vh;
  overflow-y: auto;
}

.story-viewer .story-inner-modal .close-button {
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}

.story-viewer .story-inner-modal .close-button:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* Garantir que o contador de progresso continue visível */
.story-inner-modal ~ .story-progress-container {
  z-index: 3001;
}

/* Ajustes para o botão de fechar o story */
.story-inner-modal ~ .story-header .close-story {
  z-index: 3001;
}

/* Estilos para o modal de chat */
.chat-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  overflow: hidden;
}

.chat-modal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: #f8f9fa;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease-out;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: linear-gradient(45deg, #ff007f, #ff5c5c);
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.chat-user-info {
  display: flex;
  align-items: center;
}

.chat-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid white;
}

.chat-user-details {
  display: flex;
  flex-direction: column;
}

.chat-username {
  font-weight: bold;
  font-size: 16px;
}

.chat-status {
  font-size: 12px;
  opacity: 0.8;
}

.chat-close-button {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
}

.chat-messages {
  flex: 1;
  padding: 15px 10px;
  overflow-y: auto;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
}

.message-date {
  text-align: center;
  color: #888;
  font-size: 12px;
  margin: 15px 0;
  position: relative;
}

.message-date:before,
.message-date:after {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background: #ddd;
  position: absolute;
  top: 50%;
}

.message-date:before {
  left: 5%;
}

.message-date:after {
  right: 5%;
}

.message-bubble {
  max-width: 80%;
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 18px;
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
}

.model-message {
  background-color: white;
  border-top-left-radius: 5px;
  align-self: flex-start;
  margin-right: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-left: 3px solid #ff007f;
}

.user-message {
  background: linear-gradient(45deg, #ff007f, #ff5c5c);
  color: white;
  border-top-right-radius: 5px;
  align-self: flex-end;
  margin-left: auto;
}

.message-text {
  font-size: 14px;
  line-height: 1.4;
}

.message-time {
  font-size: 10px;
  color: #888;
  margin-top: 5px;
  text-align: right;
}

.message-audio {
  min-width: 200px;
}

.audio-player {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 8px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.play-button {
  background: linear-gradient(45deg, #ff007f, #ff5c5c);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.audio-waveform {
  display: flex;
  align-items: center;
  flex: 1;
  height: 20px;
  gap: 3px;
}

.waveform-bar {
  flex: 1;
  height: 100%;
  background: linear-gradient(to bottom, #ddd 0%, #aaa 100%);
  border-radius: 2px;
}

.waveform-bar:nth-child(odd) {
  height: 60%;
}

.waveform-bar:nth-child(even) {
  height: 80%;
}

.audio-duration {
  font-size: 12px;
  color: #888;
  margin-left: 10px;
}

.chat-package-options {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 6px;
  background-color: #f0f0f0;
  border-top: 1px solid #e0e0e0;
  max-height: 35vh;
  overflow-y: auto;
}

/* Nova linha para os pacotes superiores */
.package-options-row {
  display: flex;
  gap: 6px;
  width: 100%;
}

/* Estilo para opções pequenas (lado a lado) */
.small-option {
  flex: 1;
  min-width: 0;
}

.small-option .package-description {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 30px;
}

/* Estilo para opção de largura total */
.full-width-option {
  width: 100%;
  padding: 12px;
  margin-top: 4px;
}

.full-width-option .package-description {
  padding-top: 2px;
  max-height: none;
  line-height: 1.4;
}

.package-option {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
  overflow: visible;
  margin-top: 8px;
  min-height: auto;
}

.package-option:hover {
  background-color: #f8f8f8;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-color: #ff007f;
}

.package-option.best-option {
  border: 2px solid #ff1744;
  background: linear-gradient(to right, #f8f8f8, #fff8e1);
  position: relative;
  overflow: visible;
  z-index: 1;
}

.best-tag {
  position: absolute;
  top: -8px;
  right: 8px;
  background-color: #ff1744;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  z-index: 2;
}

.package-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding-right: 10px;
}

.package-name {
  font-weight: bold;
  color: #333;
  margin-bottom: 2px;
  font-size: 13px;
}

.package-description {
  font-size: 11px;
  color: #666;
  text-align: left;
  line-height: 1.3;
}

.package-price {
  color: #ff007f;
  font-weight: bold;
  font-size: 14px;
  background: rgba(255, 0, 127, 0.08);
  padding: 3px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

/* Melhorar o visual da área de entrada */
.chat-input-area {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background-color: white;
  border-top: 1px solid #e0e0e0;
}

#chatInput {
  flex: 1;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) inset;
}

#chatInput:focus {
  border-color: #ff007f;
  box-shadow: 0 0 0 2px rgba(255, 0, 127, 0.1);
}

/* Removido o indicador de digitação */

.send-button {
  background: linear-gradient(45deg, #ff007f, #ff5c5c);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.send-button svg {
  width: 18px;
  height: 18px;
}

.highlight-feature {
  color: #ff1744;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.package-option.best-option .highlight-feature {
  color: #ff1744;
}

/* Garantindo que a descrição do pacote VIP seja visível, mas menor */
.package-option.best-option .package-details .package-description {
  font-size: 11px;
  line-height: 1.3;
}

/* Forçando a exibição dos destaques */
.package-option.best-option .highlight-feature {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #ff1744 !important;
  font-weight: 700 !important;
}

/* Estilos específicos para o pacote VIP no chat */
.vip-description {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  white-space: normal !important;
  line-height: 1.4 !important;
  margin-top: 3px !important;
}

.vip-feature {
  color: #ff1744 !important;
  font-weight: 700 !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  margin: 0 2px !important;
}

/* Garantindo altura mínima para o elemento de descrição do pacote */
.package-option .package-description {
  min-height: 32px;
}

/* Garantindo que a descrição no pacote VIP nunca seja escondida */
.best-option .package-description {
  overflow: visible !important;
  max-height: none !important;
  text-overflow: clip !important;
}

/* Estilos para vídeos do Google Drive */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background-color: #000;
}

.iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.iframe-container.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #000;
}

.video-wrapper iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: #000;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 4;
  transition: opacity 0.3s ease;
}

.video-placeholder svg {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  animation: pulse 2s infinite;
}

.post-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.video-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  padding: 0;
}

/* Animação de pulsação para o botão de vídeo */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7);
  }
  
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 0, 127, 0);
  }
  
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 127, 0);
  }
}

.view-video-button {
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
  animation: pulse 1.5s infinite;
}

.view-video-button:hover {
  transform: scale(1.1);
  background-color: #ff1a8c !important;
}

/* Ajuste específico para o layout em linha */
.small-option .package-price {
  font-size: 13px;
  padding: 2px 6px;
}

.small-option .package-name {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Garantir que o story viewer tenha um z-index menor */
.story-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9000;
  display: flex;
  flex-direction: column;
}

.message-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  transition: all 0.3s ease;
}

/* Garantir que #storyViewerModal não sobreponha o modal de chat */
#storyViewerModal {
  z-index: 9500 !important;
} 