@charset "UTF-8";

/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: rgb(0, 132, 255);
    color: black;
    overflow-x: hidden;
}
body {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* TIPOGRAFIA */
p {
    text-align: justify;
    text-indent: 40px;
    line-height: 1.6;
}

/* FUNDO DE TELA */
#fundo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

#fundo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.1);
}

/* TELA DE ENTRADA */
#entrada {
    height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#entrada h1 {
    font-size: 32px;
    font-style: italic;
}

#entrar {
    margin-top: 25px;
    padding: 15px 40px;
    font-size: 18px;
    background: rgb(0, 119, 255);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s ease;
}

#entrar:hover {
    transform: scale(1.1);
}

/* MENU */
#menu {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fdfbd4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
}

/* LOGO ANIMADA */
.anim-logo {
    font-weight: bold;
    font-size: 22px;
    animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); text-shadow: 0 0 5px red; }
    50% { transform: scale(1.1); text-shadow: 0 0 20px #ff4d6d; }
}

/* LOGO ANIMADA */
.anim-logo {
    font-weight: bold;
    font-size: 22px;
    animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
    0% { transform: scale(1); text-shadow: 0 0 5px red; }
    50% { transform: scale(1.1); text-shadow: 0 0 20px #ff4d6d; }
    100% { transform: scale(1); text-shadow: 0 0 5px red; }
}

/* MENU LISTA */
#menu-lista {
    display: flex;
    gap: 20px;
    list-style: none;
}

#menu-lista li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: 0.3s;
}

#menu-lista li a:hover {
    color: rgb(37, 148, 252);
}

#menu-lista li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: rgb(37, 148, 252);
    transition: 0.3s;
}

#menu-lista li a:hover::after {
    width: 100%;
}

/* HAMBURGUER */
.hamburguer {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburguer span {
    height: 3px;
    width: 25px;
    background: black;
    margin: 4px;
}

/* BOTÃO ENTRAR */
.botao-entrar{
    margin-top: 25px;
    padding: 15px 40px;
    font-size: 18px;
    background: rgb(0,119,255);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    transition: 0.3s;
}

.botao-entrar:hover{
    transform: scale(1.1);
}
/* CONTEÚDO */
#conteudo {
    width: 100%;
    margin: 120px auto;
}

section {
    margin: 10px 0;
}

.titulo-feliz{
    text-align: center;
    margin-bottom: 40px;
    margin-top: 50px;
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
}
.titulo-cima {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 50px;
    font-size: 25px;
}
.titulo-meio{
    text-align: center;
    margin-bottom: 40px;
    margin-top: 90px;
    font-size: 25px;
}
.titulo-baixo{
    text-align: center;
    margin-bottom: 40px;
    margin-top: 90px;
    font-size: 25px;
}

/* EFEITOS */

/* Digitação */
.digitando {
    display: block;
    text-align: justify;
    padding: 10px;
    text-indent: 40px;
    opacity: 1;
    border-right: 2px solid #ff4d6d;
    white-space: pre-line;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Revelar */
.revelar {
    opacity: 1;
    transform: translateY(60px);
    transition: 1s;
}

.revelar.ativo {
    opacity: 1;
    transform: translateY(0);
}

/* IMAGEM COM LEGENDA */
figure.foto-legenda {
    position: relative;
    max-width: 350px;
    margin: 5px auto;
    border:solid 10px rgb(0, 119, 255);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

figure.foto-legenda img {
    width: 100%;
    display: block;
}

figure.foto-legenda figcaption {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 30px;
    opacity: 0;
    transition: opacity 1s;
}

figure.foto-legenda:hover figcaption {
    opacity: 1;
}

/* GALERIA */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.foto-galeria {
    width: 100%;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.foto-galeria:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255,0,0,0.5);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    padding-top: 100px;
    background: rgba(0,0,0,0.9);
}

.modal-conteudo {
    display: block;
    margin: auto;
    max-width: 80%;
    border-radius: 20px;
}

#fechar {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* CONTADOR */
.contador-container {
    text-align: center;
    margin-top: 50px;
}

#contador {
    font-size: 28px;
    margin-top: 15px;
    color: #ff4d6d;
    font-weight: bold;
    animation: pulsarContador 2s infinite;
}

@keyframes pulsarContador {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* SLIDESHOW */
.slideshow-container {
    position: relative;
    max-width: 220px;
    margin: 40px auto;
    margin-top: 100px;

}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    border-radius: 20px;
}

.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from { opacity: .4 }
    to { opacity: 1 }
}

/* Botões */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px;
    color: white;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    color: #ff4d6d;
}

/* Bolinhas */
.dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #ff4d6d;
}

/* CORAÇÕES ANIMADOS */
.heart {
    position: fixed;
    bottom: -50px;
    font-size: 20px;
    animation: subir linear forwards;
    pointer-events: none;
}

@keyframes subir {
    to {
        transform: translateY(-110vh);
        opacity: 0;
    }
}

/* RODAPÉ */
.rodape-entrada {
    background: #fdfbd4;
    text-align: center;
    padding: 40px 20px;
    font-size: 18px;
    margin-top: 86px;
}
.rodape-conhecemos {
    background: #fdfbd4;
    text-align: center;
    padding: 40px 20px;
    font-size: 18px;
    margin-top: 420px;
}
.rodape-encontro {
    background: #fdfbd4;
    text-align: center;
    padding: 40px 20px;
    font-size: 18px;
    margin-top: 40px;
}
.rodape-ano {
    background: #fdfbd4;
    text-align: center;
    padding: 40px 20px;
    font-size: 18px;
    margin-top: 80px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    #menu-lista {
        position: absolute;
        top: 70px;
        right: 0;
        background: black;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 20px;
    }

    #menu-lista.ativo {
        display: flex;
    }

    .hamburguer {
        display: flex;
    }

    #conteudo {
        margin-top: 150px;
    }
}