/* =============================================================
   ESTILOS DE MEUS DADOS
   ============================================================= */
.header-cima{
    height: 80px;
}
.container-dados {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px 100px 15px; /* Espaço para footer */
    box-sizing: border-box;
}

/* --- HEADER DO PERFIL (Avatar + Nome) --- */
.card-perfil-header {
    background: linear-gradient(135deg, rgb(92, 12, 142), #3a085a);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(92, 12, 142, 0.3);
    margin-bottom: 25px;
}

.avatar-circle {
    width: 70px;
    height: 70px;
    background-color: white;
    color: rgb(92, 12, 142);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.info-header h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
}

.info-header p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- FORMULÁRIO --- */
.form-dados {
    background-color: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.secao-titulo {
    font-family: 'Poppins', sans-serif;
    color: rgb(92, 12, 142);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

/* Layout Flexível para Inputs */
.input-row {
    display: flex;
    gap: 15px;
}

.input-group {
    margin-bottom: 15px;
    width: 100%;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s;
    background-color: #fafafa;
}

.input-group input:focus, .input-group select:focus {
    border-color: rgb(92, 12, 142);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92, 12, 142, 0.1);
}

/* Botão Salvar */
.btn-salvar-dados {
    width: 100%;
    padding: 15px;
    background-color: rgb(92, 12, 142);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
    box-shadow: 0 4px 10px rgba(92, 12, 142, 0.2);
}

.btn-salvar-dados:hover {
    background-color: #3a085a;
}
/* =========================================================
   RODAPÉ / MENU INFERIOR (MANTIDOS)
   ========================================================= */

#menu {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 65px;
    width: 100%;
    z-index: 2000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(64, 4, 102, 0.738);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.menu-inicio {
    flex: 1;
    text-align: center;
}

.menu-inicio a {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    padding: 8px 0; 
    color: #e0e0e0;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-inicio a svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px; 
}

.menu-inicio a span {
    font-size: 12px;
    font-weight: 500;
}

.menu-inicio a:hover, .menu-inicio a:active {
    background-color: rgba(255, 255, 255, 0.049);
    color: #ffffff;
}
