@font-face {
    font-family: "persona3";
    src: url("fonts/p3font.TTF");
}

/* RESET */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

/* Vídeos */
#bg-video, #bg-video-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
#bg-video-mobile { display: none; }

.container-page {
    width: 100%;
    max-width: 1300px;
    padding: 20px;
    padding-top: 40px;
}

/* MENU */
.menu {
    font-family: "persona3";
    font-size: 2em;
    background: rgba(0, 200, 255, 0.25);
    backdrop-filter: blur(4px);
    padding: 15px 0;
    margin-bottom: 40px;
    border-radius: 10px;
}
.linkmenu { color: white; text-decoration: none; }
.linkmenu:hover { text-decoration: none; }

.atlus { height: 40px; }

/* FULLPAGE SECTIONS */
.fullpage-section {
    width: 100%;
    min-height: 100vh;
    padding: 40px 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
}
.content-wrapper {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-family: "persona3";
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00eaff;
}
.section-text {
    font-size: 1.15em;
    line-height: 1.45em;
    padding-right: 15px;
}

/* IMAGENS */
.section-img {
    border-radius: 12px;
    border: 2px solid #fff;
    box-shadow: 0 0 20px #00eaff;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {

    #bg-video { display:none!important; }
    #bg-video-mobile { display:block!important; }

    .menu { font-size: 1.3em; }

    .fullpage-section { padding: 25px 0; min-height:auto; }
    .section-title { font-size: 1.8em; }
    .section-text { font-size: .95em; padding: 0 12px; }

    .content-wrapper .row { flex-direction: column !important; text-align:center; }
    .section-img { max-width: 85%; margin: 0 auto 20px auto; }

}

@media (max-width: 576px) {

    .menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .section-title { font-size: 1.6em; }
    .section-text { font-size: .9em; }
    .section-img { width: 95%; }

}
