/* ================================================================
   ARQUIVO style.css - VERSÃO FINAL E LIMPA - 16/06/2025
   ================================================================ */

/* --- ESTILOS GERAIS E LAYOUT BASE --- */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    color: #ecf0f1; /* Cor original do texto */
    background-color: #34495e; /* Cor original do fundo */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* A regra de ouro para o rodapé grudado */
}

main {
    flex: 1 0 auto; /* Faz o conteúdo principal crescer para preencher o espaço */
}

footer {
    flex-shrink: 0; /* Impede que o rodapé encolha */
}

/* --- ESTILOS DE COMPONENTES --- */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    transition: height 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

/* Usando a sua descoberta para o tamanho da logo */
.u-logo-image {
    max-width: 83px;
    height: auto;
}

.content-section {
    padding: 3rem 0;
}

.content-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ... (outras regras do content-section que você tinha) ... */

/* --- ANIMAÇÕES E EFEITOS --- */

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animated-image,
.animated-logo {
    animation: slideInLeft 1s ease-in-out;
}

.animated-logo:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(214, 199, 199, 0.2);
}

/* --- RESPONSIVIDADE PARA CONTEÚDO ESPECÍFICO --- */

@media (max-width: 767px) {
    .content-section .col-md-6 {
        margin-bottom: 1.5rem;
    }
}