/* Importando a fonte mágica */
@import url('https://fonts.googleapis.com/css2?family=Uncial+Antiqua&family=Cinzel+Decorative:wght@400;700&display=swap');

/* Sparkles Animation */
@keyframes sparkle {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.2;
    }
}

.sparkle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 223, 186, 1) 0%, rgba(254, 210, 153, 0.9) 100%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    box-shadow: 
        0 0 15px rgba(254, 210, 153, 0.9),
        0 0 25px rgba(254, 210, 153, 0.6),
        0 0 35px rgba(254, 210, 153, 0.3);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Corpo Principal */
body {
    font-family: 'Uncial Antiqua', serif;   
    background: linear-gradient(
        to bottom,
        #000000,
        #140216,
        #140217,
        #000000
    );
    background-size: 400% 400%;
    
    color: rgba(254, 210, 153, 1);
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 5.5rem;
}

/* icone do wpp */
/* .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

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

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px) ;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
} */


.whatsapp-chat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-toggle {
  background-color: #ebc25100;
  color: #EBC351;
  font-size: 26px;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-toggle:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #EBC351; }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-box {
  display: none;
  width: 280px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

.whatsapp-header {
  background-color: #075E54;
  color: white;
  padding: 10px 12px;
  border-radius: 10px 10px 0 0;
  position: relative;
  font-weight: bold;
  font-size: 14px;
}

.whatsapp-header button {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}


.whatsapp-body {
  padding: 15px;
  font-size: 14px;
  color: #333;
}

.start-chat {
  display: inline-block;
  margin-top: 10px;
  background-color: #075E54;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}






@keyframes gradientBG {
    0% {
        background-position: 50% 0%;
    }
    50% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 50% 0%;
    }
}

hr{
    border: 1px solid rgba(254, 210, 153, 1);
    width: 90%;
    margin: 20px auto;
    border-radius: 100px;
}

.valores-grid.segundo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

/* Letreiro */
#letreiro-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 40px;
    font-family: 'Cinzel Decorative', serif;
    text-shadow: 0 0 10px rgba(254, 210, 153, 0.5);
}

#letreiro-header h1 {
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(254, 210, 153, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(254, 210, 153, 0.8);
    }
}

/* Cabeçalho e Rodapé */
header, footer {
    background: linear-gradient(to bottom, rgba(148, 31, 148, 0.8), rgba(54, 3, 54, 0.8));
    padding: 1rem 0;
    height: 3.5rem;
    width: 100%;
    font-family: 'Cinzel Decorative', serif;
    color: rgba(254, 210, 153, 1);
    box-shadow: 0 0 20px rgba(254, 210, 153, 0.3);
    backdrop-filter: blur(5px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1.5px solid rgba(254, 210, 153, 1);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 2rem;
}

#estrela {
    
    display: flex;
    justify-content: center;
}

#estrela img {
    height: 50px;
    width: 50px;
    border: 3px solid rgba(254, 210, 153, 1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}


#opcoes {
    flex-direction: row;
    right: 1rem;
    display: flex;
    gap: 1rem;
    margin-right: 10px;
}

#opcoes a {
    color: rgba(254, 210, 153, 1);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

#opcoes a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: rgba(254, 210, 153, 1);
    transition: width 0.3s ease;
}

#opcoes a:hover::after {
    width: 100%;
}

#opcoes a:hover {
    text-shadow: 0 0 10px rgba(254, 210, 153, 0.8);
}

footer {
    margin-top: 40px ;
    border-top: 1.5px solid rgba(254, 210, 153, 1); 
}

header img{
    height: 60px;
    width: 60px;
    border: 3px solid rgba(254, 210, 153, 1);
    border-radius: 1000px;
}

footer p {
    font-size: 1rem;
}

.geral{
display: flex;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 40px;
}

#sobre-mim{
display: flex;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 30px;
}

/* Botões */
.btn {
    display: inline-block;
    background: linear-gradient(45deg, rgba(162, 89, 162, 1), rgba(130, 1, 128, 0.8));
    color: rgba(254, 210, 153, 1);
    border: 2px solid rgba(254, 210, 153, 1);
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1rem;
    font-family: 'Cinzel Decorative', serif;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(254, 210, 153, 0.3);
}

