/* Estilo do título */
.titulo {
    display: block;
    margin: 50px auto;
    text-align: center;
    font-size: 2.5rem; /* Tamanho grande para destaque */
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, rgba(0, 47, 90, 1), rgba(0, 132, 255, 1));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 10px;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3); /* Sombras para dar profundidade */
}

/* Estilo da seção sobre */
.sobre {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(0, 47, 90, 0.8), rgba(0, 132, 255, 0.8));
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    justify-content: center;
}

/* Estilo do cartão de informações sobre */
.sobre-card {
    display: block;
    margin: auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
    max-width: 1000px;
    width: 90%;
    color: #fff;
}

/* Estilo do texto dentro do cartão */
.sobre-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f5f5f5;
    margin: 20px 0;
}

/* Estilo para botões dentro do cartão */
.sobre-card .btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.sobre-card .btn:hover {
    background: linear-gradient(to right, #0072ff, #00c6ff);
}

/* Footer */
.footer {
    background-color: #111; /* Fundo escuro */
    color: #fff; /* Texto branco */
    padding: 1px 0;
    text-align: center;
    font-family: Arial, sans-serif;

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    max-width: 25%;
    margin-bottom: 10px;
}

.footer-links, .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer-links a, .footer-social a {
    color: #00bcd4; /* Cor de link em tom tecnológico */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-social a:hover {
    color: #fff; /* Muda para branco ao passar o mouse */
}

.footer-copy {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}


/* Responsividade */
@media (max-width: 768px) {
    .titulo {
        font-size: 2rem; /* Tamanho reduzido em telas menores */
    }

    .sobre-card {
        width: 90%;
        display: block;
        margin: auto;
        
    }

    .sobre-card p {
        font-size: 1rem;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo img {
        margin-bottom: 15px;
        max-width: 50%;
        
    }
}
