@import url("https://webfonts.ffonts.net/The-Flourish.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}


/* FUNDO */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;

    background:
        radial-gradient(
            circle at 50% 15%,
            #242424 0%,
            #0c0c0c 45%,
            #000 100%
        );
}


/* FAIXA DIAGONAL */

body::after {
    content: "";

    position: fixed;

    width: 170%;
    height: 90px;

    left: -35%;
    top: 47%;

    transform: rotate(-13deg);

    background: rgba(255,255,255,0.07);

    border-top:
        2px solid rgba(255,255,255,0.13);

    border-bottom:
        2px solid rgba(255,255,255,0.13);

    z-index: -2;
}


/* PÁGINA */

.pagina {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 42px 20px 35px;
}


/* CABEÇALHO */

.inicio {
    text-align: center;
    width: 100%;
}


/* CRUZ */

.cruz {
    font-size: 38px;

    color: #d00000;

    margin-bottom: 10px;

    text-shadow:
        0 0 15px rgba(210,0,0,0.4);
}


/* VASCO */

.vasco {
    font-size: 11px;

    font-weight: bold;

    letter-spacing: 5px;

    color: white;
}


/* ALICE */

h1 {
    font-family:
        "TheFlourish",
        "The Flourish",
        cursive;

    font-size: 96px;

    line-height: 0.95;

    font-weight: normal;

    color: #d4af37;

    margin: 8px 0;

    text-shadow:
        0 2px 5px #000,
        0 0 20px rgba(212,175,55,0.25);
}


/* IDADE */

.idade {
    font-size: 17px;

    font-weight: bold;

    letter-spacing: 8px;

    margin-top: 10px;
}


/* DATA */

.data {
    margin-top: 15px;

    color: #bbb;

    font-size: 14px;

    letter-spacing: 5px;
}


/* LINHA */

.linha {
    width: 75px;

    height: 1px;

    background: #555;

    margin: 30px 0;
}


/* ÁREA DO BOTÃO */

.fotos-area {
    width: 100%;

    max-width: 390px;

    margin-bottom: 22px;
}


/* BOTÃO FOTOS */

.botao-fotos {
    width: 100%;

    padding: 18px;

    border:
        1px solid rgba(255,255,255,0.3);

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.03)
        );

    color: white;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s;
}

.botao-fotos:active {
    transform: scale(0.97);
}

.botao-fotos:hover {
    background: white;
    color: black;
}


/* LOCAL */

.local {
    width: 100%;

    max-width: 390px;

    padding: 25px 20px;

    text-align: center;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.13);

    border-radius: 7px;

    margin-bottom: 20px;
}


.icone-local {
    font-size: 30px;

    margin-bottom: 7px;
}


.local h2 {
    font-size: 14px;

    letter-spacing: 4px;

    margin-bottom: 15px;
}


.nome-local {
    font-size: 16px;

    font-weight: bold;

    line-height: 1.5;
}


.sede {
    display: inline-block;

    margin-top: 9px;

    padding: 6px 14px;

    border-radius: 20px;

    background:
        rgba(210,0,0,0.15);

    color: #ddd;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;
}


.horario {
    margin-top: 15px;

    color: #aaa;

    font-size: 13px;
}


/* MENSAGEM */

.mensagem {
    width: 100%;

    max-width: 390px;

    text-align: center;

    padding: 25px 20px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 7px;
}


/* BEM-VINDO COM A MESMA FONTE */

.mensagem h2 {
    font-family:
        "TheFlourish",
        "The Flourish",
        cursive;

    font-size: 30px;

    font-weight: normal;

    color: white;

    letter-spacing: 1px;

    margin-bottom: 13px;
}


.mensagem p {
    color: #bbb;

    font-size: 14px;

    line-height: 1.7;
}


.simbolos {
    margin-top: 14px;

    letter-spacing: 5px;
}


/* GALERIA */

.galeria {
    display: none;

    width: 100%;

    max-width: 420px;

    padding-top: 30px;

    animation:
        aparecer 0.35s ease;
}


.galeria.ativa {
    display: block;
}


@keyframes aparecer {

    from {
        opacity: 0;

        transform:
            translateY(15px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* TÍTULO DA GALERIA */

.titulo-galeria {
    text-align: center;

    margin-bottom: 25px;
}


.titulo-galeria span {
    font-size: 28px;
}


.titulo-galeria h2 {
    font-size: 17px;

    letter-spacing: 3px;

    margin: 8px 0 10px;
}


.titulo-galeria p {
    color: #999;

    font-size: 13px;

    line-height: 1.6;
}


/* GRADE */

.grade-fotos {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}


/* SEM FOTOS */

.sem-fotos {
    grid-column: 1 / -1;

    text-align: center;

    padding: 45px 20px;

    border:
        1px dashed rgba(255,255,255,0.2);

    border-radius: 7px;
}


.camera {
    font-size: 42px;

    margin-bottom: 15px;
}


.sem-fotos h3 {
    font-size: 14px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.sem-fotos p {
    color: #888;

    font-size: 13px;

    line-height: 1.5;
}


/* CARD DA FOTO */

.foto-card {
    overflow: hidden;

    border-radius: 6px;

    background: #111;

    border:
        1px solid rgba(255,255,255,0.1);
}


/* IMAGEM */

.foto-card img {
    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    display: block;
}


/* BOTÃO BAIXAR */

.baixar {
    display: block;

    width: 100%;

    padding: 11px 5px;

    text-align: center;

    text-decoration: none;

    background: #111;

    color: white;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1px;
}


/* BOTÃO VOLTAR */

.fechar {
    display: block;

    margin: 25px auto 0;

    padding: 12px 25px;

    background: transparent;

    color: #aaa;

    border:
        1px solid #444;

    border-radius: 5px;

    font-size: 11px;

    letter-spacing: 2px;
}


/* RODAPÉ */

footer {
    margin-top: 45px;

    text-align: center;

    color: #555;

    font-size: 10px;

    line-height: 2;

    letter-spacing: 2px;
}


/* CELULAR */

@media (max-width: 500px) {

    h1 {
        font-size: 78px;
    }

    .vasco {
        font-size: 9px;

        letter-spacing: 4px;
    }

}