@font-face {
    font-family: "Humanst521 BT";
    font-weight: bold;
    src: url("../fonts/Humanst521 BT Bold.ttf");
}

@font-face {
    font-family: "Humanst521 BT";
    font-style: italic;
    src: url("../fonts/Humanst521 BT Italic.ttf");
}

@font-face {
    font-family: "Humanst521 BT";
    font-style: italic;
    font-weight: bold;
    src: url("../fonts/Humanst521 BT Bold Italic.ttf");
}

@font-face {
    font-family: "Humnst777 BT Roman";
    src: url("../fonts/Humnst777 BT Roman.ttf");
}

@font-face {
    font-family: "Humnst777 Cn BT";
    font-weight: normal;
    src: url("../fonts/Humnst777 Cn BT.ttf");
}

@font-face {
    font-family: "Humnst777 Cn BT";
    font-weight: bold;
    src: url("../fonts/Humnst777 Cn BT Bold.ttf");
}

* {
    --color-black: #000;
    --font-color: #fff;
    --color-title: #1696CC;
    --color-title-secundary: #FFBE00;
    --color-text: #C3C4CC;
    --size-text: 20px;
    --bs-navbar-brand-color: var(--font-color);
    --bs-navbar-active-color: var(--font-color);
    --bs-nav-link-color: var(--font-color);
}

html {
    scroll-behavior: auto !important; /* Desativa a rolagem suave do Bootstrap */
}

p, a, span, h3, h5, address {
    font-family: "Humnst777 Cn BT", sans-serif;
    color: var(--font-color);
}

h5 {
    font-weight: bold;
}

address {
    font-size: var(--size-text);
}

#background {
    background: url('../images/background.webp') center no-repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100vh;
}

#background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--color-black);
    width: 100%;
    height: 100vh;
    opacity: .7;
}

header {
    background: var(--color-black);
    position: fixed;
    width: 100%;
    z-index: 3;
}

header nav {
    position: relative;
    z-index: 2;
}

header .navbar-brand, header .navbar-nav .nav-item {
    background: var(--color-black);
    padding: 5px 10px;
}

header .navbar-nav .nav-item a {
    font-family: "Humanst521 BT", sans-serif;
    font-weight: bold;
}

header .navbar-nav .nav-item a:hover, a:focus, a:active {
    color: var(--font-color) !important;
}

.nav-link.active, .nav-link.active:hover {
    color: var(--color-title-secundary) !important;
}

.lineTitle {
    background: var(--color-title-secundary);
    position: absolute;
    left: 0;
    z-index: 1;
    top: 20px;
    width: 100%;
    height: 3px;
}

main {
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 2;
}

section p {
    font-size: 24px;
}

.section-title {
    background: url('../images/background.webp') center no-repeat;
    position: relative;
    z-index: 3;
    font-family: "Humanst521 BT", sans-serif;
    color: var(--color-title);
    padding: 10px;
    display: inline-block;
}

.section-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fundo preto com 70% de opacidade */
    pointer-events: none;
    z-index: -1;
}

h2 {
    font-family: "Humnst777 BT Roman", sans-serif;
    color: var(--color-title-secundary);
}

h3 {
    font-weight: bold;
}

article {
    margin: 50px 0;
}

article .img-fluid {
    height: 350px;
}

.navbar-toggler {
    background-color: var(--color-black);
}

.bi.bi-list {
    color: var(--font-color) !important;
}

#manifest img {
    max-height: 250px;
}

#members img {
    width: auto !important;
    height: 150px;
}

#foguet {
    transform: rotate(100deg);
}

#anntena {
    transform: scaleX(-1);
}

#peoples figure img {
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

#peoples figure img,
#peoples figure img:not([src]), #peoples figure img[src=""] {
    width: 196px;
    height: 196px;
}

#peoples figure img:not([src]), #peoples figure img[src=""] {
    background-color: var(--font-color);
}

#peoples figure figcaption p {
    font-size: 20px;
    color: var(--color-text);
}

.pt-5 {
    padding-top: 5rem;
}

.pt-7 {
    padding-top: 7rem;
}

.pt-10 {
    padding-top: 10rem;
}

.mt-10 {
    margin-top: 10rem;
}

.mb-10 {
    margin-bottom: 10rem;
}

input, textarea {
    background-color: transparent !important;
    border: 2px solid #717277 !important;
    color: var(--font-color) !important;
}

input {
    height: 65px;
}

input::placeholder,
textarea::placeholder {
    color: var(--color-title-secundary) !important;
}

#contactForm button {
    width: 100%;
    background-color: var(--color-title-secundary);
    border: 1px solid var(--color-title-secundary);
    border-radius: 0;
    color: var(--color-black);
}

#contact h2 {
    font-size: 30px;
    color: var(--font-color);
}

#contact label {
    font-weight: bold;
    color: var(--font-color);
}

#contact a, #socials a {
    text-decoration: none;
}

#contact label, #contact a {
    font-size: var(--size-text);
}

footer {
    padding: 40px 0;
    background-color: var(--color-black);
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#modalNoticeEmail p, #modalNoticeEmail h5 {
    color: var(--color-black);
    margin: 0 auto;
}

#modalNoticeEmail .btn-close {
    position: absolute;
    right: 10px;
}

#modalNoticeEmail .btn {
    background-color: var(--color-title-secundary);
    color: var(--color-black);
    padding: 5px 20px;
}

@media (max-width: 992px) {
    #manifest .col-lg-8 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    
    #members .row div {
        text-align: center;
    }

    .mt-xs-2 {
        margin-top: 2rem;
    }
    
    .mt-xs-5 {
        margin-top: 5rem;
    }

    .section.mb-10 {
        margin-bottom: 5rem;
    }
}