 /* Reset b�sico */
 *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 !important;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* Seus estilos personalizados */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.border-gold-gradient {
    border-image: linear-gradient(90deg, rgba(212,175,55,0.2), rgba(212,175,55,0.8), rgba(212,175,55,0.2));
    border-image-slice: 1;
}

/* Estilos para garantir que o v�deo ocupe todo o espa�o */
video {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

#whatsapp-button {
position: fixed;
bottom: 15px;
right: 15px;
z-index: 99;
background-color: #c9a227;
border-radius: 50px;
color: #ffffff;
text-decoration: none;
width: 60px;
height: 60px;
font-size: 40px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-size: cover;
filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
animation: effect 5s infinite ease-in;
}

#whatsapp-button:hover {
background-color: #ebbe2b;
color: #ffffff;

}


/* =======================anime====================================== */
/* Transi��es suaves para os elementos animados */
[data-anime] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

[data-anime].animate {
    opacity: 1;
    transform: translateY(0);
}

/* Estilo para os cards ativos */
.anime {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anime.ativo {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Estilos base para as animações */
[data-anime] {
    opacity: 0;
    transform: translateY(20px);
  }

  [data-anime].animate {
    opacity: 1;
    transform: translateY(0);
  }

  .anime {
    opacity: 0.5;
    transition: all 0.3s ease-out; /* Pode ser sobrescrito pelo JS */
  }

  .anime.ativo {
    opacity: 1;
    transform: scale(1.02);
  }
  /* =======================anime====================================== */
