/* Estilos gerais */
* {
    font-family: "Merriweather", serif;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #000000, #0e0339);
    margin: 0;
    height: 100vh;
}

a {
    color: #d8ae5d;
    text-decoration: none;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    background-color: rgba(14, 3, 57, 0.80);
    border-bottom: solid 1px #d8ae5d;
}
.navbar-brand img {
    max-width: 150px;
}
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: bold;
    margin-left: 15px;
    color: #d8ae5d;
}

/* Banner Principal */
.banner {
    width: 100%;
    height: 750px;
    background: url('../img/terceiraponte.jpg') center/cover no-repeat;
    position: relative;
    background-position: bottom;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.banner .container {
    /* display: flex;
    max-width: 100%; */
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 40px;
    font-weight: bold;
}

/* Tela de carregamento */
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0e0339;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.preloader img {
    width: 300px;
    height: 300px;
    animation: spin 2s linear forwards;
}
@keyframes spin {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
body.loaded .preloader {
    opacity: 0;
    visibility: hidden;
}

.txt h1 {
    font-size: 32px;
    padding-bottom: 20px;
    font-weight: normal;
}
.tj {
    text-align: justify;
}

/* Informações de contato */
.container-sobre {
    width: 100%;
    max-width: 1174px;
    margin: auto;
    display: flex;
    justify-content: center;
    
}
.lista-tef-email {
    display: flex;
    list-style: none;
    padding: 5px;
    margin: 0;
    gap: 10px;
    justify-content: center;
    background-color: #222;
}
.lista-tef-email li {
    display: flex;
    align-items: center;
}
.lista-tef-email li a {
    display: flex;
    align-items: center;
}
.lista-tef-email img {
    height: 20px;
}
.numero {
    padding-left: 10px;
}

.lista-tef-email {
    display: flex;
    list-style: none;
    padding: 5px;
    margin: 0;
    gap: 10px;


}
.lista-tef-email li {
    display: flex;

}
.lista-tef-email li a {
    display: flex;

}
.lista-tef-email img {
    height: 20px;
}


.dropdown-menu{
    background: #222;
    color: #d8ae5d;
    padding: 2px;
}

#blinking-dot {
    opacity: 1;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

#typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-cursor 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-cursor {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #fff;
    }
}

@media (max-width: 768px) {
