@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Nerko+One&display=swap');

body {
    font-family: "Boogaloo", sans-serif;
    background-color: #FFFFFF;
    color: #202A36;
}

/* Estilo de títulos */
h1, h2, h3 {
    font-family: "Nerko One", sans-serif;
}

.title.is-2.has-text-centered {
    color: #FCC700;
    font-size: 55px;
}

.subtitle.is-4.has-text-centered {
    font-size: 20px;
    color: #031D38;
}


.title.is-3 {
    color: #FCC700;
    font-size: 55px;
}

.sobre{
    font-size: 20px;
}

.imgconta{
    width: 300px;
    height: 300px;
}

/* Navbar */
.navbar {
    background-color: #031D38;
    border-radius: 0;
    width: 100%;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-menu {
    width: 100%;
    justify-content: space-between;
}


.logo {
    max-width: 70px;
    height: 70px;
    margin-right: 15px;
    border-radius: 15px;
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
}

.logo:hover {
    transform: scale(1.2); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
}

@media screen and (max-width: 768px) {
    .logo {
        max-width: 70px;
    }
}

.navbar-item {
    color: #FFFFFF !important;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
}

.navbar-item:hover {
    background-color: #FCC700 !important;
    color: #031D38 !important;
}


.hero {
    background: linear-gradient(135deg, #0368B6, #031D38);
    color: #FFFFFF;
    border-radius: 20px;
    margin: 10px;
    text-align: center;
}

/* Botones */
.button.is-link {
    background-color: #FCC700;
    color: #031D38;
    font-weight: bold;
    border: none;
    border-radius: 10px;
}

.button.is-link:hover {
    background-color: #0368B6;
    color: #FFFFFF;
}

/* Imágenes */
.image img {
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}


.footer {
    background-color: #031D38;
    color: #FFFFFF;
    padding: 2rem 1rem;
    border-radius: 20px 20px 0 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



#loadingContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease-in-out;
}


#loadingGif {
    width: auto;
    height: auto;
    margin-bottom: 15px;
}


#progressBarContainer {
    width: 80%;
    max-width: 400px;
}


#progressBar {
    height: 8px;
    transition: width 0.3s ease-in-out;
}

