.love-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 192, 203, 0.8); /* rosa claro com transparência */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
  font-family: 'Arial', sans-serif;
  text-align: center;
  color: #b30059;
}

/** NUMEROLOGIA **/
.number-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 247, 192, 0.8); /* rosa claro com transparência */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
  font-family: 'Arial', sans-serif;
  text-align: center;
  color: #b36b00;
}
/** FIM NUMEROLOGIA **/

/** TAROT **/ 
 #taroCartas {
  margin-left: 80px
}
.ttaro-cartas-lista-carta {
  float: left;
  padding-top: 30px;
}
.oraculos-h1 {
  font-size: 40px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
}
.oraculos-h2 {
  font-size: 25px !important;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
}
.link-h3 {
  color: #0077ff;
}
.h5-oraculos {
  color: #0077ff;
  font-size: 18px;
}
.ttaro-cartas-lista-carta.sobrepor {
  margin-left: -80px;
}
.ttaro-cartas-lista-carta:hover {
  padding-top: 10px;
}
@media (min-width: 1313px) {
  .bannerLista {
    display: flex;
  }
}
/** FIM TAROT **/ 

/** SONHOS **/
.dreams {
  gap: 10px;
  padding: 10px;
}
.letter {
    padding: 5px;
    background-color: #FAE9F5;
    color: #C63C8A;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.2s ease, padding 0.2s ease;
}
.letter:hover{
  transform: translateY(-3px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/** FIM SONHOS **/

.emoji {
  font-size: 3rem;
  animation: pulse 1s infinite;
  margin-bottom: 80px;
}


@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}


/** PAGE HOROSCOPO - SUGESTOES **/
.box-sugestao {
  background-color: #F9F5FA;
  border-left: 4px solid #C63C8A;
  border-radius: 6px;
  font-size: 0.95rem;
}

.sugestoes-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory; /* Para deslizar suave */
}

.sugestoes-scroll::-webkit-scrollbar {
  height: 6px;
}
.sugestoes-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.sugestoes-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.sugestao-item {
  flex: 0 0 auto;
  width: 280px; /* Largura fixa para cada card */
  scroll-snap-align: start;
}



.sugestao-label {
  font-weight: 600;
  color: #7C2A62;
  font-size: 1rem;
}

.item-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  text-decoration: none;
}

.item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.sugestao-img-wrapper {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

.sugestao-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-item-medium {
  font-size: medium;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.sugestao-link {
  text-decoration: none;
  color: inherit;
}
