@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Anton', sans-serif;
}

/* Rodapé e rolagem */
body {
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #1E90FF;
    flex-direction: column; /* Flexbox para empurrar rodapé para baixo */
    overflow-y: auto; /* Permite rolagem vertical */
    padding-bottom: 80px; /* Espaço extra para não esconder o footer */
}

index {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column; /* Flexbox para empurrar rodapé para baixo */
    overflow-y: auto; /* Permite rolagem vertical */
    padding-bottom: 80px; /* Espaço extra para não esconder o footer */
    overflow: hidden;
}
/* Fundo dinâmico */
.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(30,144,255,1) 10%, rgba(0,77,153,3) 90%);
    filter: blur(100px);
    z-index: -1;
    animation: backgroundMove 6s infinite alternate;
}

/* Conteúdo centralizado */
.container {
    z-index: 2;
    margin-bottom: 50px; /* Espaço para o footer */
}

/* Animações */
@keyframes backgroundMove {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Titulos e Descrições */
.title {
    font-size: 80px;
    letter-spacing: 3px;
    color: white;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s forwards ease-in-out;
}

.subtitle {
    font-size: 20px;
    color: #004da8;
    opacity: 0;
    animation: fadeIn 1.5s forwards ease-in-out;
}

.descrição {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

h2 {
    font-size: 1.8rem;
    color: #004da8;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 4px solid #0099ff;
    margin-top: 20px;
}

h5 {
    font-size: 3rem;
    color: #ffe600;
}

p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 15px;
    padding-left: 15px;
}

p5 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    padding-left: 15px;
}

t {
    font-size: 1rem;
    color: #fbff00;
    margin-bottom: 15px;
    padding-left: 15px;
}

e {
    font-size: 7rem;
}
/* Botões */
.btn {
    display: inline-block;
    font-size: 22px;
    padding: 12px 30px;
    margin: 10px;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    background: transparent;
}

.btn:hover {
    background: white;
    color: #1E90FF;
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(30,144,255,0.7);
}

.btn2 {
    display: inline-block;
    font-size: 22px;
    padding: 12px 30px;
    margin: 10px;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    background: transparent;
}

.btn2:hover {
    background: white;
    color: #006eff;
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgb(31, 143, 255);
}

/* Estilos do footer */
footer {
    width: 100%;
    background-color: #004efe;
    padding: 10px;
    text-align: center;
    color: #000000;
    font-size: 13px;
    margin-top: auto; /* Isso empurra o footer para o final */
}

.footer-container {
    display: flex;
    flex-direction: flex-end;
    align-items: flex-start;
    justify-content: center;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    margin: 0 10px;
}

.social-links img {
    width: 30px;
    height: 30px;
}

/* Logo */
.logo-container {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    align-items: flex-start;
}

.logo {
    width: 150px; 
    height: auto;
    align-items: flex-start;
}

.sobre {
    width: 300px; 
    height: auto;
    align-items: flex-start;  
}