.btn:hover {
    background: linear-gradient(45deg, rgba(130, 1, 128, 0.8), rgba(162, 89, 162, 1));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 210, 153, 0.5);
}

.button-value{
    border: 3px solid rgba(254, 210, 153, 1);
    border-radius: 30px;
    background-color: rgb(0, 0, 0);
    font-size: larger;
    padding: 10px;
    
}

/* Seção Sobre */

#about {
    border-radius: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./images/tarotHD.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: rgb(245, 245, 245);
    padding: 3rem;
    margin: 2rem auto;
    box-shadow: 0 0 30px rgba(254, 210, 153, 0.3);
    text-align: center;
    border: 2px solid rgba(254, 210, 153, 1);
    width: 80%;
    max-width: 1200px;
    backdrop-filter: blur(5px);
}

#about img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(254, 210, 153, 0.5);
    border: 3px solid rgba(254, 210, 153, 1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(254, 210, 153, 0.8);
}

#container-sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
}

#services{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    
}

/* Lista */

/* Listas Dentro do Background Roxo */
ul {
    width: 90%;
    max-width: 1000px;
    list-style: none;
    background: linear-gradient(45deg, rgba(162, 89, 162, 0.9), rgba(130, 1, 128, 0.9));
    border: 2px solid rgba(254, 210, 153, 1);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(254, 210, 153, 0.3);
    color: rgba(254, 210, 153, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    padding: 20px;
    backdrop-filter: blur(5px);
}

/* Itens da Lista */
ul li {
    padding: 1rem;
    font-size: 1.2rem;
    font-family: 'Uncial Antiqua', serif;
    border-bottom: 1px solid rgba(254, 210, 153, 0.3);
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

#espaco{
    margin-top: 20px;
}



ul li:last-child {
    border-bottom: none;
}

/* FAQ Section */
#faq {
    background: rgba(130, 1, 128, 0.8);
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 1px 1px 20px rgba(254, 210, 153, 1);
    width: 90%;
    height:40rem;
    display: flex;
    flex-direction: column;
    margin: 40px 0;
}

#faq h3 {
    font-family: 'Cinzel Decorative', serif;
    color: rgba(254, 210, 153, 1);
    margin: 1rem 0;
}

div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contact p{
font-size: 35px;
display: flex;
align-items: center;
}

.icones{
    margin-left: 15px;
    height: 30px;
    width: 30px;
}

/* Tipos de Baralhos */
#baralhos {
    text-align: center;
    margin: 50px 0;
}

#baralhos h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.baralhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.baralho-item {
    background: linear-gradient(45deg, rgba(162, 89, 162, 0.9), rgba(130, 1, 128, 0.9));
    border: 2px solid rgba(254, 210, 153, 1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px rgba(254, 210, 153, 0.3);
}

.baralho-item:hover {
    transform: translateY(-10px);
}

.baralho-imagem {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid rgba(254, 210, 153, 1);
    transition: transform 0.3s ease;
}

.baralho-item p {
    font-size: 1em;
    line-height: 1.5;
    color: rgba(254, 210, 153, 1);
}

a{
    text-decoration: none;
    color: rgba(254, 210, 153, 1);
}

a:hover{
    color: rgba(254, 210, 153, 0.251);
}

/* Responsividade */
@media (min-width: 1200px) and (max-width: 1600px) {
    #about {
        width: 85%;
        padding: 2.5rem;
    }

    .baralhos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .baralho-item {
        padding: 2rem;
    }

    .baralho-imagem {
        width: 280px;
        height: 280px;
    }

    #faq {
        width: 85%;
        height: auto;
        padding: 2rem;
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .valor-item {
        padding: 2.5rem;
    }

    #letreiro-header {
        font-size: 45px;
    }

    #about img {
        width: 320px;
        height: 320px;
    }

    #opcoes a{
        font-size: 1.7rem;
        margin-right: 10px;
    }
}

