/* Estilos para las secciones */
.seccion-activa {
    display: block;
}

.seccion-oculta {
    display: none;
}

/* Estilos del menú */
.navbar-brand img {
    margin-right: 10px;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

/* Estilos de las tarjetas */
.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

/* Estilos del formulario */
.form-label {
    font-weight: 600;
    color: #495057;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin-top: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* Mejoras visuales */
.logo-header {
    max-width: 150px;
    height: auto;
}

.alert {
    border: none;
    border-radius: 8px;
}

.btn {
    border-radius: 6px;
    font-weight: 600;
}

/* Iconos */
.fas, .fab {
    margin-right: 8px;
}