/* ===== RESET E ESTILOS GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* ===== LOGO ===== */
.cuideMais {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
}


/* ===== CABEÇALHO AUMENTADO ===== */
#cabecalho {
    background-color: #295bbe;
    padding: 25px 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container-cabecalho {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
}


/* ===== CONTEÚDO PRINCIPAL ===== */
#principal {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ===== CONTAINER DE LOGIN ===== */
.login-container {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.titulo-pagina {
    color: #295bbe;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
}

/* ===== FORMULÁRIO ===== */
.input-group {
    margin-bottom: 25px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5ee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.input-group input:focus {
    outline: none;
    border-color: #295bbe;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(41, 91, 190, 0.1);
}

.input-group input::placeholder {
    color: #999;
    font-size: 14px;
}

/* ===== BOTÃO DE LOGIN ===== */
.botao {
    background-color: #295bbe;
    color: #fff;
    border: none;
    padding: 18px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(41, 91, 190, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    display: block;
}

.botao:hover {
    background-color: #1e4a9e;
    transform: translateY(-2px);
    box-shadow: 0px 6px 20px rgba(41, 91, 190, 0.4);
}

.botao:active {
    transform: translateY(0);
}

/* ===== TEXTO DE CADASTRO ===== */
.texto-cadastro {
    margin-top: 25px;
    font-size: 16px;
    color: #666;
}

.texto-cadastro a {
    color: #295bbe;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.texto-cadastro a:hover {
    color: #1e4a9e;
    text-decoration: underline;
}

/* ===== RODAPÉ ===== */
#rodape {
    background: linear-gradient(135deg, #295bbe 0%, #1e4a9e 100%);
    padding: 20px;
    text-align: center;
    color: #fff;
    margin-top: auto;
}

.container-rodape {
    text-align: center;
    font-size: 14px;
}

/* ===== DESIGN RESPONSIVO ===== */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .container-cabecalho {
        flex-direction: column;
        gap: 15px;
    }
    
    .titulo-principal {
        font-size: 2rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .login-container {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .titulo-pagina {
        font-size: 28px;
    }
    
    #cabecalho {
        padding: 20px 15px;
    }
    
    .input-group input {
        padding: 12px;
    }
    
    .botao {
        padding: 16px 25px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .titulo-principal {
        font-size: 1.8rem;
    }
    
    .login-container {
        padding: 25px 15px;
    }
    
    .titulo-pagina {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .input-group {
        margin-bottom: 20px;
    }
    
    .input-group input {
        padding: 10px;
        font-size: 16px;
    }
    
    .input-group input::placeholder {
        font-size: 12px;
    }
    
    .botao {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .texto-cadastro {
        font-size: 14px;
    }
    
    #cabecalho {
        padding: 15px;
    }
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-container {
    animation: fadeInUp 0.6s ease-out;
}