@media (max-width: 1500px) {
    #about {
        width: 90%;
        flex-direction: column;
        padding: 1.5rem;
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .baralhos-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .baralho-item {
        width: 100%;
    }

    .baralho-imagem {
        width: 200px;
        height: 200px;
    }

    #faq {
        width: 90%;
        height: auto;
        padding: 1.5rem;
    }

    #opcoes a{
        font-size: 1.7rem;
        margin-right: 10px;
    }
}

@media (max-width: 992px) {
    #letreiro-header {
        font-size: 50px;
        text-align: center;
    }

    ul{
        display: flex;
        flex-direction: column;
    }

    #faq {
        width: 90%;
        height: auto;
        padding: 1.5rem;
        
    }

    #faq h3 {
        font-size: 1.5rem;
    }

    #about img {
        width: 250px;
        height: 250px;
    }

    #opcoes a{
        font-size: 1.7rem;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    header img {
        height: 40px;
        width: 40px;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .baralho-imagem {
        width: 150px;
        height: 150px;
    }

    footer p {
        font-size: 0.9rem;
    }

    #contact p {
        font-size: 1.2rem;
    }

    #services ul, #faq ul {
        padding: 0.8rem;
        font-size: 0.9rem;
        width: 95%;
    }

    #about img {
        width: 180px;
        height: 180px;
    }

    #about {
        width: 95%;
        padding: 1rem;
        margin: 1rem auto;
    }

    .valores-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .valor-item {
        padding: 1.5rem;
    }

    #letreiro-header {
        font-size: 28px;
        margin-top: 10px;
    }

    #opcoes a {
        font-size: 1.2rem;
        margin-right: 5px;
    }

    ul {
        width: 95%;
        padding: 15px;
    }

    ul li {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .valores-grid.segundo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.9rem;
    }

    header, footer {
        padding: 0.3rem 0;
        height: auto;
        min-height: 60px;
    }

    #letreiro-header {
        font-size: 22px;
        margin-top: 5px;
    }

    #about {
        padding: 0.8rem;
        margin: 0.8rem auto;
    }

    #about img {
        width: 140px;
        height: 140px;
    }

    .baralhos-grid {
        gap: 1rem;
        padding: 0.5rem;
    }

    .baralho-imagem {
        width: 130px;
        height: 130px;
    }

    #contact p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    #opcoes a {
        font-size: 1rem;
        margin-right: 3px;
    }

    .icones {
        height: 25px;
        width: 25px;
    }

    .valor-item {
        padding: 1rem;
    }

    .preco {
        font-size: 1.5rem;
    }

    .obs {
        font-size: 1.2rem;
    }
}

/* Seção de Valores */
#valores {
    padding: 4rem 2rem;
    text-align: center;
}

.valores-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.valor-item {
    background: linear-gradient(45deg, rgba(162, 89, 162, 0.9), rgba(130, 1, 128, 0.9));
    border: 2px solid rgba(254, 210, 153, 1);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.valor-item:hover {
    transform: translateY(-10px);
}

.valor-item h3 {
    color: rgba(254, 210, 153, 1);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.preco {
    font-size: 2rem;
    color: rgba(254, 210, 153, 1);
    margin: 1rem 0;
    font-weight: bold;
}

.valor-item ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    background: none;
    border: none;
    box-shadow: none;
}

.valor-item ul li {
    padding: 0.5rem 0;
    border: none;
    font-size: 1.1rem;
}

.valor-item.destaque {
    transform: scale(1.05);
    border-width: 3px;
    box-shadow: 0 0 30px rgba(254, 210, 153, 0.5);
}

.valor-item.destaque:hover {
    transform: scale(1.05) translateY(-10px);
}

.fita {
    position: absolute;
    top: 1rem;
    right: -1rem;
    background: rgba(254, 210, 153, 1);
    color: rgba(130, 1, 128, 0.9);
    padding: 0.15rem 2rem;
    transform: rotate(40deg);
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.obs {
    font-size: 1.5rem;
    color: rgba(254, 210, 153, 0.8);
    margin-top: 2rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .valores-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .valor-item.destaque {
        transform: scale(1);
    }
    
    .valor-item.destaque:hover {
        transform: translateY(-10px);
    }
}
