/* Página 01 */

.container_julliana {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Garante que o container ocupe a largura total */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza o conteúdo do convite */
}

.parte_de_cima_convite {
    position: relative;
    display: inline-block;
}

.parte_de_cima_convite::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

.parte_de_cima_convite {
    position: relative;
    z-index: 10;
    box-shadow: 0px 5px 50px 60px rgb(0, 0, 0);
}

.parte_de_cima_convite img {
    height: auto;
}


.foto_julliana {
    position: relative;
    z-index: 5;
}

.foto {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.text_julliana_15_anos {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 62%;
    /* controla a posição vertical */
    transform: translateY(-50%);
    z-index: 25;
}

.nome_aniversariante {
    font-family: 'Alex Brush', cursive;
    font-size: 5rem;
    /* Ajuste o tamanho conforme desejar */
    color: rgb(255, 0, 0);
    /* A sombra no texto ajuda a ler se a foto for clara */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 0;

    text-shadow:
        0 0 5px #640101,
        0 0 10px #c5000085;
}

.idade_aniversariante {
    font-family: 'Style Script', cursive;
    font-size: 1.5rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);

    position: absolute;
    bottom: -15px;
    /* distância do final da div */
    left: 50%;
    transform: translateX(-50%);
}

.parte_de_baixo_convite {
    position: relative;
    display: inline-block;
}

.parte_de_baixo_convite::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

.parte_de_baixo_convite {
    position: relative;
    z-index: 10;
    box-shadow: 0px 5px 50px 60px rgb(0, 0, 0);
}

.parte_de_baixo_convite img {
    height: auto;
    opacity: 1;
}

/* .parte_de_baixo_convite img {
    opacity: 0.3;
} */

.convite {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.img-btn {
    background: transparent;
    border: none;
    padding: 0;
}


/* fichas */

.ficha {
    position: fixed;
    /* Mudei para fixed para garantir que tampe a tela mesmo com scroll */
    top: -150px;
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 9999;
    /* Valor máximo para ficar na frente de TUDO */
    animation: cair linear forwards;
    will-change: transform;
    /* Deixa a animação mais lisa */
}

@keyframes cair {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        /* Garante que ela desça até o fim da tela */
        transform: translateY(110vh) rotate(720deg);
        opacity: 0.9;
    }
}


/* Pagina 02 */

* {
    box-sizing: border-box;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
}

.video-fundo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container_informacao {
    background: rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(5px);
    margin: 20px;
    padding: 20px 10px;
    box-sizing: border-box;
    width: 95%;
    max-width: 500px;


    height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.nome_aniversariante_informacao {
    text-align: center;
    margin: 20px 0;
}

.nome_aniversariante_informacao h1 {
    color: rgb(255, 0, 0);
    font-size: 3rem;
    /* font-family: 'Great Vibes', cursive; */
    font-family: 'Alex brush', cursive;


    text-shadow:
        0 0 5px #640101,
        0 0 10px #c5000085;
}


.texto_aniversariante {
    text-align: center;
    margin-bottom: 30px;
}

.texto_aniversariante p {
    line-height: 1.4;
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-family: Bellota;
}

.dia_hora {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    color: white;
    margin-top: auto;
    margin-bottom: auto;
}

.sab_ano h4,
.hora h4 {
    color: red;
    font-family: Alex Brush, cursive;

    text-shadow:
        0 0 5px #640101,
        0 0 10px #c5000085;
}

.sab_ano h3,
.hora h3 {
    font-size: 1.7rem;
    font-family: Alex Brush, cursive;
}

.dia_mes h1 {
    font-size: 6rem;
    margin: 0;
    color: red;

    text-shadow:
        0 0 5px #640101,
        0 0 10px #c5000085;

}

.dia_mes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dia_mes h1,
.dia_mes h4 {
    margin: 0;
    padding: 0;
    font-family: Alex Brush, cursive;
}

.dia_mes h4 {
    font-size: 1.9rem;
}

.dica_interacao p {
    text-align: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-family: Bellota;
}

.botao_interacao {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
}

.botao_interacao h2 {
    font-family: Bellota;
}


.botao_interacao>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.botao_interacao img {
    width: 100%;
    max-width: 70px;
    height: auto;
    display: block;
    margin-bottom: 8px;
}

.botao_interacao h2 {
    font-size: 0.65rem;
    color: #ffffff;
    margin: 0;
    word-wrap: break-word;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: bold;
}

.sab_ano,
.hora {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sab_ano h3,
.sab_ano h4,
.hora h3,
.hora h4 {
    margin: 0;
    padding: 0;
}